summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/itest/scaclient-api-remote/src/test/java
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-09-07 19:52:14 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-09-07 19:52:14 +0000
commit61551053a3222e24f414ec8dba438d029c43a19b (patch)
tree0d30392ff29df9899ea56350813523f2afd50e6e /sca-java-2.x/trunk/itest/scaclient-api-remote/src/test/java
parentda8e881f2ecfe45d43e7e0365c14084ddd39680e (diff)
TUSCANY-3670 - temp fix to ensure that the client finds the domain. I need to better understand what the various URIs mean for final fix.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@993506 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/itest/scaclient-api-remote/src/test/java')
-rw-r--r--sca-java-2.x/trunk/itest/scaclient-api-remote/src/test/java/test/scaclient/SCAClientTestCase.java12
1 files changed, 10 insertions, 2 deletions
diff --git a/sca-java-2.x/trunk/itest/scaclient-api-remote/src/test/java/test/scaclient/SCAClientTestCase.java b/sca-java-2.x/trunk/itest/scaclient-api-remote/src/test/java/test/scaclient/SCAClientTestCase.java
index 6dab4d3525..432d51dc27 100644
--- a/sca-java-2.x/trunk/itest/scaclient-api-remote/src/test/java/test/scaclient/SCAClientTestCase.java
+++ b/sca-java-2.x/trunk/itest/scaclient-api-remote/src/test/java/test/scaclient/SCAClientTestCase.java
@@ -92,7 +92,11 @@ public class SCAClientTestCase {
node = NodeFactory.newInstance("uri:myFooDomain?bind=127.0.0.1:14821").createNode((String)null, new String[] {"target/classes"});
node.start();
- HelloworldService service = SCAClientFactory.newInstance(URI.create("uri:myFooDomain?wka=127.0.0.1:14821")).getService(HelloworldService.class, "HelloworldComponent");
+ // TUSCANY-3670 - why factory takes URI while node factory take configuration string?
+ // hacked this for now to make the client domain name match the domain
+ // name that's pulled out of the factory URI
+ //HelloworldService service = SCAClientFactory.newInstance(URI.create("uri:myFooDomain?wka=127.0.0.1:14821")).getService(HelloworldService.class, "HelloworldComponent");
+ HelloworldService service = SCAClientFactory.newInstance(URI.create("myFooDomain")).getService(HelloworldService.class, "HelloworldComponent");
assertEquals("Hello petra", service.sayHello("petra"));
}
@@ -101,7 +105,11 @@ public class SCAClientTestCase {
node = NodeFactory.newInstance("uri:myFooDomain?bind=127.0.0.1:14821").createNode((String)null, new String[] {"target/classes"});
node.start();
- HelloworldService service = SCAClientFactory.newInstance(URI.create("uri:myFooDomain?wka=127.0.0.1:14821")).getService(HelloworldService.class, "HelloworldComponent");
+ // TUSCANY-3670 - why factory takes URI while node factory take configuration string?
+ // hacked this for now to make the client domain name match the domain
+ // name that's pulled out of the factory URI
+ //HelloworldService service = SCAClientFactory.newInstance(URI.create("uri:myFooDomain?wka=127.0.0.1:14821")).getService(HelloworldService.class, "HelloworldComponent");
+ HelloworldService service = SCAClientFactory.newInstance(URI.create("myFooDomain")).getService(HelloworldService.class, "HelloworldComponent");
assertEquals("Hello petra", service.sayHello("petra"));
}