You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ni...@apache.org on 2006/11/15 11:03:07 UTC

svn commit: r475177 - in /incubator/cxf/trunk/distribution/src/main/release/samples: hello_world/README.txt hello_world_RPCLit/README.txt hello_world_xml_bare/README.txt hello_world_xml_wrapped/README.txt soap12/README.txt soap_header/README.txt

Author: ningjiang
Date: Wed Nov 15 02:03:06 2006
New Revision: 475177

URL: http://svn.apache.org/viewvc?view=rev&rev=475177
Log:
Fixed the typo in the README

Modified:
    incubator/cxf/trunk/distribution/src/main/release/samples/hello_world/README.txt
    incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_RPCLit/README.txt
    incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_bare/README.txt
    incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_wrapped/README.txt
    incubator/cxf/trunk/distribution/src/main/release/samples/soap12/README.txt
    incubator/cxf/trunk/distribution/src/main/release/samples/soap_header/README.txt

Modified: incubator/cxf/trunk/distribution/src/main/release/samples/hello_world/README.txt
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/hello_world/README.txt?view=diff&rev=475177&r1=475176&r2=475177
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/hello_world/README.txt (original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/hello_world/README.txt Wed Nov 15 02:03:06 2006
@@ -125,7 +125,7 @@
 <installationDirectory>/webapps.  The servlet container will
 extract the war and deploy the application.
 
-Make sure already copy all jars (except cxf-integration-* jars)
+Make sure you have already copied all jars (except cxf-integration-* jars)
 from CXF_HOME/lib to <TomcatInstallationDirectory>/shared/lib
 
 
@@ -141,12 +141,12 @@
   For UNIX:
     
     java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.hw.client.Client http://localhost:#/helloworld/services/hello_world
+         demo.hw.client.Client http://localhost:#/helloworld/services/hello_world?wsdl
 
   For Windows:
 
     java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-       demo.hw.client.Client http://localhost:#/helloworld/services/hello_world
+       demo.hw.client.Client http://localhost:#/helloworld/services/hello_world?wsdl
 
 Where # is the TCP/IP port used by the servlet container,
 e.g., 8080.

Modified: incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_RPCLit/README.txt
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_RPCLit/README.txt?view=diff&rev=475177&r1=475176&r2=475177
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_RPCLit/README.txt (original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_RPCLit/README.txt Wed Nov 15 02:03:06 2006
@@ -128,7 +128,7 @@
 <installationDirectory>/webapps.  The servlet container will
 extract the war and deploy the application.
 
-Make sure already copy all jars (except cxf-integration-* jars)
+Make sure you have already copied all jars (except cxf-integration-* jars)
 from CXF_HOME/lib to <TomcatInstallationDirectory>/shared/lib
 
 Using ant, run the client application with the command:
@@ -143,12 +143,12 @@
   For UNIX:
     
     java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.hwRPCLit.client.Client http://localhost:#/helloworldrpclit/services/hello_world_rpclit
+         demo.hwRPCLit.client.Client http://localhost:#/helloworldrpclit/services/hello_world_rpclit?wsdl
 
   For Windows:
 
     java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-       demo.hwRPCLit.client.Client http://localhost:#/helloworldrpclit/services/hello_world_rpclit
+       demo.hwRPCLit.client.Client http://localhost:#/helloworldrpclit/services/hello_world_rpclit?wsdl
 
 Where # is the TCP/IP port used by the servlet container,
 e.g., 8080.

Modified: incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_bare/README.txt
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_bare/README.txt?view=diff&rev=475177&r1=475176&r2=475177
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_bare/README.txt (original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_bare/README.txt Wed Nov 15 02:03:06 2006
@@ -128,7 +128,7 @@
 <installationDirectory>/webapps.  The servlet container will
 extract the war and deploy the application.
 
-Make sure already copy all jars (except cxf-integration-* jars)
+Make sure you have already copied all jars (except cxf-integration-* jars)
 from CXF_HOME/lib to <TomcatInstallationDirectory>/shared/lib
 
 Using ant, run the client application with the command:
@@ -143,12 +143,12 @@
   For UNIX:
     
     java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.hw.client.Client http://localhost:#/helloworld/services/hello_world
+         demo.hw.client.Client http://localhost:#/helloworld/services/hello_world?wsdl
 
   For Windows:
 
     java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-       demo.hw.client.Client http://localhost:#/helloworld/services/hello_world
+       demo.hw.client.Client http://localhost:#/helloworld/services/hello_world?wsdl
 
 Where # is the TCP/IP port used by the servlet container,
 e.g., 8080.

Modified: incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_wrapped/README.txt
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_wrapped/README.txt?view=diff&rev=475177&r1=475176&r2=475177
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_wrapped/README.txt (original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/hello_world_xml_wrapped/README.txt Wed Nov 15 02:03:06 2006
@@ -128,7 +128,7 @@
 <installationDirectory>/webapps.  The servlet container will
 extract the war and deploy the application.
 
-Make sure already copy all jars (except cxf-integration-* jars)
+Make sure you have already copied all jars (except cxf-integration-* jars)
 from CXF_HOME/lib to <TomcatInstallationDirectory>/shared/lib
 
 Using ant, run the client application with the command:
@@ -143,12 +143,12 @@
   For UNIX:
     
     java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.hw.client.Client http://localhost:#/helloworld/services/hello_world
+         demo.hw.client.Client http://localhost:#/helloworld/services/hello_world?wsdl
 
   For Windows:
 
     java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-       demo.hw.client.Client http://localhost:#/helloworld/services/hello_world
+       demo.hw.client.Client http://localhost:#/helloworld/services/hello_world?wsdl
 
 Where # is the TCP/IP port used by the servlet container,
 e.g., 8080.

Modified: incubator/cxf/trunk/distribution/src/main/release/samples/soap12/README.txt
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/soap12/README.txt?view=diff&rev=475177&r1=475176&r2=475177
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/soap12/README.txt (original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/soap12/README.txt Wed Nov 15 02:03:06 2006
@@ -127,7 +127,7 @@
 <installationDirectory>/webapps.  The servlet container will
 extract the war and deploy the application.
 
-Make sure already copy all jars (except cxf-integration-* jars)
+Make sure you have already copied all jars (except cxf-integration-* jars)
 from CXF_HOME/lib to <TomcatInstallationDirectory>/shared/lib
 
 Using ant, run the client application with the command:
@@ -142,12 +142,12 @@
   For UNIX:
     
     java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.hw.client.Client http://localhost:#/helloworld/services/hello_world
+         demo.hw.client.Client http://localhost:#/helloworld/services/hello_world?wsdl
 
   For Windows:
 
     java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-       demo.hw.client.Client http://localhost:#/helloworld/services/hello_world
+       demo.hw.client.Client http://localhost:#/helloworld/services/hello_world?wsdl
 
 Where # is the TCP/IP port used by the servlet container,
 e.g., 8080.

Modified: incubator/cxf/trunk/distribution/src/main/release/samples/soap_header/README.txt
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/soap_header/README.txt?view=diff&rev=475177&r1=475176&r2=475177
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/soap_header/README.txt (original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/soap_header/README.txt Wed Nov 15 02:03:06 2006
@@ -135,7 +135,7 @@
 <installationDirectory>/webapps.  The servlet container will
 extract the war and deploy the application.
 
-Make sure already copy all jars (except cxf-integration-* jars)
+Make sure you have already copied all jars (except cxf-integration-* jars)
 from CXF_HOME/lib to <TomcatInstallationDirectory>/shared/lib
 
 
@@ -151,12 +151,12 @@
   For UNIX:
     
     java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.hw.client.Client http://localhost:#/soapheader/services/soap_header
+         demo.hw.client.Client http://localhost:#/soapheader/services/soap_header?wsdl
 
   For Windows:
 
     java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-       demo.hw.client.Client http://localhost:#/soapheader/services/soap_header
+       demo.hw.client.Client http://localhost:#/soapheader/services/soap_header?wsdl
 
 Where # is the TCP/IP port used by the servlet container,
-e.g., 8080.
\ No newline at end of file
+e.g., 8080.