diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2011-05-17 11:14:09 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2011-05-17 11:14:09 +0000 |
commit | b20902a4e5bcf28398b737c3bc6d4d1d3b34d267 (patch) | |
tree | edb71867d7299b0fde62eb4db5384443bf747ae9 /sca-java-2.x/trunk | |
parent | 4bd889c28dba0b278b9517e40d3199168ea8cace (diff) |
Update for latest domain node changes
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1104145 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk')
-rw-r--r-- | sca-java-2.x/trunk/samples/getting-started/helloworld-scaclient/src/test/java/sample/HelloworldTestCase.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sca-java-2.x/trunk/samples/getting-started/helloworld-scaclient/src/test/java/sample/HelloworldTestCase.java b/sca-java-2.x/trunk/samples/getting-started/helloworld-scaclient/src/test/java/sample/HelloworldTestCase.java index 0f03a4b47d..d983c25b61 100644 --- a/sca-java-2.x/trunk/samples/getting-started/helloworld-scaclient/src/test/java/sample/HelloworldTestCase.java +++ b/sca-java-2.x/trunk/samples/getting-started/helloworld-scaclient/src/test/java/sample/HelloworldTestCase.java @@ -42,7 +42,8 @@ public class HelloworldTestCase { @BeforeClass public static void start() throws ContributionReadException, ActivationException, ValidationException { node = TuscanyRuntime.newInstance().createNode("uri:default?bind=127.0.0.1:7654"); - node.installContribution(null, "../helloworld/target/classes", null, null, true); + String curi = node.installContribution(null, "../helloworld/target/classes", null, null); + node.startDeployables(curi); } @AfterClass |