You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by gm...@apache.org on 2012/03/20 21:22:13 UTC

svn commit: r1303132 - in /cxf/trunk/distribution/src/main/release/samples: aegis_standalone/ callback/ callback/src/main/java/demo/callback/client/ callback/src/main/java/demo/callback/server/ groovy_spring_support/ java_first_jaxws/ java_first_jaxws/...

Author: gmazza
Date: Tue Mar 20 20:22:12 2012
New Revision: 1303132

URL: http://svn.apache.org/viewvc?rev=1303132&view=rev
Log:
Updated README files -- removed Java build instructions in favor of Maven-only instructions.

Modified:
    cxf/trunk/distribution/src/main/release/samples/aegis_standalone/README.txt
    cxf/trunk/distribution/src/main/release/samples/callback/README.txt
    cxf/trunk/distribution/src/main/release/samples/callback/src/main/java/demo/callback/client/CallbackImpl.java
    cxf/trunk/distribution/src/main/release/samples/callback/src/main/java/demo/callback/server/ServerImpl.java
    cxf/trunk/distribution/src/main/release/samples/groovy_spring_support/README.txt
    cxf/trunk/distribution/src/main/release/samples/java_first_jaxws/README.txt
    cxf/trunk/distribution/src/main/release/samples/java_first_jaxws/src/main/java/demo/hw/client/Client.java
    cxf/trunk/distribution/src/main/release/samples/jax_rs/basic_https/README.txt
    cxf/trunk/distribution/src/main/release/samples/jaxws_async/README.txt
    cxf/trunk/distribution/src/main/release/samples/jaxws_dispatch_provider/README.txt
    cxf/trunk/distribution/src/main/release/samples/jaxws_handlers/README.txt
    cxf/trunk/distribution/src/main/release/samples/jms_spring_config/README.txt
    cxf/trunk/distribution/src/main/release/samples/js_browser_client_java_first/README.txt
    cxf/trunk/distribution/src/main/release/samples/logbrowser/README.txt
    cxf/trunk/distribution/src/main/release/samples/mtom/README.txt
    cxf/trunk/distribution/src/main/release/samples/restful_dispatch/README.txt
    cxf/trunk/distribution/src/main/release/samples/ruby_spring_support/README.txt
    cxf/trunk/distribution/src/main/release/samples/ws_addressing/README.txt
    cxf/trunk/distribution/src/main/release/samples/ws_security/ut/README.txt
    cxf/trunk/distribution/src/main/release/samples/wsdl_first/README.txt
    cxf/trunk/distribution/src/main/release/samples/wsdl_first_dynamic_client/README.txt
    cxf/trunk/distribution/src/main/release/samples/wsdl_first_xmlbeans/README.txt

Modified: cxf/trunk/distribution/src/main/release/samples/aegis_standalone/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/aegis_standalone/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/aegis_standalone/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/aegis_standalone/README.txt Tue Mar 20 20:22:12 2012
@@ -1,21 +1,10 @@
-Aegis Demo
-====================
+Aegis Standalone Demo
+=====================
 
 This demo shows how you can use Aegis with no web service at all
 as a mapping between XML and Java.
 
-Prerequisite
-------------
-
-If your environment already includes cxf-manifest.jar on the
-CLASSPATH, and the JDK and ant bin directories on the PATH
-it is not necessary to set the environment as described in
-the samples directory README.  If your environment is not
-properly configured, or if you are planning on using wsdl2java,
-javac, and java to build and run the demos, you must set the
-environment.
-
-
+Please review the README in the samples directory before continuing.
 
 Building and running the demo using Maven
 ---------------------------------------
@@ -27,9 +16,8 @@ Using either UNIX or Windows:
 
   mvn install   (builds the demo)
   mvn -Pwrite  (from one command line window)
-  mvn -Pread  (from one command line window)
+  mvn -Pread  (from another command line window)
 
 
 To remove the generated code, run "mvn clean".
 
-

Modified: cxf/trunk/distribution/src/main/release/samples/callback/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/callback/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/callback/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/callback/README.txt Tue Mar 20 20:22:12 2012
@@ -38,67 +38,4 @@ Using either UNIX or Windows:
 To remove the code generated from the WSDL file and the .class
 files, run "mvn clean".
 
-Building the demo using wsdl2java and javac
-------------------------------------------
 
