Return-Path: Delivered-To: apmail-xml-axis-dev-archive@xml.apache.org Received: (qmail 68615 invoked by uid 500); 24 Sep 2002 13:12:27 -0000 Mailing-List: contact axis-dev-help@xml.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@xml.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-dev@xml.apache.org Received: (qmail 68605 invoked by uid 500); 24 Sep 2002 13:12:27 -0000 Delivered-To: apmail-xml-axis-cvs@apache.org Date: 24 Sep 2002 13:12:26 -0000 Message-ID: <20020924131226.22863.qmail@icarus.apache.org> From: dims@apache.org To: xml-axis-cvs@apache.org Subject: cvs commit: xml-axis/java/docs user-guide.html X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N dims 2002/09/24 06:12:26 Modified: java/samples/userguide/example3 Client.java java/docs user-guide.html Log: Fix for 12828 - userguide.example3.Client doesn't set a default URL Revision Changes Path 1.12 +1 -1 xml-axis/java/samples/userguide/example3/Client.java Index: Client.java =================================================================== RCS file: /home/cvs/xml-axis/java/samples/userguide/example3/Client.java,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- Client.java 11 Jun 2002 14:53:50 -0000 1.11 +++ Client.java 24 Sep 2002 13:12:26 -0000 1.12 @@ -85,7 +85,7 @@ Call call = (Call) service.createCall(); call.setTargetEndpointAddress( new java.net.URL(endpointURL) ); - call.setOperationName( new QName("MyService", "serviceMethod") ); + call.setOperationName( "serviceMethod" ); call.addParameter( "arg1", XMLType.XSD_STRING, ParameterMode.IN); call.setReturnType( org.apache.axis.encoding.XMLType.XSD_STRING ); 1.71 +1 -1 xml-axis/java/docs/user-guide.html Index: user-guide.html =================================================================== RCS file: /home/cvs/xml-axis/java/docs/user-guide.html,v retrieving revision 1.70 retrieving revision 1.71 diff -u -r1.70 -r1.71 --- user-guide.html 13 Sep 2002 15:25:20 -0000 1.70 +++ user-guide.html 24 Sep 2002 13:12:26 -0000 1.71 @@ -410,7 +410,7 @@ <Admin>Done processing</Admin> This command has now made our service accessible via SOAP. Check it out by running the Client class - it should look like this: -
% java samples.userguide.example3.Client "test me!"
  +
% java samples.userguide.example3.Client -lhttp://localhost:8080/axis/services/MyService "test me!"
   You typed : test me!
   %
If you want to prove to yourself that the deployment really worked, try