You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by tl...@apache.org on 2006/11/30 02:13:17 UTC

svn commit: r480799 - /incubator/cxf/trunk/distribution/src/main/release/samples/dispatch_provider/README.txt

Author: tli
Date: Wed Nov 29 17:13:15 2006
New Revision: 480799

URL: http://svn.apache.org/viewvc?view=rev&rev=480799
Log:
fix the README.txt to correct running demo in command line

Modified:
    incubator/cxf/trunk/distribution/src/main/release/samples/dispatch_provider/README.txt

Modified: incubator/cxf/trunk/distribution/src/main/release/samples/dispatch_provider/README.txt
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/dispatch_provider/README.txt?view=diff&rev=480799&r1=480798&r2=480799
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/dispatch_provider/README.txt (original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/dispatch_provider/README.txt Wed Nov 29 17:13:15 2006
@@ -77,6 +77,16 @@
   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
@@ -87,7 +97,7 @@
 
 For UNIX (must use forward slashes):
     java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
-         demo.hwDispatch.server.Server ./wsdl/hello_world.wsdl &
+         demo.hwDispatch.server.Server &
 
     java -Djava.util.logging.config.file=$CXF_HOME/etc/logging.properties
          demo.hwDispatch.client.Client ./wsdl/hello_world.wsdl
@@ -98,7 +108,7 @@
 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 .\wsdl\hello_world.wsdl
+         demo.hwDispatch.server.Server
 
     java -Djava.util.logging.config.file=%CXF_HOME%\etc\logging.properties
        demo.hwDispatch.client.Client .\wsdl\hello_world.wsdl