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.
[278 byte] By [The_Real_E.T.a] at [2007-11-27 1:12:17]
# 1
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.
bschauwejavaa at 2007-7-11 23:47:37 > top of Java-index,Java Essentials,Java Programming...
# 2
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
The_Real_E.T.a at 2007-7-11 23:47:37 > top of Java-index,Java Essentials,Java Programming...