Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Web Services > ...The ISA Server requires authorization to fulfill the request...

Reply
Thread Tools

...The ISA Server requires authorization to fulfill the request...

 
 
Craig Buchanan
Guest
Posts: n/a
 
      07-27-2006
I recently published a web service that works on my workstation to my ISP.
I have no authenication restrictions on the site, nor do i have restricitons
on the web service itself (<authentication mode="None"/>). I am behind a
corporate firewall, however.

In the process of changing the test harness' WebReferences to use the
newly-published webservice, I get an authentication dialog, which responds
to my ISP credentials, rather than my corporate credentials. Moreover, when
I try to run the harness, it fails with a message that reads:

The request failed with HTTP status 407: Proxy Authentication Required ( The
ISA Server requires authorization to fulfill the request. Access to the Web
Proxy filter is denied. ).

What setting is (or lack of a setting) is causing this authentication
request?

Thanks for your time,

Craig Buchanan


 
Reply With Quote
 
 
 
 
Craig Buchanan
Guest
Posts: n/a
 
      07-27-2006
Found my solution:

Needed to add code to connect to our corporate firewall.

Dim proxy As WebProxy = New WebProxy("proxy.company.com:80")
proxy.Credentials = CredentialCache.DefaultCredentials
Dim _Service As MyWebservice = new MyWebservice()
_Service.Proxy = proxy

"Craig Buchanan" <> wrote in message
news:e%...
>I recently published a web service that works on my workstation to my ISP.
>I have no authenication restrictions on the site, nor do i have
>restricitons on the web service itself (<authentication mode="None"/>). I
>am behind a corporate firewall, however.
>
> In the process of changing the test harness' WebReferences to use the
> newly-published webservice, I get an authentication dialog, which responds
> to my ISP credentials, rather than my corporate credentials. Moreover,
> when I try to run the harness, it fails with a message that reads:
>
> The request failed with HTTP status 407: Proxy Authentication Required (
> The ISA Server requires authorization to fulfill the request. Access to
> the Web Proxy filter is denied. ).
>
> What setting is (or lack of a setting) is causing this authentication
> request?
>
> Thanks for your time,
>
> Craig Buchanan
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
ASP - Server-side script requires server to be logged in mto32 ASP General 0 03-24-2009 04:39 PM
as they are the parts of the hard disk and that function fulfill rodolfo Hardware 2 07-28-2006 07:42 PM
URL Authorization does not override File Authorization? SeanRW ASP .Net Security 1 05-25-2006 06:18 AM
Exchange Server 2003 and ISA Server 2004 Dingus Computer Support 4 03-25-2006 05:06 PM
How to fulfill contract across two different Java versions? Scott Simpson Java 3 03-24-2005 05:48 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57