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 ******************

XUserID = Request.ServerVariables("AUTH_USER")
L=Len(XUserID)
if L > 0 then
Pos = InStr( XUserID,"\")
if Pos > 0 then
ID = Right(XUserID,(L-Pos) )
strUserID = ID
end if
else
strUserID = XUserID
end if

isUserID = strUserID


Melinda,

*where* is that thing working ?
It doesn't look like any Java code to me ..

It's VB (I recognize it).

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to