-From the base directory of this sample (i.e., where this README file is
-located) first create the target directory build/classes and then 
-generate code from the WSDL file.
-
-For UNIX:
-  mkdir -p build/classes
-
-  wsdl2java -d build/classes -compile ./wsdl/basic_callback.wsdl
-
-For Windows:
-  mkdir build\classes
-    Must use back slashes.
-
-  wsdl2java -d build\classes -compile .\wsdl\basic_callback.wsdl
-    May use either forward or back slashes.
-
-Now compile the provided client and server applications with the commands:
-
-For UNIX:  
-  
-  export CLASSPATH=$CLASSPATH:$CXF_HOME/lib/cxf-manifest.jar:./build/classes
-  javac -d build/classes src/demo/callback/client/*.java
-  javac -d build/classes src/demo/callback/server/*.java
-
-For Windows:
-  set classpath=%classpath%;%CXF_HOME%\lib\cxf-manifest.jar;.\build\classes
-  javac -d build\classes src\demo\callback\client\*.java
-  javac -d build\classes src\demo\callback\server\*.java
-
-
-Running the demo using java
----------------------------
-
-From the base directory of this sample (i.e., where this README file is
-located) run the commands, entered on a single command line:
-
-For UNIX (must use forward slashes):
-    java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.callback.server.Server &
-
-    java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.callback.client.Client ./wsdl/basic_callback.wsdl
-
-The server process starts in the background.  After running the client,
-use the kill command to terminate the server process.
-
-For Windows (may use either forward or back slashes):
-  start 
-    java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-         demo.callback.server.Server
-
-    java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-       demo.callback.client.Client .\wsdl\basic_callback.wsdl
-
-A new command windows opens for the server process.  After running the
-client, terminate the server process by issuing Ctrl-C in its command window.
-
-To remove the code generated from the WSDL file and the .class
-files, either delete the build directory and its contents or run:
-
-  ant clean

Modified: cxf/trunk/distribution/src/main/release/samples/callback/src/main/java/demo/callback/client/CallbackImpl.java
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/callback/src/main/java/demo/callback/client/CallbackImpl.java?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/callback/src/main/java/demo/callback/client/CallbackImpl.java (original)
+++ cxf/trunk/distribution/src/main/release/samples/callback/src/main/java/demo/callback/client/CallbackImpl.java Tue Mar 20 20:22:12 2012
@@ -38,7 +38,7 @@ public class CallbackImpl implements Cal
      */
     public String serverSayHi(String message) {
         System.out.println("Callback object invoked");
-        System.out.println("Message recieved: " + message);
+        System.out.println("Message received: " + message);
         return new String("Hi " + message);
     }
     

Modified: cxf/trunk/distribution/src/main/release/samples/callback/src/main/java/demo/callback/server/ServerImpl.java
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/callback/src/main/java/demo/callback/server/ServerImpl.java?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/callback/src/main/java/demo/callback/server/ServerImpl.java (original)
+++ cxf/trunk/distribution/src/main/release/samples/callback/src/main/java/demo/callback/server/ServerImpl.java Tue Mar 20 20:22:12 2012
@@ -41,7 +41,7 @@ public class ServerImpl implements Serve
             WebServiceFeature[] wfs = new WebServiceFeature[] {};
             CallbackPortType port = (CallbackPortType)callback.getPort(CallbackPortType.class, wfs);
 
-            System.out.println("Invoking on callback object");
+            System.out.println("Invoking callback object");
             String resp = port.serverSayHi(System.getProperty("user.name"));
             System.out.println("Response from callback object: " + resp);
   

Modified: cxf/trunk/distribution/src/main/release/samples/groovy_spring_support/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/groovy_spring_support/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/groovy_spring_support/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/groovy_spring_support/README.txt Tue Mar 20 20:22:12 2012
@@ -11,6 +11,7 @@ located), the Maven pom.xml file can be 
 
 Using either UNIX or Windows:
 
+  mvn clean install
   mvn -Pserver  (from one command line window)
   mvn -Pclient  (from a second command line window)
 

Modified: cxf/trunk/distribution/src/main/release/samples/java_first_jaxws/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/java_first_jaxws/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/java_first_jaxws/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/java_first_jaxws/README.txt Tue Mar 20 20:22:12 2012
@@ -26,7 +26,7 @@ Alternative: WAR deployment of service i
 value. The endpointAddress value will be installation-specific, but could be 
 "http://localhost:8080/java_first_jaxws-{CXF Version}/services/hello_world" 
 for a default local installation of Tomcat.  Replace {CXF Version} with the
