Author: antelder
Date: Tue May 17 11:14:09 2011
New Revision: 1104145
URL: http://svn.apache.org/viewvc?rev=1104145&view=rev
Log:
Update for latest domain node changes
Modified:
tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-scaclient/src/test/java/sample/HelloworldTestCase.java
Modified:
tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-scaclient/src/test/java/sample/HelloworldTestCase.java
URL:
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-scaclient/src/test/java/sample/HelloworldTestCase.java?rev=1104145&r1=1104144&r2=1104145&view=diff
==============================================================================
---
tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-scaclient/src/test/java/sample/HelloworldTestCase.java
(original)
+++
tuscany/sca-java-2.x/trunk/samples/getting-started/helloworld-scaclient/src/test/java/sample/HelloworldTestCase.java
Tue May 17 11:14:09 2011
@@ -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