As the title suggests, I'm getting the following exception from an ASP.NET page
The remote name could not be resolved: 'apiconnector.com'
I can however navigate to this address from a browser, so I know it's accessible.
Why can't ASP.NET navigate to this address?
EDIT: How am I "navigating" exactly?
Ok so basically I've imported a WSDL as a service reference. All I am doing is calling the methods from the service reference. It's the service reference that does the actual navigation.
Service reference configuration contains the following XML
<endpoints>
<endpoint ... address="http://apiconnector.com/API.asmx" ... />
</endpoints>