It's inconvenient having the host name / port number in the WSDL file,
like below, because every time you setup your service on a new machine
you have to manually modify the WSDL file with the new machine's name.
Do other people have a trick for dealing w/this inconvenience? Are
people dynamically generating their WSDL files, similar to the way JSP
pages are dynamically generated?
<wsdl:service name="MyService">
<wsdl:port binding="impl:InicioSoapBinding" name="MyService">
<wsdlsoap:address location="http://localhost:8080/axis/services/MyService"/>
</wsdl:port>
</wsdl:service>
Thanks,
Bill