
Originally Posted by
wlsmith
I'm not sure how the namespaceUri property is used by your application, but if it is actually an XML namespace URI, you wouldn't want to change it when you relocate your webservice.
The namespace URI is supposed to be a globally unique string that identifies the namespace of XML elements (in this case, presumably, your WSDL). It often looks like a URL because domain names can be controlled to ensure a globally unique identifier... but it probably shouldn't move around when the service is hosted on a different machine. Changing it changes the "official" name of all of your XML elements.
Note: This may have nothing to do with your problem, unfortunately.