Ask a Question related to ASP.NET Web Services, Design and Development.
-
samy coco via .NET 247 #1
Proxy authentication required
(Type your message here)
--------------------------------
From: samy coco
I have a windows application which invokes Web services:
WebReference1.myservice service = new WebReference1.myservice();
service.Url = "http://myurl.asmx";
service.MyMethod(string arg);
A client station using a Proxy server (ISA server) fails when calling the webservice .
The error message is :
(407) Proxy authentication required.
How to get the parameters(Password/UserName/Domain) that the user supplied to establishe a connection with the Proxy via his Internet Browser ?
Thanks Samy.
-----------------------
Posted by a user from .NET 247 ([url]http://www.dotnet247.com/[/url])
<Id>DPDHzBxrG0K7TXYGrIgIZQ==</Id>
samy coco via .NET 247 Guest
-
WebService Proxy Error: Positive number required
We are attempting to utilize a J2EE\IBM WSA webservice and on the oneway method call I get the following exception ... -
web service proxy authentication
Hi all I have an application that seems to be having an ongoing battle with my firewall. I am using a webservice to send back data to a SQL server... -
Proxy authenticated required
Hi I am trying to call a web service from behind a MS ISA Server on a sbs2003 machine. The calling program is coming up with this error; The... -
request failed with HTTP status 407: Proxy Authentication Required
Hi all. I have been strugling with trying to get access to a web reference in my web project that is outside my firewall (ISA 2000 server running... -
web service wants proxy authentication
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... -
Jan Tielens #2
Re: Proxy authentication required
Check this KB:
[url]http://support.microsoft.com/default.aspx?scid=kb;en-us;330221[/url]
Add this to the .config file:
<defaultProxy>
<proxy
usesystemdefault = "false"
proxyaddress="http://proxyserver:port"
bypassonlocal="true"
/>
</defaultProxy>
OR do this in code:
Dim myProxy As New WebProxy("http://proxyserver:port", True)
myProxy.Credentials = New NetworkCredential("username", "password",
"domain")
Dim myFindService As New FindServiceSoap()
myFindService.Proxy = myProxy
--
Greetz,
Jan
________________________
Read my weblog: [url]http://weblogs.asp.net/jan[/url]
"samy coco via .NET 247" <anonymous@dotnet247.com> schreef in bericht
news:OTRU6%23OKEHA.3728@TK2MSFTNGP12.phx.gbl...webservice .> (Type your message here)
>
> --------------------------------
> From: samy coco
>
> I have a windows application which invokes Web services:
>
> WebReference1.myservice service = new WebReference1.myservice();
> service.Url = "http://myurl.asmx";
> service.MyMethod(string arg);
>
> A client station using a Proxy server (ISA server) fails when calling theto establishe a connection with the Proxy via his Internet Browser ?> The error message is :
>
> (407) Proxy authentication required.
>
> How to get the parameters(Password/UserName/Domain) that the user supplied>
> Thanks Samy.
>
> -----------------------
> Posted by a user from .NET 247 ([url]http://www.dotnet247.com/[/url])
>
> <Id>DPDHzBxrG0K7TXYGrIgIZQ==</Id>
Jan Tielens Guest



Reply With Quote

