C
Chris Podmore
I have a web service running on my PC that I want to access from a Pocket PC (Compact Framework) connected to my machine using ActiveSync. I can access the web service from the emulator no problem but when I try the same application on the Pocket PC I get “The remote server returned an error: (407) Proxy Authentication Requiredâ€
The application has the ability to change the IP address of the web service, as the customer’s machines will obviously have different IP addresses to us
The application will need to access the web service either ActiveSync, GPRS, RAS, WiFi
I have tried
Dim wp As New System.Net.WebProx
'wp.Address = New Uri("http://acssbs1:8080"
wp.Address = New Uri("http://999.999.99.9:8080"
wp.BypassProxyOnLocal = Tru
wp.Credentials = New System.Net.NetworkCredential("chrisp", "**********", "domain"
ws.Proxy = w
But this doesn’t work as it still reports the error
Any help will be much appreciated
Thanks in advance
Chris
The application has the ability to change the IP address of the web service, as the customer’s machines will obviously have different IP addresses to us
The application will need to access the web service either ActiveSync, GPRS, RAS, WiFi
I have tried
Dim wp As New System.Net.WebProx
'wp.Address = New Uri("http://acssbs1:8080"
wp.Address = New Uri("http://999.999.99.9:8080"
wp.BypassProxyOnLocal = Tru
wp.Credentials = New System.Net.NetworkCredential("chrisp", "**********", "domain"
ws.Proxy = w
But this doesn’t work as it still reports the error
Any help will be much appreciated
Thanks in advance
Chris