Re: Why are administrator username and password required at runtime to connect to DB?

2002-03-28 Thread java_odbms
u specify the admin username and password in the data-source.xml. - Original Message - From: Daniel Huang To: Orion-Interest Sent: Thursday, March 28, 2002 8:12 AM Subject: Why are administrator username and password required at runtime to connect to DB

Re: Login username and password

2002-03-10 Thread prasanth sb
Hi Scott, Thanks a lot for the information. thnks, Prasanth From: Scott Farquhar [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Re: Login username and password Date: Mon, 04 Mar 2002 10:04:25 +1100 Prasanth, This article may help you: http

RE: Login username and password:-LDAP DOUBT.

2002-03-10 Thread prasanth sb
[EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: RE: Login username and password Date: Sun, 3 Mar 2002 15:27:17 -0800 Dear Prasanth, I have put together a simple set of lessons for user security...not to be confused with personalization. http

Login username and password

2002-03-03 Thread prasanth sb
Dear friends, I have seen in many application servers a login username and password popping up for the entry allowing to the site Will some one help in getting the informations regarding this with orion application serverWish a good day thanks, Prasanth

RE: Login username and password

2002-03-03 Thread The elephantwalker
username and password Dear friends, I have seen in many application servers a login username and password popping up for the entry allowing to the site. Will some one help in getting the informations regarding this with orion application server.Wish a good day. thanks, Prasanth

RE: Username and Password

2002-02-07 Thread Christian, Joanne
Hi All, Thanks for your responses. They were very helpful. Joanne

Username and Password

2002-02-06 Thread Christian, Joanne
HI All, I'm new to J2EE and Orion. I have set up form-based authorization using DataSourceUserManager. Super! From my initial jsp and/or servlet (not the login page), I would like to access the username of the person who just logged in. How can I do this? I have tried to get attributes from

RE: Username and Password

2002-02-06 Thread Tom Gallaway
Would you please take me off your email list. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Christian, Joanne Sent: Wednesday, February 06, 2002 9:30 AM To: Orion-Interest Subject: Username and Password HI All, I'm new to J2EE and Orion. I have

RE: Username and Password

2002-02-06 Thread Aaron Tavistock
their password though (and you probably wouldn't want there to be if you were security minded). -Original Message- From: Christian, Joanne [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 9:30 AM To: Orion-Interest Subject: Username and Password HI All, I'm new to J2EE and Orion. I

RE: Username and Password

2002-02-06 Thread Jeff Schnitzer
HttpServletRequest.getUserPrincipal().getName() should do the trick. Jeff Schnitzer [EMAIL PROTECTED] -Original Message- From: Christian, Joanne [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 9:30 AM To: Orion-Interest Subject: Username and Password HI All, I'm

RE: Username and Password

2002-02-06 Thread Marc Rabil
for the password. Marc -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Christian, Joanne Sent: Wednesday, February 06, 2002 12:30 PM To: Orion-Interest Subject: Username and Password HI All, I'm new to J2EE and Orion. I have set up form-based authorization using

RE: Username and Password

2002-02-06 Thread The elephantwalker
...you know how to do this. Lets say the servlet is /login, from within the post (because all processing of form-based stuff is post) processing, you can do this: String username = request.getRemoteUser(); String password = request.getParameter(j_password); And then you