RE: Tomcat and Apache Axis Security

2004-08-10 Thread Srofe, Douglas (c)
for your help. -Original Message- From: Isen,Ciji [mailto:[EMAIL PROTECTED] Sent: Monday, August 09, 2004 5:00 PM To: Tomcat Users List Subject: Re: Tomcat and Apache Axis Security Have you tried access it from the Principal. GenericPrincipal p = (GenericPrincipal

Tomcat and Apache Axis Security

2004-08-09 Thread Srofe, Douglas (c)
We use single sign for our Tomcat applications. We have another Tomcat that hosts various web services. I would like to be able to send the logged on users name and password as credentials to the web service and have Tomcat authenticate it. I have tested this part with a hardcoded user name and

Re: Tomcat and Apache Axis Security

2004-08-09 Thread Isen,Ciji
Have you tried access it from the Principal. GenericPrincipal p = (GenericPrincipal)request.getUserPrincipal(); String uid = p.getName(); String passwd = p.getPassword(); Srofe, Douglas (c) wrote: We use single sign for our Tomcat applications. We have another Tomcat that hosts various web