Every new web service you create using visual studio comes with a predefined namespace like this:
[WebService(Namespace = "http://tempuri.org/")]
My web service will run at different clients, and on different domains, so because of this I don't know the domain upfront during development, also I don't want to have to edit this file, each time I deploy to a new client.
What exactly should the value of Namespace be? It seems like a web address, but that doesn't make sense to me.
Please explain.
Thanks