show/hide this revision's text 2 added 548 characters in body

I have the same scenario deployed with no issues. Why don't you try using the IP address instead of the dynamic hostname:

http://174.129.139.48/AuthService.svc

Edit:

If an unreachable server name is being put into the VS.Net generated proxy then you can adjust it manually in the automatically generated configuration.svcinfo. Alternatively you can set the URL programatically, this is a better option since it won't get over written if you need to re-generate the proxy.

BasicHttpBinding binding = new BasicHttpBinding();
EndpointAddress address = new EndpointAddress("http://174.129.139.48/AuthService.svc");
YourProxy yourProxy = new YourProxy(binding, address);
show/hide this revision's text 1

I have the same scenario deployed with no issues. Why don't you try using the IP address instead of the dynamic hostname:

http://174.129.139.48/AuthService.svc