Re: TestWebappBasicAuth fails on IIS

2004-03-18 Thread Roland Weber
Hi Dan,

I haven't looked into the test cases yet, so I don't know
about how many uid/pwd combinations we are talking here.
If it's only a few, you could create Windows users for them.
IIS still checks the Auth header, but it lets the request pass
through since it knows the user.
If that is not an option and resequencing of the IIS plugins
doesn't help, I'm out of ideas here.

cheers,
  Roland
 




"Dan Tran" <[EMAIL PROTECTED]>
18.03.2004 20:06
Please respond to "Commons HttpClient Project"
 
To: [EMAIL PROTECTED]
cc: 
        Subject:Re: TestWebappBasicAuth fails on IIS



Roland, I have IIS connecting to tomcat containing httpclienttest.war via 
iis_redirector, and run httpclienttest against iis.

As you have said, IIS does intercept the header.  I can either add the 
user/password hardcoded in the httpclienttest to IIS and run the test 
again, 
or I can figure out how to make IIS not to intercept the basic 
authentication.  The later one is the perfer way. but still no clue yet.

-Dan


>From: Roland Weber <[EMAIL PROTECTED]>
>Reply-To: "Commons HttpClient Project" 
><[EMAIL PROTECTED]>
>To: "Commons HttpClient Project" 
><[EMAIL PROTECTED]>
>Subject: Re: TestWebappBasicAuth fails on IIS
>Date: Thu, 18 Mar 2004 07:31:27 +0100
>
>Hello Dan,
>
>IIS will try to verify the authentication headers it gets.
>If your users and passwords are known to Windows,
>the requests should pass through just fine.
>
>What exactly is an "httpclient servlet"?
>
>Have you checked which plugins are active in IIS?
>Maybe you can move the plugin of your servlet
>engine in front of the IIS authentication, so the
>servlet gets the request before IIS authenticates it.
>
>I'm just guessing here, I only conducted a few
>authentication experiments with IIS last year.
>
>cheers,
>   Roland
>
>
>
>
>
>
>"Dan Tran" <[EMAIL PROTECTED]>
>17.03.2004 17:28
>Please respond to "Commons HttpClient Project"
>
> To: "Commons HttpClient Project"
><[EMAIL PROTECTED]>
> cc:
> Subject:TestWebappBasicAuth fails on IIS
>
>
>Hello, I think IIS rejects any Basic Authentication request.  Is there a
>way
>to configure IIS to allow these
>request to passthru to httpclient servlets?
>
>Any suggestions?
>
>-Dan
>
>-
>To unsubscribe, e-mail:
>[EMAIL PROTECTED]
>For additional commands, e-mail:
>[EMAIL PROTECTED]
>
>

_
Find a broadband plan that fits. Great local deals on high-speed Internet 
access. http://click.atdmt.com/AVE/go/onm00200360ave/direct/01/


-
To unsubscribe, e-mail: 
[EMAIL PROTECTED]
For additional commands, e-mail: 
[EMAIL PROTECTED]




Re: TestWebappBasicAuth fails on IIS

2004-03-18 Thread Oleg Kalnichevski
Dan,
What do not you target Tomcat directly? What's the benefit of going
through IIS? 

Oleg

On Thu, 2004-03-18 at 20:06, Dan Tran wrote:
> Roland, I have IIS connecting to tomcat containing httpclienttest.war via 
> iis_redirector, and run httpclienttest against iis.
> 
> As you have said, IIS does intercept the header.  I can either add the 
> user/password hardcoded in the httpclienttest to IIS and run the test again, 
> or I can figure out how to make IIS not to intercept the basic 
> authentication.  The later one is the perfer way. but still no clue yet.
> 
> -Dan
> 
> 
> >From: Roland Weber <[EMAIL PROTECTED]>
> >Reply-To: "Commons HttpClient Project" 
> ><[EMAIL PROTECTED]>
> >To: "Commons HttpClient Project" 
> ><[EMAIL PROTECTED]>
> >Subject: Re: TestWebappBasicAuth fails on IIS
> >Date: Thu, 18 Mar 2004 07:31:27 +0100
> >
> >Hello Dan,
> >
> >IIS will try to verify the authentication headers it gets.
> >If your users and passwords are known to Windows,
> >the requests should pass through just fine.
> >
> >What exactly is an "httpclient servlet"?
> >
> >Have you checked which plugins are active in IIS?
> >Maybe you can move the plugin of your servlet
> >engine in front of the IIS authentication, so the
> >servlet gets the request before IIS authenticates it.
> >
> >I'm just guessing here, I only conducted a few
> >authentication experiments with IIS last year.
> >
> >cheers,
> >   Roland
> >
> >
> >
> >
> >
> >
> >"Dan Tran" <[EMAIL PROTECTED]>
> >17.03.2004 17:28
> >Please respond to "Commons HttpClient Project"
> >
> > To: "Commons HttpClient Project"
> ><[EMAIL PROTECTED]>
> > cc:
> > Subject:TestWebappBasicAuth fails on IIS
> >
> >
> >Hello, I think IIS rejects any Basic Authentication request.  Is there a
> >way
> >to configure IIS to allow these
> >request to passthru to httpclient servlets?
> >
> >Any suggestions?
> >
> >-Dan
> >
> >-
> >To unsubscribe, e-mail:
> >[EMAIL PROTECTED]
> >For additional commands, e-mail:
> >[EMAIL PROTECTED]
> >
> >
> 
> _
> Find a broadband plan that fits. Great local deals on high-speed Internet 
> access. http://click.atdmt.com/AVE/go/onm00200360ave/direct/01/
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: TestWebappBasicAuth fails on IIS

