Why does this code (VS2005 Compact Framework 2.0 RTM or SP2) not work when
all the info is entered for the proxy and saved on the device? The proxy is
an ISA 2006 with authenticated users for HTTP access. The Mobile 5 device can
access the internet fine without a prompt.
oWebRequest = System.Net.HttpWebRequest.Create(RequestUri)
oWebRequest.Method = "GET"
oWebResponse = oWebRequest.GetResponse()
I have tried all possibilities of to following event though GetDefaultProxy
should not be required.
'oWebRequest.Proxy = System.Net.WebProxy.GetDefaultProxy
'oWebRequest.Proxy.Credentials = System.Net.CredentialCache.DefaultCredentials
'oWebRequest.Credentials = System.Net.CredentialCache.DefaultCredentials
Thanks for any help Philip
Archived from group: microsoft>public>pocketpc>developer>networking