I have a web service accepting data from client applications, but now the owner wants to change the domain of the web service. If i 301 redirect the old domain to the new domain, will the web service still function normally? Im trying to avoid the need to update all the client applications which are numerous.
More info: So a C# winforms app is sending and pulling data from: test.com/service.asmx, however the client is changing the domain to newtest.com/service.asmx and 301 redirecting the old domain. I've attempted to connect to the service with the winform app, still configured with the old domain, but it fails. Is there any configuration on the server or webservice that i could perform to make this work without requiring modifications to the client applications? This .net 3.5 btw.