Author: jliu
Date: Mon Dec 4 18:23:10 2006
New Revision: 482457
URL: http://svn.apache.org/viewvc?view=rev&rev=482457
Log:
Update RESTful sample's README
Modified:
incubator/cxf/trunk/distribution/src/main/release/samples/restful/README.txt
Modified:
incubator/cxf/trunk/distribution/src/main/release/samples/restful/README.txt
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/restful/README.txt?view=diff&rev=482457&r1=482456&r2=482457
==============================================================================
---
incubator/cxf/trunk/distribution/src/main/release/samples/restful/README.txt
(original)
+++
incubator/cxf/trunk/distribution/src/main/release/samples/restful/README.txt
Mon Dec 4 18:23:10 2006
@@ -1,7 +1,7 @@
RESTful Hello World Demo
========================
-The demo shows REST based Web services using the XML binding and
+The demo shows REST based Web Services using the XML binding and
JAX-WS Provider/Dispatch. The REST server provides the following services:
A RESTful customer service is provided on URL
http://localhost:9000/customerservice/customer.
@@ -9,7 +9,7 @@
A HTTP GET request to URL http://localhost:9000/customerservice/customer
returns
a list of customer hyperlinks. This allows client navigates through the
-application states. The returned XML document:
+application states. The XML document returned:
<Customers>
<Customer href="http://localhost/customerservice/customer?id=1234">
@@ -24,7 +24,7 @@
</Customers>
A HTTP GET request to URL
http://localhost:9000/customerservice/customer?id=1234
-returns a customer instance whose id is 1234. The returned XML document:
+returns a customer instance whose id is 1234. The XML document returned:
<Customer>
<id>1234</id>
@@ -43,8 +43,10 @@
updates customer 1234 with the data provided.
-The client code demonstrate how to send HTTP POST with XML data using
-JAX-WS Dispatch and how to send HTTP GET using URL.openStream().
+The client code demonstrates how to send HTTP POST with XML data using
+JAX-WS Dispatch and how to send HTTP GET using URL.openStream(). The
+server code demonstrates how to build a RESTful endpoints through
+JAX-WS Provider interface.
Please review the README in the samples directory before