hi i want to know if there is a way to specify the wsdl location progamatically at runtime..
@WebServiceRef(wsdlLocation = "http://localhost:8080/helloservice/hello?wsdl")
i want to make the wsdlLocation dynamic..for the location of my webservices will be retrieved from a database at run time so i need to make my webservice location a variable.
e.g.
String wsdl_loc=rs.getString("ws_url");
@WebServiceRef(wsdlLocation = wsdl_loc);
is this possible with jax-ws?
thanks in advance for your help..