You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2007/11/15 17:57:36 UTC

svn commit: r595355 - in /incubator/cxf/branches/2.0.x-fixes: ./ distribution/src/main/release/samples/restful_http_binding/ distribution/src/main/release/samples/restful_http_binding/src/com/ distribution/src/main/release/samples/restful_http_binding/...

Author: dkulp
Date: Thu Nov 15 08:57:34 2007
New Revision: 595355

URL: http://svn.apache.org/viewvc?rev=595355&view=rev
Log:
Merged revisions 595229 via svnmerge from 
https://svn.apache.org/repos/asf/incubator/cxf/trunk

........
  r595229 | jliu | 2007-11-15 02:29:00 -0500 (Thu, 15 Nov 2007) | 1 line
  
  More on restfu_http_binding demo refactoring: Using HttpClient instead of jax-ws style APIs to show how to access RESTful services because a). jax-ws style client API does not work properly with CXF HTTP binding RESTful services b). We do not have plan to support this anyway.
........

Added:
    incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/restful_http_binding/README.txt
      - copied unchanged from r595229, incubator/cxf/trunk/distribution/src/main/release/samples/restful_http_binding/README.txt
    incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/restful_http_binding/src/demo/restful/client/Client.java
      - copied unchanged from r595229, incubator/cxf/trunk/distribution/src/main/release/samples/restful_http_binding/src/demo/restful/client/Client.java
    incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/restful_http_binding/src/demo/restful/server/Server.java
      - copied unchanged from r595229, incubator/cxf/trunk/distribution/src/main/release/samples/restful_http_binding/src/demo/restful/server/Server.java
Removed:
    incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/restful_http_binding/src/com/
    incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/restful_http_binding/src/demo/restful/client/ClientMain.java
    incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/restful_http_binding/src/demo/restful/server/Main.java
Modified:
    incubator/cxf/branches/2.0.x-fixes/   (props changed)
    incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/restful_http_binding/build.xml

Propchange: incubator/cxf/branches/2.0.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/restful_http_binding/build.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/restful_http_binding/build.xml?rev=595355&r1=595354&r2=595355&view=diff
==============================================================================
--- incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/restful_http_binding/build.xml (original)
+++ incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/restful_http_binding/build.xml Thu Nov 15 08:57:34 2007
@@ -23,11 +23,11 @@
     <import file="../common_build.xml"/>        
         
     <target name="client" description="run demo client" depends="build">
-        <cxfrun classname="demo.restful.client.ClientMain"/>
+        <cxfrun classname="demo.restful.client.Client"/>
     </target> 
         
     <target name="server" description="run demo server" depends="build">
-        <cxfrun classname="demo.restful.server.Main"/>
+        <cxfrun classname="demo.restful.server.Server"/>
     </target>
 
 </project>