Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread André Warnier
David kerber wrote: On 7/14/2011 10:51 AM, David kerber wrote: On 7/14/2011 10:45 AM, André Warnier wrote: David kerber wrote: ... Tomcat 7 has SPNEGO support, which might enable cross-server SSO, but I'm speculating there. I'll see if that might help; I've never heard of it. That is t

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread David kerber
On 7/14/2011 10:51 AM, David kerber wrote: On 7/14/2011 10:45 AM, André Warnier wrote: David kerber wrote: ... Tomcat 7 has SPNEGO support, which might enable cross-server SSO, but I'm speculating there. I'll see if that might help; I've never heard of it. That is the "the newly-release

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread David kerber
On 7/14/2011 10:45 AM, André Warnier wrote: David kerber wrote: ... Tomcat 7 has SPNEGO support, which might enable cross-server SSO, but I'm speculating there. I'll see if that might help; I've never heard of it. That is the "the newly-released "authenticator Valve" (?) available in Tom

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread David kerber
On 7/14/2011 10:31 AM, André Warnier wrote: David kerber wrote: On 7/14/2011 9:50 AM, André Warnier wrote: David kerber wrote: I have a situation where my users will be logging into their pages on an IIS 5 web server, which authenticates them with their user ID and password as configured in II

RE: Passing user id from web page to tomcat webapp

2011-07-14 Thread Savoy, Melinda
a.com] Sent: Thursday, July 14, 2011 9:01 AM To: Tomcat Users List Subject: Re: Passing user id from web page to tomcat webapp Savoy, Melinda wrote: > David, > > You might try the following, instead of getRemoteUser, as we use this to get > the USERID from IIS. I inherited this code

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 David, On 7/14/2011 10:35 AM, David kerber wrote: > On 7/14/2011 10:20 AM, Pid wrote: >> On 14/07/2011 15:04, David kerber wrote: >>> >>> I'm not "forwarding" at all. The call to tomcat from the IIS >>> page is just the "action" parameter of the for

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread André Warnier
David kerber wrote: ... Tomcat 7 has SPNEGO support, which might enable cross-server SSO, but I'm speculating there. I'll see if that might help; I've never heard of it. That is the "the newly-released "authenticator Valve" (?) available in Tomcat 7 " solution I was talking about. Davi

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread David kerber
On 7/14/2011 10:20 AM, Pid wrote: On 14/07/2011 15:04, David kerber wrote: On 7/14/2011 9:50 AM, André Warnier wrote: David kerber wrote: I have a situation where my users will be logging into their pages on an IIS 5 web server, which authenticates them with their user ID and password as confi

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread André Warnier
David kerber wrote: On 7/14/2011 9:50 AM, André Warnier wrote: David kerber wrote: I have a situation where my users will be logging into their pages on an IIS 5 web server, which authenticates them with their user ID and password as configured in IIS. This works fine. Now I need to add some n

RE: Passing user id from web page to tomcat webapp

2011-07-14 Thread Propes, Barry L
Looks like ASP code. -Original Message- From: André Warnier [mailto:a...@ice-sa.com] Sent: Thursday, July 14, 2011 9:01 AM To: Tomcat Users List Subject: Re: Passing user id from web page to tomcat webapp Savoy, Melinda wrote: > David, > > You might try the following, i

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread Pid
On 14/07/2011 15:04, David kerber wrote: > On 7/14/2011 9:50 AM, André Warnier wrote: >> David kerber wrote: >>> I have a situation where my users will be logging into their pages on >>> an IIS 5 web server, which authenticates them with their user ID and >>> password as configured in IIS. This wor

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread David kerber
On 7/14/2011 10:00 AM, André Warnier wrote: Savoy, Melinda wrote: David, You might try the following, instead of getRemoteUser, as we use this to get the USERID from IIS. I inherited this code so I really can't speak to it a lot but it's working. Regards. ' get user ID from header *

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread David kerber
On 7/14/2011 9:50 AM, André Warnier wrote: David kerber wrote: I have a situation where my users will be logging into their pages on an IIS 5 web server, which authenticates them with their user ID and password as configured in IIS. This works fine. Now I need to add some new functionality to t

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread André Warnier
Savoy, Melinda wrote: David, You might try the following, instead of getRemoteUser, as we use this to get the USERID from IIS. I inherited this code so I really can't speak to it a lot but it's working. Regards. ' get user ID from header ** XUserID = Request.ServerV

Re: Passing user id from web page to tomcat webapp

2011-07-14 Thread André Warnier
David kerber wrote: I have a situation where my users will be logging into their pages on an IIS 5 web server, which authenticates them with their user ID and password as configured in IIS. This works fine. Now I need to add some new functionality to the web site that will be using my tomcat

RE: Passing user id from web page to tomcat webapp

2011-07-14 Thread Savoy, Melinda
David, You might try the following, instead of getRemoteUser, as we use this to get the USERID from IIS. I inherited this code so I really can't speak to it a lot but it's working. Regards. ' get user ID from header ** XUserID = Request.ServerVariables("AUTH_USER")