summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/itest/nodes
diff options
context:
space:
mode:
Diffstat (limited to 'sca-java-2.x/trunk/itest/nodes')
-rw-r--r--sca-java-2.x/trunk/itest/nodes/helloworld-client/src/main/resources/META-INF/sca-contribution.xml2
-rw-r--r--sca-java-2.x/trunk/itest/nodes/helloworld-client/src/main/resources/helloworld-client.composite2
-rw-r--r--sca-java-2.x/trunk/itest/nodes/helloworld-service/src/main/resources/META-INF/sca-contribution.xml2
-rw-r--r--sca-java-2.x/trunk/itest/nodes/helloworld-service/src/main/resources/helloworld-service.composite2
-rw-r--r--sca-java-2.x/trunk/itest/nodes/two-nodes-test/src/test/java/itest/ClientNode.java2
-rw-r--r--sca-java-2.x/trunk/itest/nodes/two-nodes-test/src/test/java/itest/ServiceNode.java2
-rw-r--r--sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/client-config.xml2
-rw-r--r--sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/server-config.xml2
8 files changed, 8 insertions, 8 deletions
diff --git a/sca-java-2.x/trunk/itest/nodes/helloworld-client/src/main/resources/META-INF/sca-contribution.xml b/sca-java-2.x/trunk/itest/nodes/helloworld-client/src/main/resources/META-INF/sca-contribution.xml
index b4ba94220c..7e062cc14e 100644
--- a/sca-java-2.x/trunk/itest/nodes/helloworld-client/src/main/resources/META-INF/sca-contribution.xml
+++ b/sca-java-2.x/trunk/itest/nodes/helloworld-client/src/main/resources/META-INF/sca-contribution.xml
@@ -17,7 +17,7 @@
* specific language governing permissions and limitations
* under the License.
-->
-<contribution xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
+<contribution xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912"
xmlns:itest="http://itest">
<deployable composite="itest:HelloworldClient"/>
</contribution> \ No newline at end of file
diff --git a/sca-java-2.x/trunk/itest/nodes/helloworld-client/src/main/resources/helloworld-client.composite b/sca-java-2.x/trunk/itest/nodes/helloworld-client/src/main/resources/helloworld-client.composite
index 9d5e9ae59a..3c4ed03448 100644
--- a/sca-java-2.x/trunk/itest/nodes/helloworld-client/src/main/resources/helloworld-client.composite
+++ b/sca-java-2.x/trunk/itest/nodes/helloworld-client/src/main/resources/helloworld-client.composite
@@ -17,7 +17,7 @@
* specific language governing permissions and limitations
* under the License.
-->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
+<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912"
targetNamespace="http://itest"
name="HelloworldClient">
diff --git a/sca-java-2.x/trunk/itest/nodes/helloworld-service/src/main/resources/META-INF/sca-contribution.xml b/sca-java-2.x/trunk/itest/nodes/helloworld-service/src/main/resources/META-INF/sca-contribution.xml
index c65718909d..829ece9f7c 100644
--- a/sca-java-2.x/trunk/itest/nodes/helloworld-service/src/main/resources/META-INF/sca-contribution.xml
+++ b/sca-java-2.x/trunk/itest/nodes/helloworld-service/src/main/resources/META-INF/sca-contribution.xml
@@ -17,7 +17,7 @@
* specific language governing permissions and limitations
* under the License.
-->
-<contribution xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
+<contribution xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912"
xmlns:itest="http://itest">
<deployable composite="itest:HelloworldService"/>
</contribution> \ No newline at end of file
diff --git a/sca-java-2.x/trunk/itest/nodes/helloworld-service/src/main/resources/helloworld-service.composite b/sca-java-2.x/trunk/itest/nodes/helloworld-service/src/main/resources/helloworld-service.composite
index 6b2d15b7a6..5334caeb55 100644
--- a/sca-java-2.x/trunk/itest/nodes/helloworld-service/src/main/resources/helloworld-service.composite
+++ b/sca-java-2.x/trunk/itest/nodes/helloworld-service/src/main/resources/helloworld-service.composite
@@ -17,7 +17,7 @@
* specific language governing permissions and limitations
* under the License.
-->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200903"
+<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912"
targetNamespace="http://itest"
name="HelloworldService">
diff --git a/sca-java-2.x/trunk/itest/nodes/two-nodes-test/src/test/java/itest/ClientNode.java b/sca-java-2.x/trunk/itest/nodes/two-nodes-test/src/test/java/itest/ClientNode.java
index 0b8e2229a2..308d7ed219 100644
--- a/sca-java-2.x/trunk/itest/nodes/two-nodes-test/src/test/java/itest/ClientNode.java
+++ b/sca-java-2.x/trunk/itest/nodes/two-nodes-test/src/test/java/itest/ClientNode.java
@@ -41,7 +41,7 @@ import org.oasisopen.sca.client.SCAClientFactory;
* This shows how to test the Calculator service component.
*/
public class ClientNode {
- private final static String SCA11_NS = "http://docs.oasis-open.org/ns/opencsa/sca/200903";
+ private final static String SCA11_NS = "http://docs.oasis-open.org/ns/opencsa/sca/200912";
private static Node clientNode;
private static TestCaseRunner runner;
diff --git a/sca-java-2.x/trunk/itest/nodes/two-nodes-test/src/test/java/itest/ServiceNode.java b/sca-java-2.x/trunk/itest/nodes/two-nodes-test/src/test/java/itest/ServiceNode.java
index b413825106..4b034d89e0 100644
--- a/sca-java-2.x/trunk/itest/nodes/two-nodes-test/src/test/java/itest/ServiceNode.java
+++ b/sca-java-2.x/trunk/itest/nodes/two-nodes-test/src/test/java/itest/ServiceNode.java
@@ -33,7 +33,7 @@ import org.junit.BeforeClass;
* This shows how to test the Calculator service component.
*/
public class ServiceNode {
- private final static String SCA11_NS = "http://docs.oasis-open.org/ns/opencsa/sca/200903";
+ private final static String SCA11_NS = "http://docs.oasis-open.org/ns/opencsa/sca/200912";
private static Node serviceNode;
@BeforeClass
diff --git a/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/client-config.xml b/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/client-config.xml
index a589d01ada..b47de3d2cb 100644
--- a/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/client-config.xml
+++ b/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/client-config.xml
@@ -17,7 +17,7 @@
* specific language governing permissions and limitations
* under the License.
-->
-<node xmlns:sca="http://docs.oasis-open.org/ns/opencsa/sca/200903"
+<node xmlns:sca="http://docs.oasis-open.org/ns/opencsa/sca/200912"
xmlns="http://tuscany.apache.org/xmlns/sca/1.1"
xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.1"
uri="http://sample/nodes/TestNode1"
diff --git a/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/server-config.xml b/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/server-config.xml
index 17313a7a5d..d4d09c0d0f 100644
--- a/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/server-config.xml
+++ b/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/server-config.xml
@@ -17,7 +17,7 @@
* specific language governing permissions and limitations
* under the License.
-->
-<node xmlns:sca="http://docs.oasis-open.org/ns/opencsa/sca/200903"
+<node xmlns:sca="http://docs.oasis-open.org/ns/opencsa/sca/200912"
xmlns="http://tuscany.apache.org/xmlns/sca/1.1"
xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.1"
uri="http://sample/nodes/TestNode1"