Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 84114 invoked from network); 27 Oct 2006 10:57:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Oct 2006 10:57:54 -0000 Received: (qmail 70545 invoked by uid 500); 27 Oct 2006 10:58:05 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 70290 invoked by uid 500); 27 Oct 2006 10:58:04 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 70279 invoked by uid 500); 27 Oct 2006 10:58:04 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 70276 invoked by uid 99); 27 Oct 2006 10:58:04 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Oct 2006 03:58:04 -0700 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Oct 2006 03:57:50 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 564AF1A9846; Fri, 27 Oct 2006 03:57:29 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r468342 - /webservices/axis2/branches/java/1_1/xdocs/1_1/userguide.html Date: Fri, 27 Oct 2006 10:57:29 -0000 To: axis2-cvs@ws.apache.org From: chatra@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061027105729.564AF1A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: chatra Date: Fri Oct 27 03:57:27 2006 New Revision: 468342 URL: http://svn.apache.org/viewvc?view=rev&rev=468342 Log: removed wrong statement Modified: webservices/axis2/branches/java/1_1/xdocs/1_1/userguide.html Modified: webservices/axis2/branches/java/1_1/xdocs/1_1/userguide.html URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/xdocs/1_1/userguide.html?view=diff&rev=468342&r1=468341&r2=468342 ============================================================================== --- webservices/axis2/branches/java/1_1/xdocs/1_1/userguide.html (original) +++ webservices/axis2/branches/java/1_1/xdocs/1_1/userguide.html Fri Oct 27 03:57:27 2006 @@ -204,8 +204,7 @@ echoString operation of the Axis2SampleDocLitService that we have already deployed. The code is very simple to understand and the explanations are in the form of -comments. The terms Axis home and Axis repository may be used -interchangeably.

+comments.

     try {
org.apache.axis2.userguide.Axis2SampleDocLitServiceStub stub = new
org.apache.axis2.userguide.Axis2SampleDocLitServiceStub(null,
"http://localhost:8080/axis2/services/Axis2SampleDocLitService");

//Create the request document to be sent.
org.apache.axis2.userguide.xsd.EchoStringParamDocument reqDoc =
org.apache.axis2.userguide.xsd.EchoStringParamDocument.Factory.newInstance();
reqDoc.setEchoStringParam("Axis2 Echo");

//invokes the Web service.
org.apache.axis2.userguide.xsd.EchoStringReturnDocument resDoc = stub.echoString(reqDoc);
System.out.println(resDoc.getEchoStringReturn());

} catch (java.rmi.RemoteException e) {
e.printStackTrace();
}

First argument of Axis2SampleDocLitPortTypeStub should be the --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org