You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by sv...@apache.org on 2007/07/24 11:36:20 UTC

svn commit: r558982 - in /incubator/tuscany/java/sca/samples/helloworld-jsonrpc: README build.xml

Author: svkrish
Date: Tue Jul 24 02:36:19 2007
New Revision: 558982

URL: http://svn.apache.org/viewvc?view=rev&rev=558982
Log:
merging changes from 0.91 release branch

Modified:
    incubator/tuscany/java/sca/samples/helloworld-jsonrpc/README
    incubator/tuscany/java/sca/samples/helloworld-jsonrpc/build.xml

Modified: incubator/tuscany/java/sca/samples/helloworld-jsonrpc/README
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/helloworld-jsonrpc/README?view=diff&rev=558982&r1=558981&r2=558982
==============================================================================
--- incubator/tuscany/java/sca/samples/helloworld-jsonrpc/README (original)
+++ incubator/tuscany/java/sca/samples/helloworld-jsonrpc/README Tue Jul 24 02:36:19 2007
@@ -9,23 +9,23 @@
 
 As this sample provides a web app there is a manual step where the WAR file
 that contains the sample is copied to your web app container. If you just want 
-to give this sample a go deploy the WAR file (target/sample-helloworldjsonrpc.war)
+to give this sample a go deploy the WAR file (target/sample-helloworld-jsonrpc.war)
 to you web application server. 
 
 Once the web app is deployed use your browser to visit the following URL;
 
-http://localhost:8080/sample-helloworldjsonrpc
+http://localhost:8080/sample-helloworld-jsonrpc
 
 The port and hostname will of course vary depending on your local installation. 
 
 Sample Overview
 ---------------
-The sample provides a single service which with an operation that reflects 
-a greeting back to the called. The service is exposed using the JSONRPC
-binding. The web app provided shows how the service can be called either via 
-via the SCA provided JSON client or by using the DOJO toolkit. 
+The sample provides a single service with an operation that reflects
+a greeting back to the caller. The service is exposed using the JSONRPC
+binding. The web app provided shows how the SCA-provided JSON client can be 
+used to invoke the SCA service. 
 
-helloworl-jsonrpc/
+helloworld-jsonrpc/
   src/
     main/
       java/
@@ -35,7 +35,6 @@
       resources/
         jsonrpc.composite             - the SCA assembly for this sample
       webapp
-        dojo/                         - the Dojo toolkit
         META-INF/
           sca-contribution.xml        - specifies the composite to be deployed
         WEB-INF/
@@ -59,7 +58,7 @@
 cd helloworld-jsonrpc
 ant package
 
-This should result in a war file (sample-helloworldjsonrpc.war) in the target 
+This should result in a war file (sample-helloworld-jsonrpc.war) in the target 
 directory. Copy this war file to your web app deployment directory in your
 web app container. 
 
@@ -69,7 +68,7 @@
 
 Once the web app is deployed use your browser to visit the following URL;
 
-http://localhost:8080/sample-helloworldjsonrpc
+http://localhost:8080/sample-helloworld-jsonrpc
 
 The port and hostname will of course vary depending on your local installation. 
 
@@ -84,7 +83,7 @@
 cd helloworld-jsonrpc 
 mvn
 
-Again this should result in a war file (sample-calculator-web.war) in the target 
+Again this should result in a war file (sample-helloworld-jsonrpc.war) in the target 
 directory. Follow the steps described in the previous section for running the web 
 app and for the expected results.
 

Modified: incubator/tuscany/java/sca/samples/helloworld-jsonrpc/build.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/helloworld-jsonrpc/build.xml?view=diff&rev=558982&r1=558981&r2=558982
==============================================================================
--- incubator/tuscany/java/sca/samples/helloworld-jsonrpc/build.xml (original)
+++ incubator/tuscany/java/sca/samples/helloworld-jsonrpc/build.xml Tue Jul 24 02:36:19 2007
@@ -41,37 +41,38 @@
 	
     <target name="package" depends="compile">
 
-        <war destfile="target/sample-helloworldjsonrpc.war" 
+        <war destfile="target/sample-helloworld-jsonrpc.war" 
              webxml="src/main/webapp/WEB-INF/web.xml">
             <fileset dir="src/main/webapp"/>
             <zipfileset dir="../../modules" prefix="WEB-INF/lib">
-                <include name="sca-api-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-assembly-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-assembly-xml-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-binding-jsonrpc-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-contribution-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-contribution-impl-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-core-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-core-databinding-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-core-spi-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-databinding-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-host-embedded-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-host-http-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-host-webapp-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-implementation-java-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-implementation-java-runtime-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-implementation-java-xml-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-interface-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-interface-java-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-interface-java-runtime-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-interface-java-xml-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-interface-wsdl-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-interface-wsdl-runtime-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-interface-wsdl-xml-0.90-incubating-SNAPSHOT.jar"/>
-                <include name="tuscany-policy-0.90-incubating-SNAPSHOT.jar"/>
+                <include name="sca-api-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-assembly-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-assembly-xml-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-binding-jsonrpc-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-contribution-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-contribution-impl-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-core-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-core-databinding-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-core-spi-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-databinding-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-extension-helper-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-host-embedded-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-host-http-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-host-webapp-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-implementation-java-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-implementation-java-runtime-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-implementation-java-xml-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-interface-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-interface-java-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-interface-java-runtime-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-interface-java-xml-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-interface-wsdl-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-interface-wsdl-runtime-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-interface-wsdl-xml-0.91-incubating-SNAPSHOT.jar"/>
+                <include name="tuscany-policy-0.91-incubating-SNAPSHOT.jar"/>
             </zipfileset>
             <lib dir="../../lib">
-                <include name="commonj-api-0.90-incubating-SNAPSHOT.jar"/>
+                <include name="commonj-api-0.91-incubating-SNAPSHOT.jar"/>
                 <include name="json-rpc-1.0.jar"/>
                 <include name="stax-api-1.0.1.jar"/>
                 <include name="wsdl4j-1.6.2.jar"/>



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org