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/14 11:18:56 UTC

svn commit: r474718 - 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: Tue Nov 14 02:18:56 2006
New Revision: 474718

URL: http://svn.apache.org/viewvc?view=rev&rev=474718
Log:
Updated the servlet demos' 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=474718&r1=474717&r2=474718
==============================================================================
--- 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 Tue Nov 14 02:18:56 2006
@@ -125,8 +125,9 @@
 <installationDirectory>/webapps.  The servlet container will
 extract the war and deploy the application.
 
-Make sure already copy all jars from CXF_HOME/lib to
-<TomcatInstallationDirectory>/shared/lib
+Make sure already copy all jars (except cxf-integration-* jars)
+from CXF_HOME/lib to <TomcatInstallationDirectory>/shared/lib
+
 
 Using ant, run the client application with the command:
 
@@ -140,12 +141,12 @@
   For UNIX:
     
     java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.hw.client.Client http://localhost:#/helloworld/cxf/hello_world
+         demo.hw.client.Client http://localhost:#/helloworld/services/hello_world
 
   For Windows:
 
     java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-       demo.hw.client.Client http://localhost:#/helloworld/cxf/hello_world
+       demo.hw.client.Client http://localhost:#/helloworld/services/hello_world
 
 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=474718&r1=474717&r2=474718
==============================================================================
--- 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 Tue Nov 14 02:18:56 2006
@@ -123,11 +123,14 @@
 
 The war file will be included in the directory
 samples/hello_world_RPCLit/build/war.  Simply copy the war file into
-the servlet container's deployment directory.  For example,
+the servlet container's deployment directory.   For example,
 with Tomcat copy the war file into the directory
 <installationDirectory>/webapps.  The servlet container will
 extract the war and deploy the application.
 
+Make sure already copy all jars (except cxf-integration-* jars)
+from CXF_HOME/lib to <TomcatInstallationDirectory>/shared/lib
+
 Using ant, run the client application with the command:
 
   ant client-servlet -Dbase.url=http://localhost:#
@@ -140,12 +143,12 @@
   For UNIX:
     
     java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.hwRPCLit.client.Client http://localhost:#/helloworldrpclit/cxf/hello_world_rpclit
+         demo.hwRPCLit.client.Client http://localhost:#/helloworldrpclit/services/hello_world_rpclit
 
   For Windows:
 
     java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-       demo.hwRPCLit.client.Client http://localhost:#/helloworldrpclit/cxf/hello_world_rpclit
+       demo.hwRPCLit.client.Client http://localhost:#/helloworldrpclit/services/hello_world_rpclit
 
 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=474718&r1=474717&r2=474718
==============================================================================
--- 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 Tue Nov 14 02:18:56 2006
@@ -128,8 +128,8 @@
 <installationDirectory>/webapps.  The servlet container will
 extract the war and deploy the application.
 
-Make sure already copy all jars from CXF_HOME/lib to
-<TomcatInstallationDirectory>/shared/lib
+Make sure already copy 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/cxf/hello_world
+         demo.hw.client.Client http://localhost:#/helloworld/services/hello_world
 
   For Windows:
 
     java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-       demo.hw.client.Client http://localhost:#/helloworld/cxf/hello_world
+       demo.hw.client.Client http://localhost:#/helloworld/services/hello_world
 
 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=474718&r1=474717&r2=474718
==============================================================================
--- 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 Tue Nov 14 02:18:56 2006
@@ -128,8 +128,8 @@
 <installationDirectory>/webapps.  The servlet container will
 extract the war and deploy the application.
 
-Make sure already copy all jars from CXF_HOME/lib to
-<TomcatInstallationDirectory>/shared/lib
+Make sure already copy 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/cxf/hello_world
+         demo.hw.client.Client http://localhost:#/helloworld/services/hello_world
 
   For Windows:
 
     java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-       demo.hw.client.Client http://localhost:#/helloworld/cxf/hello_world
+       demo.hw.client.Client http://localhost:#/helloworld/services/hello_world
 
 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=474718&r1=474717&r2=474718
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/soap12/README.txt (original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/soap12/README.txt Tue Nov 14 02:18:56 2006
@@ -127,8 +127,8 @@
 <installationDirectory>/webapps.  The servlet container will
 extract the war and deploy the application.
 
-Make sure already copy all jars from CXF_HOME/lib to
-<TomcatInstallationDirectory>/shared/lib
+Make sure already copy 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/cxf/hello_world
+         demo.hw.client.Client http://localhost:#/helloworld/services/hello_world
 
   For Windows:
 
     java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-       demo.hw.client.Client http://localhost:#/helloworld/cxf/hello_world
+       demo.hw.client.Client http://localhost:#/helloworld/services/hello_world
 
 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=474718&r1=474717&r2=474718
==============================================================================
--- 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 Tue Nov 14 02:18:56 2006
@@ -135,8 +135,8 @@
 <installationDirectory>/webapps.  The servlet container will
 extract the war and deploy the application.
 
-Make sure already copy all jars from CXF_HOME/lib to
-<TomcatInstallationDirectory>/shared/lib
+Make sure already copy all jars (except cxf-integration-* jars)
+from CXF_HOME/lib to <TomcatInstallationDirectory>/shared/lib
 
 
 Using ant, run the client application with the command:
@@ -151,12 +151,12 @@
   For UNIX:
     
     java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.hw.client.Client http://localhost:#/soapheader/cxf/soap_header
+         demo.hw.client.Client http://localhost:#/soapheader/services/soap_header
 
   For Windows:
 
     java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-       demo.hw.client.Client http://localhost:#/soapheader/cxf/soap_header
+       demo.hw.client.Client http://localhost:#/soapheader/services/soap_header
 
 Where # is the TCP/IP port used by the servlet container,
 e.g., 8080.