Return-Path: Delivered-To: apmail-xml-axis-dev-archive@xml.apache.org Received: (qmail 54571 invoked by uid 500); 13 Jun 2002 18:47:44 -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 54562 invoked by uid 500); 13 Jun 2002 18:47:43 -0000 Delivered-To: apmail-xml-axis-cvs@apache.org Date: 13 Jun 2002 18:47:42 -0000 Message-ID: <20020613184742.14024.qmail@icarus.apache.org> From: butek@apache.org To: xml-axis-cvs@apache.org Subject: cvs commit: xml-axis/java/src/org/apache/axis/client ServiceFactory.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N butek 2002/06/13 11:47:42 Modified: java/src/org/apache/axis/client ServiceFactory.java Log: Clean up the comments on ServiceFactory.createService. Revision Changes Path 1.11 +5 -9 xml-axis/java/src/org/apache/axis/client/ServiceFactory.java Index: ServiceFactory.java =================================================================== RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/client/ServiceFactory.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- ServiceFactory.java 11 Jun 2002 14:53:52 -0000 1.10 +++ ServiceFactory.java 13 Jun 2002 18:47:41 -0000 1.11 @@ -235,9 +235,11 @@ } // createService /** - * Create a Service instance. - * - * Not yet implemented. + * Create a Service instance. Since the WSDL file is not provided + * here, the Service object returned is quite simpleminded. + * Likewise, the Call object that service.createCall will return + * will also be simpleminded. The caller must explicitly fill in + * all the info on the Call object (ie., endpoint address, etc.). * * @param serviceName QName for the service * @return Service. @@ -245,12 +247,6 @@ */ public javax.xml.rpc.Service createService(QName serviceName) throws ServiceException { - - // RJB - this isn't quite proper - I'm dropping the serviceName, - // but I don't rightly know what use the service name is without - // WSDL. So I'll just create a default (empty) Service with the - // assumption that callers of this method are going to do all - // the work themselves. return new Service(); } // createService }