You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by sa...@apache.org on 2011/09/07 10:06:42 UTC

svn commit: r1166038 - /axis/axis2/java/core/trunk/src/site/xdoc/docs/userguide-codelisting7.xml

Author: sagara
Date: Wed Sep  7 08:06:41 2011
New Revision: 1166038

URL: http://svn.apache.org/viewvc?rev=1166038&view=rev
Log:
Fixed AXIS2-4655.

Modified:
    axis/axis2/java/core/trunk/src/site/xdoc/docs/userguide-codelisting7.xml

Modified: axis/axis2/java/core/trunk/src/site/xdoc/docs/userguide-codelisting7.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/src/site/xdoc/docs/userguide-codelisting7.xml?rev=1166038&r1=1166037&r2=1166038&view=diff
==============================================================================
--- axis/axis2/java/core/trunk/src/site/xdoc/docs/userguide-codelisting7.xml (original)
+++ axis/axis2/java/core/trunk/src/site/xdoc/docs/userguide-codelisting7.xml Wed Sep  7 08:06:41 2011
@@ -67,7 +67,7 @@ public class Client{
 
             req.setMessageString("An in only request");
 
-            stub.DoInOnly(req);
+            stub.doInOnly(req);
             System.out.println("done");
         } catch(Exception e){
             e.printStackTrace();
@@ -83,7 +83,7 @@ public class Client{
             req.setEchoString("echo! ... echo!");
 
             TwoWayOneParameterEchoResponse res =
-                stub.TwoWayOneParameterEcho(req);
+                stub.twoWayOneParameterEcho(req);
 
             System.out.println(res.getEchoString());
         } catch(Exception e){
@@ -97,7 +97,7 @@ public class Client{
         try{
             NoParametersRequest req = new NoParametersRequest();
 
-            System.out.println(stub.NoParameters(req));
+            System.out.println(stub.noParameters(req));
         } catch(Exception e){
             e.printStackTrace();
             System.out.println("\n\n\n");
@@ -116,7 +116,7 @@ public class Client{
             req.setItemName("flour");
 
             MultipleParametersAddItemResponse res =
-                stub.MultipleParametersAddItem(req);
+                stub.multipleParametersAddItem(req);
 
             System.out.println(res.getSuccessfulAdd());
             System.out.println(res.getItemId());