When generating the wsdl file, I specify the location that the web service
will be deployed to.  For example, when developing, I may specify location=
http://myserver:8080/axis/services/AddressBook.  This appears in the WSDL
as:

<service name="AddressBookService">
 <port name="AddressBook" binding="tns:AddressBookSOAPBinding">
   <soap:address location="http://myserver:8080/axis/services/AddressBook
"/>
 </port>
</service>

What if I want to take my war file and redeploy it to the test environment?
Is there a way to make the address location relative (something like
"/axis/services/AddressBook")?

Josh

Reply via email to