1. Get proper URI from WSDL to invoke that web service stackoverflow.comI have following WSDL file which is hosted on http://localhost:37942/Service1.svc?wsdl On one browser (default) I can write http://localhost:37942/Service1.svc/json/45 to invoke a method in this web service, but if ... |
2. reading WSDL from an uri coderanch.comI want to parse an WSDL that is located in an URI. Ive done it with an WSDL that is in the system directory like: document = builder.parse( new File("test.wsdl") ); but when I try with the URI like: document = builder.parse( new File("http://localhost:8080/library-jaxrpc/library") ); it return me an error indicating that the file was not found because it searchs it ... |
3. problem to call web service without WSDL URI coderanch.com |