summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-hazelcast/src/test/java
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-hazelcast/src/test/java/itest/Client.java2
-rw-r--r--sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-hazelcast/src/test/java/itest/SCAClient.java8
2 files changed, 5 insertions, 5 deletions
diff --git a/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-hazelcast/src/test/java/itest/Client.java b/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-hazelcast/src/test/java/itest/Client.java
index 57c6d445dd..5d884921fd 100644
--- a/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-hazelcast/src/test/java/itest/Client.java
+++ b/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-hazelcast/src/test/java/itest/Client.java
@@ -34,7 +34,7 @@ public class Client {
@BeforeClass
public static void setUpBeforeClass() throws Exception {
- clientNode = NodeFactory.newInstance().createNode(URI.create("tuscany:default"), "../helloworld-client/target//classes");
+ clientNode = NodeFactory.newInstance().createNode(URI.create("tuscany:default?listen=127.0.0.1:14821"), "../helloworld-client/target//classes");
clientNode.start();
}
diff --git a/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-hazelcast/src/test/java/itest/SCAClient.java b/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-hazelcast/src/test/java/itest/SCAClient.java
index 7e5da0bf0f..81af1c6b5b 100644
--- a/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-hazelcast/src/test/java/itest/SCAClient.java
+++ b/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-hazelcast/src/test/java/itest/SCAClient.java
@@ -31,13 +31,13 @@ public class SCAClient {
public void testSCAClient() throws Exception {
// The configuration required when running with sca-client-rmi and endpoint-hazelcast-rmi
- //SCAClientFactory factory = SCAClientFactory.newInstance(URI.create("tuscanyclient:default?remotes=192.168.247.1:14820"));
+ SCAClientFactory factory = SCAClientFactory.newInstance(URI.create("tuscanyclient:default?remotes=127.0.0.1:14820"));
// The configuration required when running with sca-client-impl and endpoint-hazelcast
- SCAClientFactory factory = SCAClientFactory.newInstance(URI.create("tuscany:default"));
+ //SCAClientFactory factory = SCAClientFactory.newInstance(URI.create("tuscany:default"));
// Sleep 3 seconds so that the endpoint is populated into the EndpointRegistry
- Thread.sleep(3000);
+ //Thread.sleep(3000);
Helloworld service = factory.getService(Helloworld.class, "HelloworldService");
@@ -56,7 +56,7 @@ public class SCAClient {
// for doing this so we may need to talk to OASIS about adding one
// or just rely on the runtime hosting the classes using the SCAClient
// when it's on its way down
- NodeFactory.getInstance().destroy();
+ //NodeFactory.getInstance().destroy();
}
public static void main(String[] args) throws Exception {