User authentication on Windows

2002-09-27 Thread ROLDAN, Gabriel raul
Hi, I'm running a jsp/servlet app on windows with IIS + tomcat 4. I need to know if there is any way to obtain the user name from a jsp page with IIS and Windows Integrated Security. On the intranet with asp's, I do a Request.ServerVariables("AUTH_USER") to obtain the user name of the client on

Re: User authentication/session management with JSPs/Resin

2001-07-12 Thread Per-?e Olsson
Hi! I¡äve been looking for the same thing but I couldn¡ät find to much, but JavaWorld has an article on the subject http://www.javaworld.com/javaworld/jw-03-2000/jw-0331-ssj-forms_p.html. The article is quite old by now and it does not cover all the angles of user authentication but it may be a

User authentication/session management with JSPs/Resin

2001-07-11 Thread Abhijit Hiremagalur
Hi All, Has anyone used the Authenticator in Resin 2.0.0? If you have could you please briefly explain to a complete novice at JSP(though I am familiar with java itself), a good approach to user authentication, possibly using this Authenticator interface providen in Resin. Are there any other

Re: User authentication

2000-07-25 Thread Bains Rupali
I am using weblogic5.1 -Original Message- From: Rupali Bains Goswami [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 25, 2000 5:54 PM To: [EMAIL PROTECTED] Subject: User authentication What is the best way to do user authentication. At present I get the username and password and

User authentication

2000-07-25 Thread Rupali Bains Goswami
What is the best way to do user authentication. At present I get the username and password and validate these against the values in the database. Once validated i put the object in session so i can check on each page if the value is available from session else display the login page. Can anyone

Re: NT User Authentication

2000-07-14 Thread Manisha Menon
PM > To: [EMAIL PROTECTED] > Subject: Re: NT User Authentication > > > If you are willing to use Basic Authentication, you > can let IIS do > authentication for you automaticly before processing > the ISAPI connector for > JRun. This is documented in the JRun User Man

Re: NT User Authentication

2000-07-13 Thread Infante, Sergio
Thanks. I'll try it. -Original Message- From: Ananiev, Alexander [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 13, 2000 3:18 PM To: [EMAIL PROTECTED] Subject: Re: NT User Authentication You might want to look at JAAS at http://java.sun.com/products/jaas/, it comes with N

Re: NT User Authentication

2000-07-13 Thread Infante, Sergio
Thanks. That's what I thought. -Original Message- From: Mark Mascolino [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 13, 2000 2:02 PM To: [EMAIL PROTECTED] Subject: Re: NT User Authentication If you are willing to use Basic Authentication, you can let IIS do authentication fo

Re: NT User Authentication

2000-07-13 Thread Ananiev, Alexander
2:02 PM To: [EMAIL PROTECTED] Subject: Re: NT User Authentication If you are willing to use Basic Authentication, you can let IIS do authentication for you automaticly before processing the ISAPI connector for JRun. This is documented in the JRun User Manual (at least it was in version 2.3). I

Re: NT User Authentication

2000-07-13 Thread Mark Mascolino
r Pages specification and reference <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] cc:(bcc: Mark Mascolino-MR/PGI) Subject: Re: [JSP-INTEREST] NT User Authentication I am using JRUN 3.0 on top of an NT server and IIS 4.0 The purpose is to use an HTML form, authenticate the crede

Re: NT User Authentication

2000-07-13 Thread Infante, Sergio
separate database but I don't want to have users remember yet another username and password, hence the NT authentication requirement. Thanks. -Original Message- From: Mark Mascolino Sent: Thursday, July 13, 2000 12:56 PM To: [EMAIL PROTECTED] Subject: Re: NT User Authentication You ne

Re: NT User Authentication

2000-07-13 Thread Mark Mascolino
To: [EMAIL PROTECTED] cc:(bcc: Mark Mascolino-MR/PGI) Subject: [JSP-INTEREST] NT User Authentication Can anybody help me determine what is the best (and easy) way to authenticate a user from a JSP or servlet against an NT d

NT User Authentication

2000-07-13 Thread Infante, Sergio
Can anybody help me determine what is the best (and easy) way to authenticate a user from a JSP or servlet against an NT domain? Thanks, Sergio === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".

Re: User authentication

2000-06-29 Thread Arun M. Thomas
CTED] > Subject: Re: User authentication > > > You can implement the RDBMSRealm and turn on security. Weblogic will > automatically authenticate them or reject them based on the entries in the > table. If they are authenticated, the can access the page. > > > -Or

Re: User authentication

2000-06-29 Thread WHITESIDE, CHIP
> Sent: Thursday, June 29, 2000 11:54 AM > To: [EMAIL PROTECTED] > Subject: User authentication > > > Hello, > > I have java experience but i am new to JSP. I am using > weblogin 5.1 and i > need to authenticate a user and on sucessful login display > another jsp

