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
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
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
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
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
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
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
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
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
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
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
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
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".
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
> 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
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
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
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
> 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
"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
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.
**
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
- 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
>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
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
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
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?
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
- 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...
>
>
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
30 matches
Mail list logo