You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by he...@apache.org on 2005/07/03 10:28:43 UTC

svn commit: r208897 - in /webservices/axis/trunk/java: modules/samples/src/sample/axis2rest/MyServiceClient.java modules/samples/src/userguide/clients/RESTClient.java xdocs/rest-ws.html

Author: hemapani
Date: Sun Jul  3 01:28:41 2005
New Revision: 208897

URL: http://svn.apache.org/viewcvs?rev=208897&view=rev
Log:
rename the REST sample Client to more straight foward name

Added:
    webservices/axis/trunk/java/modules/samples/src/userguide/clients/RESTClient.java
      - copied, changed from r208893, webservices/axis/trunk/java/modules/samples/src/sample/axis2rest/MyServiceClient.java
Removed:
    webservices/axis/trunk/java/modules/samples/src/sample/axis2rest/MyServiceClient.java
Modified:
    webservices/axis/trunk/java/xdocs/rest-ws.html

Copied: webservices/axis/trunk/java/modules/samples/src/userguide/clients/RESTClient.java (from r208893, webservices/axis/trunk/java/modules/samples/src/sample/axis2rest/MyServiceClient.java)
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/samples/src/userguide/clients/RESTClient.java?p2=webservices/axis/trunk/java/modules/samples/src/userguide/clients/RESTClient.java&p1=webservices/axis/trunk/java/modules/samples/src/sample/axis2rest/MyServiceClient.java&r1=208893&r2=208897&rev=208897&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/samples/src/sample/axis2rest/MyServiceClient.java (original)
+++ webservices/axis/trunk/java/modules/samples/src/userguide/clients/RESTClient.java Sun Jul  3 01:28:41 2005
@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package sample.axis2rest;
+package userguide.clients;
 
 import org.apache.axis2.Constants;
 import org.apache.axis2.addressing.AddressingConstants;
@@ -30,7 +30,7 @@
 /**
  * This is a Client progam that accesses 'MyService' web service in Axis2 samples 
  */
-public class MyServiceClient {
+public class RESTClient {
 
 	private static String toEpr = "http://localhost:8080/axis2/services/MyService";
 	

Modified: webservices/axis/trunk/java/xdocs/rest-ws.html
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/xdocs/rest-ws.html?rev=208897&r1=208896&r2=208897&view=diff
==============================================================================
--- webservices/axis/trunk/java/xdocs/rest-ws.html (original)
+++ webservices/axis/trunk/java/xdocs/rest-ws.html Sun Jul  3 01:28:41 2005
@@ -30,7 +30,7 @@
 </ol>
 
 <h3>Sample REST - HTTP POST Client</h3>
-<p>There's a sample.axis2rest.MyServiceClient.java which demonstrates the usage of the above, using 
+<p>There's a userguide.clients.RESTClient.java which demonstrates the usage of the above, using 
 the <code>echo</code> operation of the <code>userguide.example1.MyService</code> of the samples. 
 And the class source will be as follows
 <pre>