Hi Rich,
Thank you for your reply. I'd like to clearify my question more clearly:
There is a applicaiton using the third party web service. Now the third party server is changed. I'd like to point to the new server.
So I am editing the web.config file of this application.
The third party provided WSDL file as below. Current and New have the same End Point although I believe the content of the WSDL file has a little difference.
WSAmandaService
End Point /axis/services/WSAmandaService
WSDL 1.1 /axis/services/WSAmandaService?wsdl
The current web.config one has the line like this:
<endpoint address="https://amanda-as-test/axis/services/WSAmandaService.WSAmandaServiceHttpsSoap11Endpoint/" binding="basicHttpBinding" bindingConfiguration="WSAmandaServiceSoap11Binding" contract="svcAmanda.WSAmandaServicePortType" name="WSAmandaServiceHttpsSoap11Endpoint" />
I'd like to chnage the new one to:
<endpoint address="https://amanda-as-dev72:8080/axis/services/WSAmandaService/" binding="basicHttpBinding" bindingConfiguration="WSAmandaServiceSoap11Binding" contract="svcAmanda.WSAmandaServicePortType" name="WSAmandaServiceHttpsSoap11Endpoint" />
You can see besides the server name difference, the current one has extra part after the URL of the endpoint address (I highlighted with red).
My qusetion is: If I only change the server name, should I also remove the extra part of the current end point (.WSAmandaServiceHttpsSoap11Endpoint) ?
I didn't see the extra part in the thrid party provided Endpoint and that's why I am wondering what the last part come from.
Thank you
ZJH