RE: JSP source being shown (not being executed)

2004-06-08 Thread Annie Guo
I have seen that before with JDK not in the system path. -Original Message- From: Michael Mehrle [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 08, 2004 2:44 PM To: Tomcat Users List Subject: Re: JSP source being shown (not being executed) Actually, I'm not running Apache right now. This

RE: Programmatic Authentication?

2004-06-04 Thread Annie Guo
Thank you very much. -Original Message- From: Victor R. Cardona [mailto:[EMAIL PROTECTED] Sent: Thursday, June 03, 2004 11:05 PM To: Tomcat Users List Subject: Re: Programmatic Authentication? -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Annie Guo wrote: | Mind sharing your code

RE: Programmatic Authentication?

2004-06-03 Thread Annie Guo
To: Tomcat Users List Subject: Re: Programmatic Authentication? I've done something similar and written a little tutorial about it at: http://www.kopz.org/public/documents/tomcat/jaasintomcat.html Maybe it helps. Michiel Annie Guo wrote: >Victor: > >I would greatly appreci

RE: Programmatic Authentication?

2004-06-03 Thread Annie Guo
Victor: I would greatly appreciate it. -Original Message- From: Victor R. Cardona [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 11:56 PM To: Tomcat Users List Subject: Re: Programmatic Authentication? -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Annie Guo wrote: | Mind

RE: Programmatic Authentication?

2004-06-03 Thread Annie Guo
I would greatly appreciate it. -Original Message- From: Victor R. Cardona [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 11:56 PM To: Tomcat Users List Subject: Re: Programmatic Authentication? -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Annie Guo wrote: | Mind sharing your

RE: Page output is disappearing

2004-06-03 Thread Annie Guo
If you have a NullPointerException somewhere in your tag or jsp pages, this could happen. It happened to me a couple of times. Look for any variable that might be null. -Original Message- From: Keith Hankin [mailto:[EMAIL PROTECTED] Sent: Thursday, June 03, 2004 1:58 AM To: Tomcat Users

RE: Form Authetication

2004-06-02 Thread Annie Guo
Users List Subject: Re: Form Authetication You shouldn't comment the line out. If you want the the error page to be index.html versus loginError.html, then change that line so it becomes index.html /index.html Annie Guo wrote: >Tried to comment out the suspected line >/lo

RE: Form Authetication

2004-06-02 Thread Annie Guo
". -Original Message- From: Vy Ho [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 11:39 AM To: Tomcat Users List Subject: Re: Form Authetication This line seems to be the suspect: /loginError.html Annie Guo wrote: >I am trying to hook up JaasRealm. When I e

RE: Programmatic Authentication?

2004-06-02 Thread Annie Guo
Mind sharing your code? -Original Message- From: Victor R. Cardona [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 01, 2004 9:44 PM To: Tomcat Users List Subject: Re: Programmatic Authentication? -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Carl Howells wrote: | Is it possible to set the

RE: Form Authetication

2004-06-02 Thread Annie Guo
I am trying to hook up JaasRealm. When I enter username and password, my LoginModule authenticates it ok from my debug statements. But every time, my page is forwarded to loginError.html instead of index.html that I want. Below is what I have put in web.xml and server.xml. Would anyone please he

Form Authetication

2004-06-02 Thread Annie Guo
I am trying to hook up JaasRealm. When I enter username and password, my LoginModule authenticates it ok from my debug statements. But every time, my page is forwarded to loginError.html instead of index.html that I want. Below is what I have put in web.xml. Would anyone please help let me know