butek 02/04/04 12:45:27 Modified: java TODO.txt java/src/org/apache/axis/client ServiceFactory.java Log: Start implementing some of the unimplemented JAX-RPC stuff. Here's an easy one, but one I'll need for the JAX-RPC compliant sample(s). Revision Changes Path 1.36 +2 -1 xml-axis/java/TODO.txt Index: TODO.txt =================================================================== RCS file: /home/cvs/xml-axis/java/TODO.txt,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- TODO.txt 4 Apr 2002 14:35:34 -0000 1.35 +++ TODO.txt 4 Apr 2002 20:45:27 -0000 1.36 @@ -30,8 +30,9 @@ ! <> Implement TypeMapping and TypeMappingRegistry ala JAX-RPC 0.8 ! <> Implement Handler code ala JAX-RPC 0.8 ! <> Once we get word that javax.xml.rpc.encoding.XMLType is a real class (it's in the JAX-RPC javadocs but not in the spec) then replace all the constants in org.apache.axis.encoding.XMLType with the JAX-RPC constants. +! <> Once we get word that javax.xml.rpc.namespace.NamespaceConstants is a real class (it's in the JAX-RPC javadocs but not in the spec) then use it. ! <> Implement javax.xml.rpc.server interfaces. -! <> Change all the samples (and the tests?) to use the JAX-RPC interfaces rather than the AXIS ones. +! <> Add some JAX-RPC compliance samples/tests. SOAP 1.2 SUPPORT ---------------- 1.8 +1 -2 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.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ServiceFactory.java 27 Mar 2002 18:17:43 -0000 1.7 +++ ServiceFactory.java 4 Apr 2002 20:45:27 -0000 1.8 @@ -231,8 +231,7 @@ */ public javax.xml.rpc.Service createService(URL wsdlDocumentLocation, QName serviceName) throws ServiceException { - throw new ServiceException(JavaUtils.getMessage( - "notImplemented00", "ServiceFactory.createService")); + return new Service(wsdlDocumentLocation, serviceName); } // createService /**