2004-03-18 Thread Dan Tran
Roland, I have IIS connecting to tomcat containing httpclienttest.war via 
iis_redirector, and run httpclienttest against iis.

As you have said, IIS does intercept the header.  I can either add the 
user/password hardcoded in the httpclienttest to IIS and run the test again, 
or I can figure out how to make IIS not to intercept the basic 
authentication.  The later one is the perfer way. but still no clue yet.

-Dan


From: Roland Weber <[EMAIL PROTECTED]>
Reply-To: "Commons HttpClient Project" 
<[EMAIL PROTECTED]>
To: "Commons HttpClient Project" 
<[EMAIL PROTECTED]>
Subject: Re: TestWebappBasicAuth fails on IIS
Date: Thu, 18 Mar 2004 07:31:27 +0100

Hello Dan,

IIS will try to verify the authentication headers it gets.
If your users and passwords are known to Windows,
the requests should pass through just fine.
What exactly is an "httpclient servlet"?

Have you checked which plugins are active in IIS?
Maybe you can move the plugin of your servlet
engine in front of the IIS authentication, so the
servlet gets the request before IIS authenticates it.
I'm just guessing here, I only conducted a few
authentication experiments with IIS last year.
cheers,
  Roland




"Dan Tran" <[EMAIL PROTECTED]>
17.03.2004 17:28
Please respond to "Commons HttpClient Project"
To: "Commons HttpClient Project"
<[EMAIL PROTECTED]>
cc:
Subject:TestWebappBasicAuth fails on IIS
Hello, I think IIS rejects any Basic Authentication request.  Is there a
way
to configure IIS to allow these
request to passthru to httpclient servlets?
Any suggestions?

-Dan

-
To unsubscribe, e-mail:
[EMAIL PROTECTED]
For additional commands, e-mail:
[EMAIL PROTECTED]

_
Find a broadband plan that fits. Great local deals on high-speed Internet 
access. http://click.atdmt.com/AVE/go/onm00200360ave/direct/01/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: TestWebappBasicAuth fails on IIS

2004-03-18 Thread Roland Weber
Hello Martin,

have you read the authentication guide on the web site?
http://jakarta.apache.org/commons/httpclient/authentication.html

cheers,
  Roland





"martin hilpert" <[EMAIL PROTECTED]>
18.03.2004 13:14
Please respond to "Commons HttpClient Project"
 
To: "Commons HttpClient Project" 
<[EMAIL PROTECTED]>
cc: 
    Subject:    Re: TestWebappBasicAuth fails on IIS


hi, 
today i want to know how authentif to the server, with username:password

greetz martin


-
To unsubscribe, e-mail: 
[EMAIL PROTECTED]
For additional commands, e-mail: 
[EMAIL PROTECTED]




Re: TestWebappBasicAuth fails on IIS

2004-03-18 Thread martin hilpert
hi, 
today i want to know how authentif to the server, with username:password

greetz martin


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: TestWebappBasicAuth fails on IIS

2004-03-17 Thread Roland Weber
Hello Dan,

IIS will try to verify the authentication headers it gets.
If your users and passwords are known to Windows,
the requests should pass through just fine.

What exactly is an "httpclient servlet"?

Have you checked which plugins are active in IIS?
Maybe you can move the plugin of your servlet
engine in front of the IIS authentication, so the
servlet gets the request before IIS authenticates it.

I'm just guessing here, I only conducted a few
authentication experiments with IIS last year.

cheers,
  Roland






"Dan Tran" <[EMAIL PROTECTED]>
17.03.2004 17:28
Please respond to "Commons HttpClient Project"
 
To: "Commons HttpClient Project" 
<[EMAIL PROTECTED]>
    cc: 
Subject:TestWebappBasicAuth fails on IIS


Hello, I think IIS rejects any Basic Authentication request.  Is there a 
way
to configure IIS to allow these
request to passthru to httpclient servlets?

Any suggestions?

-Dan

-
To unsubscribe, e-mail: 
[EMAIL PROTECTED]
For additional commands, e-mail: 
[EMAIL PROTECTED]




TestWebappBasicAuth fails on IIS

2004-03-17 Thread Dan Tran
Hello, I think IIS rejects any Basic Authentication request.  Is there a way
to configure IIS to allow these
request to passthru to httpclient servlets?

Any suggestions?

-Dan

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]