User authentication

2000-06-29 Thread Rupali Bains Goswami
Hello, I have java experience but i am new to JSP. I am using weblogin 5.1 and i need to authenticate a user and on sucessful login display another jsp page. How can I do this? I know that weblogic creates a connection pool so do i then through my jsp need to connect to the database to get the us

Re: User Authentication

2000-04-20 Thread Duane Fields
I'll add my 2cents with regard to the "use servlets as controllers" and "extend them from a base class that implements access control" method of solving this problem. What I do is allow my base servlet class to accept init properties like "requiresLogin=true" and "loginPage=/login.jsp", allowing m

Re: User Authentication

2000-04-19 Thread Loganathan, Kamalesh
You can create a base action class and implement all security features and let all other action classes extend from it. -Original Message- From: Maillet, David J. [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 18, 2000 4:08 PM To: [EMAIL PROTECTED] Subject: Re: User Authentication In

Re: User Authentication

2000-04-18 Thread Mike McKechnie
> If you are rolling your own login authentication, putting it in the Controller > servlet is pretty easy. Just make sure that you allow the user to execute the > "login" action without being authenticated -- otherwise you're in a "Catch 22" > situation. I do this, but I configure a property for

Re: User Authentication

2000-04-18 Thread Craig R. McClanahan
"Maillet, David J." wrote: > In a Model 2 environment, with a ControllerServlet calling corresponding > Action classes based on the particular request, where should the > authentication functionality go: In the ControllerServlet or in each Action > class? If you are rolling your own login authe

Re: User Authentication

2000-04-18 Thread Maillet, David J.
every Action class. -Original Message- From: Sudhir [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 18, 2000 4:08 PM To: [EMAIL PROTECTED] Subject: Re: User Authentication Here follows one of the Techniques which found in the FAQ. This one looks like a good one. **

Re: User Authentication

2000-04-18 Thread Sudhir
Here follows one of the Techniques which found in the FAQ. This one looks like a good one. ** On every page which must be authenticated, I check for a user ID in the session object - if it doesn't exit, I do a redirect to a login page, passing the url the user was tryin

Re: User Authentication

2000-04-13 Thread Vyacheslav Pedak
- Original Message - From: John Tangney <[EMAIL PROTECTED]> > > See Java Servlet API specification 2.2, you can download it from > > http://java.sun.com/products/servlet/2.2/ > > Thanks, but I *also* scoured the spec. What parts of the spec answer my > question? Section 11.5 Authenticati

Re: User Authentication

2000-04-13 Thread Craig McClanahan
>On 4/12/00 7:13 PM, Vyacheslav Pedak at [EMAIL PROTECTED] wrote: > >>> I'm looking for some code (or guidance) for performing user authentication >>> in JSP. The JSP spec makes some vague comment about being an extension of >>> the servlet spec, but what d

Re: User Authentication

2000-04-13 Thread Mike McKechnie
One method I've used fairly successfully is to let the webserver do the authentication -- this allows your site to be added to other sites and rely on their authentication. All I do is turn on the built-in auth for the web server, and it takes care of sending a WWW-Authenticate header to users wh

Re: User Authentication

2000-04-13 Thread D. J. Hagberg
John Tangney wrote: > On 4/12/00 7:13 PM, Vyacheslav Pedak at [EMAIL PROTECTED] wrote: > > See Java Servlet API specification 2.2, you can download it from > > http://java.sun.com/products/servlet/2.2/ > > Thanks, but I *also* scoured the spec. What parts of the spec answer my > question? I don't

Re: User Authentication

2000-04-13 Thread John Tangney
On 4/12/00 7:13 PM, Vyacheslav Pedak at [EMAIL PROTECTED] wrote: >> I'm looking for some code (or guidance) for performing user authentication >> in JSP. The JSP spec makes some vague comment about being an extension of >> the servlet spec, but what does that mean?

Re: User Authentication

2000-04-12 Thread Prasun Kumar Sarangi
I'm *very* new to this. Please excuse me if this has been covered. I *did* scour the archives... Doubt : I'm looking for some code (or guidance) for performing user authentication in JSP. The JSP spec makes some vague comment about being an extension of the servlet spec, but what

Re: User Authentication

2000-04-12 Thread Vyacheslav Pedak
- Original Message - From: John Tangney <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 13, 2000 6:50 AM Subject: User Authentication > I'm *very* new to this. Please excuse me if this has been covered. I *did* > scour the archives... > >

User Authentication

2000-04-12 Thread John Tangney
I'm *very* new to this. Please excuse me if this has been covered. I *did* scour the archives... I'm looking for some code (or guidance) for performing user authentication in JSP. The JSP spec makes some vague comment about being an extension of the servlet spec, but what does that mea