views:

21

answers:

1

Hi,

does anyone know how to resolve an external domain name with Dns.GetHostEntry() behind a proxy?

I already tried to indicate the proxy information in my App.config (< defaultProxy >) but it doesn't work.

Thanks.

A: 

Assuming you're talking about an HTTP proxy and the firewall doesn't allow DNS traffic through then it can't be done using the DNS protocol.

One thing you might be able to do is to use an HTTP request against a service like http://network-tools.com and parse the response.

Andrew Cooper
Behind a HTTP proxy, yes. Of course, the DNS protocol should be blocked :) Will find another way. Thanks!
benfle