diff options
Diffstat (limited to 'branches/sca-java-1.x/itest/domainmgr/callback/runtest/src/test/resources/domain')
5 files changed, 60 insertions, 0 deletions
diff --git a/branches/sca-java-1.x/itest/domainmgr/callback/runtest/src/test/resources/domain/cloud.composite b/branches/sca-java-1.x/itest/domainmgr/callback/runtest/src/test/resources/domain/cloud.composite new file mode 100644 index 0000000000..4b2c664ed2 --- /dev/null +++ b/branches/sca-java-1.x/itest/domainmgr/callback/runtest/src/test/resources/domain/cloud.composite @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<composite local="true" name="cloud" + targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" + xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:ns1="http://www.osoa.org/xmlns/sca/1.0"> + <include name="ns2:ServiceNode" + uri="http://tuscany.apache.org/cloud" + xmlns:ns2="http://tuscany.apache.org/cloud" /> + <include name="ns2:ClientNode" + uri="http://tuscany.apache.org/cloud" + xmlns:ns2="http://tuscany.apache.org/cloud" /> +</composite> diff --git a/branches/sca-java-1.x/itest/domainmgr/callback/runtest/src/test/resources/domain/cloud/ClientNode.composite b/branches/sca-java-1.x/itest/domainmgr/callback/runtest/src/test/resources/domain/cloud/ClientNode.composite new file mode 100644 index 0000000000..509bfafac1 --- /dev/null +++ b/branches/sca-java-1.x/itest/domainmgr/callback/runtest/src/test/resources/domain/cloud/ClientNode.composite @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" + xmlns:c="http://simplecallback" + targetNamespace="http://tuscany.apache.org/cloud" + name="ClientNode"> + <component name="ClientNode"> + <t:implementation.node uri="callback-client" composite="c:client" /> + <service name="Node"> + <binding.sca uri="http://localhost:8081" /> + </service> + </component> +</composite> diff --git a/branches/sca-java-1.x/itest/domainmgr/callback/runtest/src/test/resources/domain/cloud/ServiceNode.composite b/branches/sca-java-1.x/itest/domainmgr/callback/runtest/src/test/resources/domain/cloud/ServiceNode.composite new file mode 100644 index 0000000000..1f1f0c47c2 --- /dev/null +++ b/branches/sca-java-1.x/itest/domainmgr/callback/runtest/src/test/resources/domain/cloud/ServiceNode.composite @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0" + xmlns:c="http://simplecallback" + targetNamespace="http://tuscany.apache.org/cloud" + name="ServiceNode"> + <component name="ServiceNode"> + <t:implementation.node uri="callback-service" composite="c:service" /> + <service name="Node"> + <binding.sca uri="http://localhost:8082" /> + </service> + </component> +</composite> diff --git a/branches/sca-java-1.x/itest/domainmgr/callback/runtest/src/test/resources/domain/domain.composite b/branches/sca-java-1.x/itest/domainmgr/callback/runtest/src/test/resources/domain/domain.composite new file mode 100644 index 0000000000..ba4d6bbf25 --- /dev/null +++ b/branches/sca-java-1.x/itest/domainmgr/callback/runtest/src/test/resources/domain/domain.composite @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<composite local="true" name="domain" + targetNamespace="http://tuscany.apache.org/xmlns/sca/1.0" + xmlns="http://www.osoa.org/xmlns/sca/1.0" + xmlns:ns1="http://www.osoa.org/xmlns/sca/1.0"> + <include name="ns2:service" + uri="callback-service" + xmlns:ns2="http://simplecallback" /> + <include name="ns2:client" + uri="callback-client" + xmlns:ns2="http://simplecallback" /> +</composite> diff --git a/branches/sca-java-1.x/itest/domainmgr/callback/runtest/src/test/resources/domain/workspace.xml b/branches/sca-java-1.x/itest/domainmgr/callback/runtest/src/test/resources/domain/workspace.xml new file mode 100644 index 0000000000..6a6288e39c --- /dev/null +++ b/branches/sca-java-1.x/itest/domainmgr/callback/runtest/src/test/resources/domain/workspace.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<workspace xmlns="http://tuscany.apache.org/xmlns/sca/1.0" + xmlns:ns1="http://tuscany.apache.org/xmlns/sca/1.0"> + <contribution location="file:./cloud" + uri="http://tuscany.apache.org/cloud" /> + <contribution location="file:../../../../service/target/itest-domainmgr-callback-service.jar" + uri="callback-service" /> + <contribution location="file:../../../../client/target/itest-domainmgr-callback-client.jar" + uri="callback-client" /> +</workspace> |