Trying to get repsone from a wsdl
I want to know a simple to see if I can talk to a wsdl.We have one sitting on say http://oursever.doi.gov/axis/ourwdsl.jws?wsdlThere is a method on there called getAllList_Comp( String user, String pass)How can i write a simple invoke to that method.
The wsdl you point to was evidently created using AXIS.To create a client program - java program to use the interface, run the axis utility wsdl2java. That will generate several java classes which you then call in order to access the server.The axis docs explain all this.
Do you mean these 4 files:"jwsName"_portType.class"jwsName"Service.class"jwsName"ServiceLocator.class"jwsName"SoapBindingStub.classThose are created, so can i just call them a .java to test and see I can talk to the web service to run my getListPick_Up