Return-Path: Delivered-To: apmail-incubator-cxf-commits-archive@locus.apache.org Received: (qmail 14514 invoked from network); 14 Nov 2006 10:19:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 Nov 2006 10:19:28 -0000 Received: (qmail 60683 invoked by uid 500); 14 Nov 2006 10:19:39 -0000 Delivered-To: apmail-incubator-cxf-commits-archive@incubator.apache.org Received: (qmail 60612 invoked by uid 500); 14 Nov 2006 10:19:38 -0000 Mailing-List: contact cxf-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-commits@incubator.apache.org Received: (qmail 60603 invoked by uid 99); 14 Nov 2006 10:19:38 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Nov 2006 02:19:38 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Nov 2006 02:19:27 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id F23EE1A9846; Tue, 14 Nov 2006 02:18:56 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: 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 Date: Tue, 14 Nov 2006 10:18:56 -0000 To: cxf-commits@incubator.apache.org From: ningjiang@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061114101856.F23EE1A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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 @@ /webapps. The servlet container will extract the war and deploy the application. -Make sure already copy all jars from CXF_HOME/lib to -/shared/lib +Make sure already copy all jars (except cxf-integration-* jars) +from CXF_HOME/lib to /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 /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 /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 @@ /webapps. The servlet container will extract the war and deploy the application. -Make sure already copy all jars from CXF_HOME/lib to -/shared/lib +Make sure already copy all jars (except cxf-integration-* jars) +from CXF_HOME/lib to /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 @@ /webapps. The servlet container will extract the war and deploy the application. -Make sure already copy all jars from CXF_HOME/lib to -/shared/lib +Make sure already copy all jars (except cxf-integration-* jars) +from CXF_HOME/lib to /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 @@ /webapps. The servlet container will extract the war and deploy the application. -Make sure already copy all jars from CXF_HOME/lib to -/shared/lib +Make sure already copy all jars (except cxf-integration-* jars) +from CXF_HOME/lib to /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 @@ /webapps. The servlet container will extract the war and deploy the application. -Make sure already copy all jars from CXF_HOME/lib to -/shared/lib +Make sure already copy all jars (except cxf-integration-* jars) +from CXF_HOME/lib to /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.