-CXF version declared in the parent POM -- for example, "2.5.1", "2.5.1-SNAPSHOT", 
+CXF version declared in the parent POM -- for example, "2.6.1", "2.6.1-SNAPSHOT", 
 etc.
 
 2.) Manually copy the generated WAR file to the Tomcat webapps folder, or, if you

Modified: cxf/trunk/distribution/src/main/release/samples/java_first_jaxws/src/main/java/demo/hw/client/Client.java
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/java_first_jaxws/src/main/java/demo/hw/client/Client.java?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/java_first_jaxws/src/main/java/demo/hw/client/Client.java (original)
+++ cxf/trunk/distribution/src/main/release/samples/java_first_jaxws/src/main/java/demo/hw/client/Client.java Tue Mar 20 20:22:12 2012
@@ -44,6 +44,8 @@ public final class Client {
         Service service = Service.create(SERVICE_NAME);
         // Endpoint Address
         String endpointAddress = "http://localhost:9000/helloWorld";
+        // If doing Tomcat deployment, endpoint will be similar to:
+        // String endpointAddress = "http://localhost:8080/java_first_jaxws-2.6-0-SNAPSHOT/services/hello_world";
 
         // Add a port to the Service
         service.addPort(PORT_NAME, SOAPBinding.SOAP11HTTP_BINDING, endpointAddress);

Modified: cxf/trunk/distribution/src/main/release/samples/jax_rs/basic_https/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jax_rs/basic_https/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/jax_rs/basic_https/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/jax_rs/basic_https/README.txt Tue Mar 20 20:22:12 2012
@@ -51,12 +51,9 @@ Using either UNIX or Windows:
   mvn -Pserver  (from one command line window)
   mvn -Pclient  (from a second command line window)
     
-
 To remove the target dir, run "mvn clean".
 
 
-
-
 Certificates
 ------------
 

Modified: cxf/trunk/distribution/src/main/release/samples/jaxws_async/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jaxws_async/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/jaxws_async/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/jaxws_async/README.txt Tue Mar 20 20:22:12 2012
@@ -53,69 +53,3 @@ To remove the code generated from the WS
 files, run "mvn clean".
 
 
-Building the demo using wsdl2java and javac
--------------------------------------------
-If your environment already includes cxf-manifest.jar on the
-CLASSPATH, and the JDK directory on the PATH
-it is not necessary to set the environment as described in
-the samples directory README.  If your environment is not
-properly configured, or if you are planning on using wsdl2java,
-javac, and java to build and run the demos, you must set the
-environment.
-
-From the base directory of this sample (i.e., where this README file is
-located), run the following wsdl2java command to generate classes 
-required in the async case.
-
-For UNIX:
-  mkdir -p build/classes
-  wsdl2java -d build/classes -b ./wsdl/async_binding.xml -compile ./wsdl/hello_world_async.wsdl
-
-For Windows:
-  mkdir build\classes
-    Must use back slashes.
-  wsdl2java -d build\classes -b .\wsdl\async_binding.xml -compile .\wsdl\hello_world_async.wsdl
-    May use either forward or back slashes.
-
-Now compile the provided client and server applications with the commands:
-
-For UNIX:  
-  
-  export CLASSPATH=$CLASSPATH:$CXF_HOME/lib/cxf-manifest.jar:./build/classes
-  javac -d build/classes src/demo/hw/client/*.java
-  javac -d build/classes src/demo/hw/server/*.java
-
-For Windows:
-  set classpath=%classpath%;%CXF_HOME%\lib\cxf-manifest.jar;.\build\classes
-  javac -d build\classes src\demo\hw\client\*.java
-  javac -d build\classes src\demo\hw\server\*.java
-
-
-Running the demo using java
----------------------------
-
-From the base directory of this sample (i.e., where this README file is
-located) run the commands, entered on a single command line:
-
-For UNIX (must use forward slashes):
-    java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.hw.server.Server &
-
-    java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.hw.client.Client ./wsdl/hello_world_async.wsdl
-
-The server process starts in the background.  After running the client,
-use the kill command to terminate the server process.
-
-For Windows (may use either forward or back slashes):
-  start 
-    java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-         demo.hw.server.Server
-
-    java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-       demo.hw.client.Client .\wsdl\hello_world_async.wsdl
-
-A new command windows opens for the server process.  After running the
-client, terminate the server process by issuing Ctrl-C in its command window.
-
-

Modified: cxf/trunk/distribution/src/main/release/samples/jaxws_dispatch_provider/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jaxws_dispatch_provider/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/jaxws_dispatch_provider/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/jaxws_dispatch_provider/README.txt Tue Mar 20 20:22:12 2012
@@ -29,82 +29,3 @@ files, run "mvn clean".
 
 
 
-Building the demo using wsdl2java and javac
--------------------------------------------
-If your environment already includes cxf-manifest.jar on the
-CLASSPATH, and the JDK directory on the PATH
-it is not necessary to set the environment as described in
-the samples directory's README.  If your environment is not
-properly configured, or if you are planning on using wsdl2java,
-javac, and java to build and run the demos, you must set the
-environment.
-
-From the base directory of this sample (i.e., where this README file is
-located) first create the target directory build/classes and then 
-generate code from the WSDL file.
-
-
-For UNIX:
-  mkdir -p build/classes
-
-  wsdl2java -d build/classes -compile ./wsdl/hello_world.wsdl
-
-For Windows:
-  mkdir build\classes
-    Must use back slashes.
-
-  wsdl2java -d build\classes -compile .\wsdl\hello_world.wsdl
-    May use either forward or back slashes.
-
-Now compile the provided client and server applications with the commands:
-
-For UNIX:  
-  
-  export CLASSPATH=$CLASSPATH:$CXF_HOME/lib/cxf-manifest.jar:./build/classes
-  javac -d build/classes src/demo/hwDispatch/client/*.java
-  javac -d build/classes src/demo/hwDispatch/server/*.java
-
-For Windows:
-  set classpath=%classpath%;%CXF_HOME%\lib\cxf-manifest.jar;.\build\classes
-  javac -d build\classes src\demo\hwDispatch\client\*.java
-  javac -d build\classes src\demo\hwDispatch\server\*.java
-  
-Finally, copy resource files into the build/classes directory with the commands:
-
-For UNIX:    
-  cp ./src/demo/hwDispatch/client/*.xml ./build/classes/demo/hwDispatch/client
-  cp ./src/demo/hwDispatch/server/*.xml ./build/classes/demo/hwDispatch/server
-
-For Windows:
-  copy src\demo\hwDispatch\client\*.xml build\classes\demo\hwDispatch\client
-  copy src\demo\hwDispatch\server\*.xml build\classes\demo\hwDispatch\server
-
-
-Running the demo using java
----------------------------
-
-From the base directory of this sample (i.e., where this README file is
-located) run the commands, entered on a single command line:
-
-For UNIX (must use forward slashes):
-    java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.hwDispatch.server.Server &
-
-    java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.hwDispatch.client.Client ./wsdl/hello_world.wsdl
-
-The server process starts in the background.  After running the client,
-use the kill command to terminate the server process.
-
-For Windows (may use either forward or back slashes):
-  start 
-    java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-         demo.hwDispatch.server.Server
-
-    java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-       demo.hwDispatch.client.Client .\wsdl\hello_world.wsdl
-
-A new command windows opens for the server process.  After running the
-client, terminate the server process by issuing Ctrl-C in its command window.
-
-

Modified: cxf/trunk/distribution/src/main/release/samples/jaxws_handlers/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jaxws_handlers/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/jaxws_handlers/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/jaxws_handlers/README.txt Tue Mar 20 20:22:12 2012
@@ -32,83 +32,3 @@ To remove the code generated from the WS
 files, run "mvn clean".
 
 
-
-Building the demo using wsdl2java and javac
--------------------------------------------
-If your environment already includes cxf-manifest.jar on the CLASSPATH,
-and the JDK directory on the PATH, it is not necessary to
-set the environment as described in the samples directory's README.
-If your environment is not properly configured, or if you are planning
-on using wsdl2java, javac, and java to build and run the demos, you must
-set the environment.
-
-From the base directory of this sample (i.e., where this README file is
-located) first create the target directory build/classes and then 
-generate code from the WSDL file.
-
-
-For UNIX:
-  mkdir -p build/classes
-
-  wsdl2java -d build/classes -compile ./wsdl/addNumbers.wsdl
-
-For Windows:
-  mkdir build\classes
-    Must use back slashes.
-
-  wsdl2java -d build\classes -compile .\wsdl\addNumbers.wsdl
-    May use either forward or back slashes.
-
-Now compile the provided client and server applications with the commands:
-
-For UNIX:  
-  
-  export CLASSPATH=$CLASSPATH:$CXF_HOME/lib/cxf-manifest.jar:./build/classes
-  javac -d build/classes src/demo/handlers/common/*.java
-  javac -d build/classes src/demo/handlers/client/*.java
-  javac -d build/classes src/demo/handlers/server/*.java
-
-For Windows:
-  set classpath=%classpath%;%CXF_HOME%\lib\cxf-manifest.jar;.\build\classes
-  javac -d build\classes src\demo\handlers\common\*.java
-  javac -d build\classes src\demo\handlers\client\*.java
-  javac -d build\classes src\demo\handlers\server\*.java
-
-Finally, copy the demo_handlers.xml file from the src/demo/handlers/common
-directory into the build/classes/demo/handlers/common directory.
-
-For UNIX:
-  cp ./src/demo/handlers/common/demo_handlers.xml ./build/classes/demo/handlers/common
-
-For Windows:
-  copy src\demo\handlers\common\demo_handlers.xml build\classes\demo\handlers\common
-
-
-Running the demo using java
----------------------------
-
-From the base directory of this sample (i.e., where this README file is
-located) run the commands, entered on a single command line:
-
-For UNIX (must use forward slashes):
-    java -Djava.util.logging.config.file=$CXF_HOME%/etc/logging.properties
-         demo.handlers.server.Server &
-
-    java -Djava.util.logging.config.file=$CXF_HOME%/etc/logging.properties
-         demo.handlers.client.Client ./wsdl/addNumbers.wsdl
-
-The server process starts in the background.
-
-For Windows (may use either forward or back slashes):
-  start 
-    java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-         demo.handlers.server.Server
-
-    java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-         demo.handlers.client.Client .\wsdl\addNumbers.wsdl
-
-The server process starts in a new command window.
-
-After running the client, terminate the server process.
-
-

Modified: cxf/trunk/distribution/src/main/release/samples/jms_spring_config/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jms_spring_config/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/jms_spring_config/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/jms_spring_config/README.txt Tue Mar 20 20:22:12 2012
@@ -1,5 +1,5 @@
 JMS Spring Config Demo
-==================
+======================
 
 This is basically the wsdl first demo adapted to the jms transport. It uses the jms config feature so the jms transport can be
 added to any existing service without changing the wsdl.

Modified: cxf/trunk/distribution/src/main/release/samples/js_browser_client_java_first/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/js_browser_client_java_first/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/js_browser_client_java_first/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/js_browser_client_java_first/README.txt Tue Mar 20 20:22:12 2012
@@ -16,54 +16,6 @@ Using either UNIX or Windows:
   mvn -Pserver
 
 
-Building the demo using javac
------------------------------
-
-If your environment already includes cxf-manifest.jar on the
-CLASSPATH, and the JDK directory on the PATH
-it is not necessary to set the environment as described in
-the samples directory README.  If your environment is not
-properly configured, or if you are planning on using wsdl2java,
-javac, and java to build and run the demos, you must set the
-environment.
-
-From the base directory of this sample (i.e., where this README file is
-located), first create the target directory build/classes and then compile 
-the provided client and server code.
-
-For UNIX:  
-  
-  mkdir -p build/classes
-  export CLASSPATH=$CLASSPATH:$CXF_HOME/lib/cxf-manifest.jar:./build/classes
-  javac -d build/classes src/demo/hw/server/*.java
-
-For Windows:
-  mkdir build\classes
-  set classpath=%classpath%;%CXF_HOME%\lib\cxf-manifest.jar;.\build\classes
-  javac -d build\classes src\demo\hw\server\*.java
-
-
-Running the demo using java
----------------------------
-
-From the base directory of this sample (i.e., where this README file is
-located) run the commands, entered on a single command line:
-
-For UNIX (must use forward slashes):
-    java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.hw.server.Server &
-
-The server process starts in the background.  After running the client,
-use the kill command to terminate the server process.
-
-For Windows (may use either forward or back slashes):
-  start 
-    java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-         demo.hw.server.Server
-
-A new command windows opens for the server process.  After running the
-client, terminate the server process by issuing Ctrl-C in its command window.
-
 Running the client in a browser
 -------------------------------
 

Modified: cxf/trunk/distribution/src/main/release/samples/logbrowser/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/logbrowser/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/logbrowser/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/logbrowser/README.txt Tue Mar 20 20:22:12 2012
@@ -1,5 +1,5 @@
-Building and running the demo using Maven
------------------------------------------
+Building and running the logbrowser demo using Maven
+----------------------------------------------------
 
 From the base directory of this sample (i.e., where this README file is
 located), the pom.xml file is used to build and run the demo. 

Modified: cxf/trunk/distribution/src/main/release/samples/mtom/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/mtom/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/mtom/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/mtom/README.txt Tue Mar 20 20:22:12 2012
@@ -16,7 +16,7 @@ located), the maven pom.xml file can be 
 Using either UNIX or Windows:
 
   mvn install
-  mvn -Perver  (from one command line window)
+  mvn -Pserver  (from one command line window)
   mvn -Pclient  (from a second command line window)
     
 To remove the code generated from the WSDL file and the .class

Modified: cxf/trunk/distribution/src/main/release/samples/restful_dispatch/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/restful_dispatch/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/restful_dispatch/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/restful_dispatch/README.txt Tue Mar 20 20:22:12 2012
@@ -57,21 +57,8 @@ JAX-WS Provider interface.
 Please review the README in the samples directory before continuing.
 
 
-Prerequisites
-------------
-
-If your environment already includes cxf-manifest.jar on the
-CLASSPATH, and the JDK and ant bin directories on the PATH
-it is not necessary to set the environment as described in
-the samples directory README.  If your environment is not
-properly configured, or if you are planning on using wsdl2java,
-javac, and java to build and run the demos, you must set the
-environment.
-
-
 Building and running the demo using Maven
 -----------------------------------------
-
 From the base directory of this sample (i.e., where this README file is
 located), the Maven pom.xml file can be used to build and run the demo. 
 
@@ -83,71 +70,5 @@ Using either UNIX or Windows:
   mvn -Pclient  (from a second command line window)
     
 
-To remove the target dir, run mvn clean".
-
-
-Building the demo using wsdl2java and javac
--------------------------------------------
-
-From the base directory of this sample (i.e., where this README file is
-located), first create the target directory build/classes and then 
-compile the provided client and server applications with the commands:
-
-For UNIX:  
-  mkdir -p build/classes
-  
-  export CLASSPATH=$CLASSPATH:$CXF_HOME/lib/cxf-manifest.jar:./build/classes
-  javac -d build/classes src/demo/restful/client/*.java
-  javac -d build/classes src/demo/restful/server/*.java
-
-For Windows:
-  mkdir build\classes
-    Must use back slashes.
-
-  set classpath=%classpath%;%CXF_HOME%\lib\cxf-manifest.jar;.\build\classes
-  javac -d build\classes src\demo\restful\client\*.java
-  javac -d build\classes src\demo\restful\server\*.java
-
-
-Finally, copy resource files into the build/classes directory with the commands:
-
-For UNIX:    
-  cp ./src/demo/restful/client/*.xml ./build/classes/demo/restful/client
-  cp ./src/demo/restful/server/*.xml ./build/classes/demo/restful/server
-
-For Windows:
-  copy src\demo\restful\client\*.xml build\classes\demo\restful\client
-  copy src\demo\restful\server\*.xml build\classes\demo\restful\server
-
-
-Running the demo using java
----------------------------
-
-From the base directory of this sample (i.e., where this README file is
-located) run the commands, entered on a single command line:
-
-For UNIX (must use forward slashes):
-    java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.restful.server.Server &
-
-    java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.restful.client.Client
-
-The server process starts in the background.  After running the client,
-use the kill command to terminate the server process.
-
-For Windows (may use either forward or back slashes):
-  start 
-    java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-         demo.restful.server.Server
-
-    java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
-       demo.restful.client.Client
-
-A new command windows opens for the server process.  After running the
-client, terminate the server process by issuing Ctrl-C in its command window.
-
-To remove the code generated from the WSDL file and the .class
-files, either delete the build directory and its contents or run:
+To remove the target dir, run "mvn clean".
 
-  ant clean

Modified: cxf/trunk/distribution/src/main/release/samples/ruby_spring_support/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/ruby_spring_support/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/ruby_spring_support/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/ruby_spring_support/README.txt Tue Mar 20 20:22:12 2012
@@ -11,6 +11,7 @@ located), the Maven pom.xml file can be 
 
 Using either Unix or Windows:
 
+  mvn clean install
   mvn -Pserver  (from one command line window)
   mvn -Pclient  (from a second command line window)
 

Modified: cxf/trunk/distribution/src/main/release/samples/ws_addressing/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/ws_addressing/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/ws_addressing/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/ws_addressing/README.txt Tue Mar 20 20:22:12 2012
@@ -36,17 +36,6 @@ WS-Addressing support is enabled for the
 Please review the README in the samples directory before continuing.
 
 
-Prerequisite
-------------
-
-If your environment already includes cxf-manifest.jar on the CLASSPATH,
-and the JDK and ant bin directories on the PATH, it is not necessary to
-run the environment script described in the samples directory README.
-If your environment is not properly configured, or if you are planning
-on using wsdl2java, javac, and java to build and run the demos, you must
-set the environment by running the script.
-
-
 Building and running the demo using Maven
 -----------------------------------------
 From the base directory of this sample (i.e., where this README file is
@@ -65,75 +54,4 @@ To remove the code generated from the WS
 files, run "mvn clean".
 
 
-Building the demo using wsdl2java and javac
--------------------------------------------
-
-From the base directory of this sample (i.e., where this README file is
-located) first create the target directory build/classes and then 
-generate code from the WSDL file.
-
-
-For UNIX:
-  mkdir -p build/classes
-
-  wsdl2java -d build/classes -compile ./wsdl/hello_world_addr.wsdl
-
-For Windows:
-  mkdir build\classes
-    Must use back slashes.
-
-  wsdl2java -d build\classes -compile .\wsdl\hello_world_addr.wsdl
-    May use either forward or back slashes.
-
-Now compile the provided client and server applications with the commands:
-
-For UNIX:  
-  
-  export CLASSPATH=$CLASSPATH:$CXF_HOME/lib/cxf-manifest.jar:./build/classes:.
-  javac -d build/classes src/demo/ws_addressing/common/*.java
-  javac -d build/classes src/demo/ws_addressing/client/*.java
-  javac -d build/classes src/demo/ws_addressing/server/*.java
-
-For Windows:
-  set classpath=%classpath%;%CXF_HOME%\lib\cxf-manifest.jar;.\build\classes;.
-  javac -d build\classes src\demo\ws_addressing\common\*.java
-  javac -d build\classes src\demo\ws_addressing\client\*.java
-  javac -d build\classes src\demo\ws_addressing\server\*.java
-
-
-Running the demo using java
----------------------------
-
-From the base directory of this sample (i.e., where this README file is
-located) run the commands, entered on a single command line:
-
-For UNIX (must use forward slashes):
-    java -Djava.util.logging.config.file=./logging.properties
-         -Dcxf.config.file=server.xml
-         demo.ws_addressing.server.Server &
-
-    java -Djava.util.logging.config.file=./logging.properties
-         -Dcxf.config.file=client.xml
-         demo.ws_addressing.client.Client ./wsdl/hello_world_addr.wsdl
-
-The server process starts in the background.
-
-For Windows (may use either forward or back slashes):
-  start 
-    java -Djava.util.logging.config.file=.\logging.properties
-         -Dcxf.config.file=server.xml
-         demo.ws_addressing.server.Server
-
-    java -Djava.util.logging.config.file=.\logging.properties
-         -Dcxf.config.file=client.xml
-         demo.ws_addressing.client.Client .\wsdl\hello_world_addr.wsdl
-
-The server process starts in a new command window.
-
-After running the client, terminate the server process.
-
-To remove the code generated from the WSDL file and the .class
-files, either delete the build directory and its contents or run:
-
-  ant clean
 

Modified: cxf/trunk/distribution/src/main/release/samples/ws_security/ut/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/ws_security/ut/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/ws_security/ut/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/ws_security/ut/README.txt Tue Mar 20 20:22:12 2012
@@ -57,72 +57,3 @@ To remove the code generated from the WS
 files, run "mvn clean".
 
 
-
-Building the demo using wsdl2java and javac
--------------------------------------------
-
-From the base directory of this sample (i.e., where this README file is
-located) first create the target directory build/classes and then
-generate code from the WSDL file.
-
-
-For UNIX:
-  mkdir -p build/classes
-
-  wsdl2java -d build/classes -compile ./wsdl/hello_world_wssec.wsdl
-
-For Windows:
-  mkdir build\classes
-    Must use back slashes.
-
-  wsdl2java -d build\classes -compile .\wsdl\hello_world_wssec.wsdl
-    May use either forward or back slashes.
-
-Now compile the provided client and server applications with the commands:
-
-For UNIX:
-
-  export CLASSPATH=$CLASSPATH:$CXF_HOME/lib/cxf-manifest.jar:./build/classes
-  javac -d build/classes src/demo/wssec/common/*.java
-  javac -d build/classes src/demo/wssec/client/*.java
-  javac -d build/classes src/demo/wssec/server/*.java
-
-For Windows:
-  set classpath=%classpath%;%CXF_HOME%\lib\cxf-manifest.jar;.\build\classes
-  javac -d build\classes src\demo\wssec\common\*.java
-  javac -d build\classes src\demo\wssec\client\*.java
-  javac -d build\classes src\demo\wssec\server\*.java
-
-
-Running the demo using java
----------------------------
-
-From the base directory of this sample (i.e., where this README file is
-located) run the commands, entered on a single command line:
-
-For UNIX (must use forward slashes):
-    java -Djava.util.logging.config.file=./logging.properties
-         demo.wssec.server.Server &
-
-    java -Djava.util.logging.config.file=./logging.properties
-         demo.wssec.client.Client ./wsdl/hello_world_wssec.wsdl
-
-The server process starts in the background.
-
-For Windows (may use either forward or back slashes):
-  start
-    java -Djava.util.logging.config.file=.\logging.properties
-         demo.wssec.server.Server
-
-    java -Djava.util.logging.config.file=.\logging.properties
-         demo.wssec.client.Client .\wsdl\hello_world_wssec.wsdl
-
-The server process starts in a new command window.
-
-After running the client, terminate the server process.
-
-To remove the code generated from the WSDL file and the .class
-files, either delete the build directory and its contents or run:
-
-  ant clean
-

Modified: cxf/trunk/distribution/src/main/release/samples/wsdl_first/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/wsdl_first/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/wsdl_first/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/wsdl_first/README.txt Tue Mar 20 20:22:12 2012
@@ -77,7 +77,7 @@ Using either UNIX or Windows:
 If you're using Tomcat for the web service provider:
 ----------------------------------------------------
 1.) Update the soap:address value in the resources/CustomerService.wsdl value, switching the
-soap:address value to servlet-specific one (presently commented-out).  Make sure the version
+soap:address value to the servlet-specific one (presently commented-out).  Make sure the version
 number there is the same as the version of CXF being used.
 
 2.) You can manually copy the generated WAR file to the Tomcat webapps folder, or, if you
@@ -90,7 +90,7 @@ To remove the code generated from the WS
 
 There is no special maven profile for the spring client and server but you can easily set it up yourself.
 
-Using eclipse to run and test the demo
+Using Eclipse to run and test the demo
 --------------------------------------
 
 run the following in the demo base directory

Modified: cxf/trunk/distribution/src/main/release/samples/wsdl_first_dynamic_client/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/wsdl_first_dynamic_client/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/wsdl_first_dynamic_client/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/wsdl_first_dynamic_client/README.txt Tue Mar 20 20:22:12 2012
@@ -1,5 +1,5 @@
 Hello World Demo using Document/Literal Style and a Dynamic Client
-=============================================
+==================================================================
 
 This demo illustrates the use of the CXF dynamic client 
 against a standalone server using SOAP 1.1 over HTTP.
@@ -8,10 +8,11 @@ Please review the README in the samples 
 
 
 Building and running the demo using Maven
----------------------------------------
+-----------------------------------------
 
-From the base directory of this sample (i.e., where this README file is
-located), the pom.xml file is used to build and run the demo. 
+From the base directory of this sample (i.e., where this README 
+file is located), the pom.xml file is used to build and run the 
+demo. 
 
 Using either UNIX or Windows:
 

Modified: cxf/trunk/distribution/src/main/release/samples/wsdl_first_xmlbeans/README.txt
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/wsdl_first_xmlbeans/README.txt?rev=1303132&r1=1303131&r2=1303132&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/wsdl_first_xmlbeans/README.txt (original)
+++ cxf/trunk/distribution/src/main/release/samples/wsdl_first_xmlbeans/README.txt Tue Mar 20 20:22:12 2012
@@ -1,5 +1,5 @@
 Hello World Demo using Document/Literal Style and XMLBeans
-=============================================
+==========================================================
 
 This demo illustrates the use of the JAX-WS APIs and with the XMLBeans data binding
 to run a simple client against a standalone server using SOAP 1.1 over HTTP.