Author: antelder
Date: Thu Jan 14 12:09:28 2010
New Revision: 899174
URL: http://svn.apache.org/viewvc?rev=899174&view=rev
Log:
Get the Java SE based client working talking to remote domains
Modified:
tuscany/sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/pom.xml
tuscany/sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/src/main/java/testing/HelloworldClient.java
Modified:
tuscany/sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/pom.xml
URL:
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/pom.xml?rev=899174&r1=899173&r2=899174&view=diff
==============================================================================
---
tuscany/sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/pom.xml
(original)
+++
tuscany/sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/pom.xml
Thu Jan 14 12:09:28 2010
@@ -31,10 +31,9 @@
<dependencies>
<dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-base</artifactId>
+ <groupId>org.apache.tuscany.sca.shades</groupId>
+ <artifactId>tuscany-base-nodep</artifactId>
<version>2.0-SNAPSHOT</version>
- <scope>provided</scope>
</dependency>
</dependencies>
Modified:
tuscany/sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/src/main/java/testing/HelloworldClient.java
URL:
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/src/main/java/testing/HelloworldClient.java?rev=899174&r1=899173&r2=899174&view=diff
==============================================================================
---
tuscany/sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/src/main/java/testing/HelloworldClient.java
(original)
+++
tuscany/sca-java-2.x/trunk/distribution/tomcat/testing/helloworld-scaclient-javase/src/main/java/testing/HelloworldClient.java
Thu Jan 14 12:09:28 2010
@@ -33,7 +33,7 @@
if (args.length > 0) {
domainURI = URI.create(args[0]);
} else {
- domainURI = URI.create("tribes:default");
+ domainURI = URI.create("tuscany:default");
}
SCAClientFactory factory =
SCAClientFactory.newInstance(domainURI);