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 }