You can generate your web service client classes using jaxws utilities and the published wsdl
e.g.
something like
wsimport -target 2.2 -s C:\temp\outputcode -p com.package.name http://1.2.3.4/jaxsws/wsname?wsdl
This will put classes into C:\temp\outputcode that you can use in your project.
Look for a class extending Service. This will have a number of constructors that allow the WSDL location to be overridden.
From the Service you obtain a handle (proxy) to the web service Port. (This will be a generated Interface with methods corresponding to web service methods in the wsdl). You then invoke the method and this will call the web service.
There is some further information here How does a wsimport generated client work?