RE: Help/Examples setting up security settings2

2005-06-15 Thread Frank Zammetti
Although I don't think this is the source of your problem, it strikes me
as odd to be protecting the root of your webapp when this is where the
unprotected page are as well (i.e., login.jsp, login_error.html)  I
would suggest leaving those two in the root of the webapp, and move
environment.jsp and error.jsp to a subdirectory, maybe /Simple_JSP/content
or something, then of course update the security constraint to constrain
that new directory.

Actually, one other thing... the references to the login form and the
login error page in the login-config element I believe are relative to
the webapp root, so drop the Simple_JSP from the beginning of them so they
are /login.jsp and /login_error.jsp respectively.  Again, not sure this is
the problem, but it could be.

Some other things, and this is where hopefully some Tomcat folks more
knowledgable than me can help... There seems to be a realm-name element
for login-config as well, but I have never used it... does it apply
here?  I think it may be for basic auth, but I am unsure.

Also, there are perhaps some other things you need to do to tell Tomcat to
use security... anyone else, does Joseph need to do anything to set up the
UserDatabase resource, or is that set up by default?  Also, does he need
to create a context for his app and perhaps set something to tell Tomcat
to use security?  This is stuff I am not familiar with, so hopefully
someone else reading this can help.

-- 
Frank W. Zammetti
Founder and Chief Software Architect
Omnytex Technologies
http://www.omnytex.com

On Wed, June 15, 2005 9:31 am, Gagnon, Joseph M  \(US SSA\) said:
 Ah-ha! Everything I had read so far led me to think I needed to put
 everything under ROOT. I'm glad you guys pointed that out. It makes
 sense.

 In the meantime, to make things simpler, I set up another webapp
 without any of the SPID stuff I was talking about before. It's very
 simple and contains nothing more than a login page (login.jsp) and login
 error page (login_error.html), the environment page (environment.jsp)
 I mentioned before and an error page (error.jsp), specified in the
 errorPage attribute of the page directive of the JSP files.

 The new app. sits in [tomcat]\webapps\Simple_JSP (not under ROOT any
 more) and the web.xml file in the WEB-INF subdirectory has been set up
 to use the correct path. I also included the security-role element Frank
 mentioned below.

 The web-app portion of web.xml looks like this:

 web-app xmlns=http://java.sun.com/xml/ns/j2ee;
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
 xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee
 http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd;

 display-nameSimple JSP/display-name
 descriptionSimple JSP Test/description

 login-config
 auth-methodFORM/auth-method
 form-login-config

 form-login-page/Simple_JSP/login.jsp/form-login-page

 form-error-page/Simple_JSP/login_error.html/form-error-page
 /form-login-config
 /login-config

 security-role
 descriptionSecurity Role/description
 role-namesimple_jsp/role-name
 /security-role

 security-constraint
 web-resource-collection
 web-resource-nameSimple JSP
 Test/web-resource-name
 url-pattern/Simple_JSP/*/url-pattern
 http-methodGET/http-method
 http-methodPOST/http-method
 /web-resource-collection
 auth-constraint
 role-namesimple_jsp/role-name
 /auth-constraint
 /security-constraint

 /web-app

 Of course, I set up the simple_jsp role in the tomcat-users.xml file and
 added that role to my user entry.

 Now that this is all said and done, I'm still getting behavior that I'm
 not expecting. If I load my environment file into the browser
 (http://localhost/Simple_JSP/environment.jsp), it comes up as though
 there were no security/authentication mechanism to put up a roadblock.
 The login page is never presented.

 I was expecting that if I were to request any page from the Simple_JSP
 area, that before anything is displayed, I would be prompted to provide
 and user name and password. Isn't that what's supposed to happen?

 Thanks,
 Joe



 -Original Message-
 From: Frank W. Zammetti [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, June 14, 2005 6:37 PM
 To: Tomcat Users List
 Subject: Re: Help/Examples setting up security settings

 As Mark indicated in another post, the first problem you need to resolve

 is how you have installed your webapp.  ROOT is itself a webapp, and
 although it might seem right that you want to put your webapp under it,
 that isn't the case.  Move SPID_JSP to /webapps and you should be all
 set.

 One other thing I see is you are missing security role definitions in
 your web.xml.  You'll want to add something like this:


RE: Help/Examples setting up security settings2

2005-06-15 Thread Gagnon, Joseph M \(US SSA\)
See my comments/questions below.

-Original Message-
From: Frank Zammetti [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 15, 2005 11:37 AM
To: tomcat-user@jakarta.apache.org
Subject: RE: Help/Examples setting up security settings2

Although I don't think this is the source of your problem, it strikes me
as odd to be protecting the root of your webapp when this is where the
unprotected page are as well (i.e., login.jsp, login_error.html)
[Gagnon, Joseph M] What can I say, I don't know much about what I'm
doing. That is a good idea. Didn't think it would matter much for such a
simple test. I would suggest leaving those two in the root of the
webapp, and move environment.jsp and error.jsp to a subdirectory, maybe
/Simple_JSP/content or something, then of course update the security
constraint to constrain that new directory.
[Gagnon, Joseph M] My first thought would be that this wouldn't have
anything to do with the problem, but hey, I'm certainly not the one to
know.

Actually, one other thing... the references to the login form and the
login error page in the login-config element I believe are relative to
the webapp root, so drop the Simple_JSP from the beginning of them so
they
are /login.jsp and /login_error.jsp respectively.  [Gagnon, Joseph M]
How important is the leading slash? Again, not sure this is the problem,
but it could be.
[Gagnon, Joseph M] Hmm. That's an interesting point. I wasn't sure how
the path rules worked here. (i.e. whether you need to specify from the
server root (e.g. webapps) or if it was more from the specific
webapp's root. From what you're saying, it's the latter.

Some other things, and this is where hopefully some Tomcat folks more
knowledgable than me can help... There seems to be a realm-name
element
for login-config as well, but I have never used it... does it apply
here?  I think it may be for basic auth, but I am unsure.

Also, there are perhaps some other things you need to do to tell Tomcat
to
use security... anyone else, does Joseph need to do anything to set up
the
UserDatabase resource[Gagnon, Joseph M] I have no idea what this is., or
is that set up by default?  Also, does he need to create a context for
his app and perhaps set something to tell Tomcat to use security?  This
is stuff I am not familiar with, so hopefully someone else reading this
can help.

-- 
Frank W. Zammetti
Founder and Chief Software Architect
Omnytex Technologies
http://www.omnytex.com

On Wed, June 15, 2005 9:31 am, Gagnon, Joseph M  \(US SSA\) said:
 Ah-ha! Everything I had read so far led me to think I needed to put
 everything under ROOT. I'm glad you guys pointed that out. It makes
 sense.

 In the meantime, to make things simpler, I set up another webapp
 without any of the SPID stuff I was talking about before. It's very
 simple and contains nothing more than a login page (login.jsp) and
login
 error page (login_error.html), the environment page
(environment.jsp)
 I mentioned before and an error page (error.jsp), specified in the
 errorPage attribute of the page directive of the JSP files.

 The new app. sits in [tomcat]\webapps\Simple_JSP (not under ROOT any
 more) and the web.xml file in the WEB-INF subdirectory has been set up
 to use the correct path. I also included the security-role element
Frank
 mentioned below.

 The web-app portion of web.xml looks like this:

 web-app xmlns=http://java.sun.com/xml/ns/j2ee;
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
 xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee
 http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd;

 display-nameSimple JSP/display-name
 descriptionSimple JSP Test/description

 login-config
 auth-methodFORM/auth-method
 form-login-config

 form-login-page/Simple_JSP/login.jsp/form-login-page

 form-error-page/Simple_JSP/login_error.html/form-error-page
 /form-login-config
 /login-config

 security-role
 descriptionSecurity Role/description
 role-namesimple_jsp/role-name
 /security-role

 security-constraint
 web-resource-collection
 web-resource-nameSimple JSP
 Test/web-resource-name
 url-pattern/Simple_JSP/*/url-pattern
 http-methodGET/http-method
 http-methodPOST/http-method
 /web-resource-collection
 auth-constraint
 role-namesimple_jsp/role-name
 /auth-constraint
 /security-constraint

 /web-app

 Of course, I set up the simple_jsp role in the tomcat-users.xml file
and
 added that role to my user entry.

 Now that this is all said and done, I'm still getting behavior that
I'm
 not expecting. If I load my environment file into the browser
 (http://localhost/Simple_JSP/environment.jsp), it comes up as though
 there were no security/authentication mechanism to put up a roadblock

RE: Help/Examples setting up security settings2

2005-06-15 Thread Gagnon, Joseph M \(US SSA\)
Let's try that again so that you can see it.
See my comments/questions below.

-Original Message-
From: Frank Zammetti [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 15, 2005 11:37 AM
To: tomcat-user@jakarta.apache.org
Subject: RE: Help/Examples setting up security settings2

Although I don't think this is the source of your problem, it strikes me
as odd to be protecting the root of your webapp when this is where the
unprotected page are as well (i.e., login.jsp, login_error.html)

[Gagnon, Joseph M] What can I say, I don't know much about what I'm
doing. That is a good idea. Didn't think it would matter much for such a
simple test.

I would suggest leaving those two in the root of the webapp, and move
environment.jsp and error.jsp to a subdirectory, maybe
/Simple_JSP/content
or something, then of course update the security constraint to constrain
that new directory.

[Gagnon, Joseph M] My first thought would be that this wouldn't have
anything to do with the problem, but hey, I'm certainly not the one to
know.

Actually, one other thing... the references to the login form and the
login error page in the login-config element I believe are relative to
the webapp root, so drop the Simple_JSP from the beginning of them so
they
are /login.jsp and /login_error.jsp respectively.  

[Gagnon, Joseph M] How important is the leading slash?

Again, not sure this is the problem, but it could be.

[Gagnon, Joseph M] Hmm. That's an interesting point. I wasn't sure how
the path rules worked here. (i.e. whether you need to specify from the
server root (e.g. webapps) or if it was more from the specific
webapp's root. From what you're saying, it's the latter.

Some other things, and this is where hopefully some Tomcat folks more
knowledgable than me can help... There seems to be a realm-name
element
for login-config as well, but I have never used it... does it apply
here?  I think it may be for basic auth, but I am unsure.

Also, there are perhaps some other things you need to do to tell Tomcat
to
use security... anyone else, does Joseph need to do anything to set up
the
UserDatabase resource

[Gagnon, Joseph M] I have no idea what this is.

, or is that set up by default?  Also, does he need
to create a context for his app and perhaps set something to tell Tomcat
to use security?  This is stuff I am not familiar with, so hopefully
someone else reading this can help.

-- 
Frank W. Zammetti
Founder and Chief Software Architect
Omnytex Technologies
http://www.omnytex.com

On Wed, June 15, 2005 9:31 am, Gagnon, Joseph M  \(US SSA\) said:
 Ah-ha! Everything I had read so far led me to think I needed to put
 everything under ROOT. I'm glad you guys pointed that out. It makes
 sense.

 In the meantime, to make things simpler, I set up another webapp
 without any of the SPID stuff I was talking about before. It's very
 simple and contains nothing more than a login page (login.jsp) and
login
 error page (login_error.html), the environment page
(environment.jsp)
 I mentioned before and an error page (error.jsp), specified in the
 errorPage attribute of the page directive of the JSP files.

 The new app. sits in [tomcat]\webapps\Simple_JSP (not under ROOT any
 more) and the web.xml file in the WEB-INF subdirectory has been set up
 to use the correct path. I also included the security-role element
Frank
 mentioned below.

 The web-app portion of web.xml looks like this:

 web-app xmlns=http://java.sun.com/xml/ns/j2ee;
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
 xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee
 http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd;

 display-nameSimple JSP/display-name
 descriptionSimple JSP Test/description

 login-config
 auth-methodFORM/auth-method
 form-login-config

 form-login-page/Simple_JSP/login.jsp/form-login-page

 form-error-page/Simple_JSP/login_error.html/form-error-page
 /form-login-config
 /login-config

 security-role
 descriptionSecurity Role/description
 role-namesimple_jsp/role-name
 /security-role

 security-constraint
 web-resource-collection
 web-resource-nameSimple JSP
 Test/web-resource-name
 url-pattern/Simple_JSP/*/url-pattern
 http-methodGET/http-method
 http-methodPOST/http-method
 /web-resource-collection
 auth-constraint
 role-namesimple_jsp/role-name
 /auth-constraint
 /security-constraint

 /web-app

 Of course, I set up the simple_jsp role in the tomcat-users.xml file
and
 added that role to my user entry.

 Now that this is all said and done, I'm still getting behavior that
I'm
 not expecting. If I load my environment file into the browser
 (http://localhost/Simple_JSP/environment.jsp), it comes up as though
 there were

Re: Help/Examples setting up security settings2

2005-06-15 Thread Frank Zammetti
 Although I don't think this is the source of your problem, it strikes me
 as odd to be protecting the root of your webapp when this is where the
 unprotected page are as well (i.e., login.jsp, login_error.html)
 [Gagnon, Joseph M] What can I say, I don't know much about what I'm
 doing. That is a good idea. Didn't think it would matter much for such a
 simple test. 

Not a problem, we all go through a learning phase :)  I'm not sure it
would matter either frankly, but it seems like it might... if you
request environment.jsp, the security intercept happens and tries to
redirect to login.jsp, but that itself is protected, so ANOTHER
intercept happens, etc.  I'm not sure that will happen mind you, but I
could imagine it happening, and your caught in a loop.  Even if it is
smart enough to avoid it there, what happens if you enter your
password wrong and it tries to go to login_error.jsp?  Same thing
maybe, since it's protected too.

Since I don't know for sure what will happen, better to avoid the
unknown I figure :)

 Actually, one other thing... the references to the login form and the
 login error page in the login-config element I believe are relative to
 the webapp root, so drop the Simple_JSP from the beginning of them so
 they
 are /login.jsp and /login_error.jsp respectively.  [Gagnon, Joseph M]
 How important is the leading slash? 

IIRC, it is required.  I don't want to say what the difference is with
or without it because I'm not 100% sure it's right, but the bottom
line is I am reasonably sure uit has to be there.

Again, not sure this is the problem,
 but it could be.
 [Gagnon, Joseph M] Hmm. That's an interesting point. I wasn't sure how
 the path rules worked here. (i.e. whether you need to specify from the
 server root (e.g. webapps) or if it was more from the specific
 webapp's root. From what you're saying, it's the latter.

Right, it's all context-relative, and the context is whatever webapp
you are in, NOT the server root (in essence you can think there is no
server root really, that will simplify it a bit... pretend whatever
webapp your working on is all there is and you should be OK).

 Also, there are perhaps some other things you need to do to tell Tomcat
 to
 use security... anyone else, does Joseph need to do anything to set up
 the
 UserDatabase resource[Gagnon, Joseph M] I have no idea what this is., or
 is that set up by default?  

In server.xml, there is a GlobalNamingResources element... in here
should be a definition for UserDatabase.  I *think* it is there by
default, but I was hoping someone else could confirm.

There is also an engine element, and within this can be a context
element, one for each webapp.  It is not strictly required, but it
allows you to set various things.  It looks like the engine has to
be made aware of the UserDatabase, via a realm element.  This is
Tomcat-specific stuff, and while I've hacked my way through it before,
there must be someone reading this that can better guide you with this
particular part of the equation.  It may be set up by default, it may
not, I don't know.

Frank

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Help/Examples setting up security settings2

2005-06-15 Thread Øyvind Johansen
The /Simple_JSP part of the URL should be left out. Always start typing from
the web-app folder. (because, who knows when you want to rename the webapp?)

If you remove the /Simple_JSP part of the URLs in the web.xml, I think it
will work, additionally, you should try not setting restricted access on you
login/error pages...

Øyvind

-Opprinnelig melding-
Fra: Frank Zammetti [mailto:[EMAIL PROTECTED] 
Sendt: 15. juni 2005 17:37
Til: tomcat-user@jakarta.apache.org
Emne: RE: Help/Examples setting up security settings2

Although I don't think this is the source of your problem, it strikes me
as odd to be protecting the root of your webapp when this is where the
unprotected page are as well (i.e., login.jsp, login_error.html)  I
would suggest leaving those two in the root of the webapp, and move
environment.jsp and error.jsp to a subdirectory, maybe /Simple_JSP/content
or something, then of course update the security constraint to constrain
that new directory.

Actually, one other thing... the references to the login form and the
login error page in the login-config element I believe are relative to
the webapp root, so drop the Simple_JSP from the beginning of them so they
are /login.jsp and /login_error.jsp respectively.  Again, not sure this is
the problem, but it could be.

Some other things, and this is where hopefully some Tomcat folks more
knowledgable than me can help... There seems to be a realm-name element
for login-config as well, but I have never used it... does it apply
here?  I think it may be for basic auth, but I am unsure.

Also, there are perhaps some other things you need to do to tell Tomcat to
use security... anyone else, does Joseph need to do anything to set up the
UserDatabase resource, or is that set up by default?  Also, does he need
to create a context for his app and perhaps set something to tell Tomcat
to use security?  This is stuff I am not familiar with, so hopefully
someone else reading this can help.

-- 
Frank W. Zammetti
Founder and Chief Software Architect
Omnytex Technologies
http://www.omnytex.com

On Wed, June 15, 2005 9:31 am, Gagnon, Joseph M  \(US SSA\) said:
 Ah-ha! Everything I had read so far led me to think I needed to put
 everything under ROOT. I'm glad you guys pointed that out. It makes
 sense.

 In the meantime, to make things simpler, I set up another webapp
 without any of the SPID stuff I was talking about before. It's very
 simple and contains nothing more than a login page (login.jsp) and login
 error page (login_error.html), the environment page (environment.jsp)
 I mentioned before and an error page (error.jsp), specified in the
 errorPage attribute of the page directive of the JSP files.

 The new app. sits in [tomcat]\webapps\Simple_JSP (not under ROOT any
 more) and the web.xml file in the WEB-INF subdirectory has been set up
 to use the correct path. I also included the security-role element Frank
 mentioned below.

 The web-app portion of web.xml looks like this:

 web-app xmlns=http://java.sun.com/xml/ns/j2ee;
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
 xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee
 http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd;

 display-nameSimple JSP/display-name
 descriptionSimple JSP Test/description

 login-config
 auth-methodFORM/auth-method
 form-login-config

 form-login-page/Simple_JSP/login.jsp/form-login-page

 form-error-page/Simple_JSP/login_error.html/form-error-page
 /form-login-config
 /login-config

 security-role
 descriptionSecurity Role/description
 role-namesimple_jsp/role-name
 /security-role

 security-constraint
 web-resource-collection
 web-resource-nameSimple JSP
 Test/web-resource-name
 url-pattern/Simple_JSP/*/url-pattern
 http-methodGET/http-method
 http-methodPOST/http-method
 /web-resource-collection
 auth-constraint
 role-namesimple_jsp/role-name
 /auth-constraint
 /security-constraint

 /web-app

 Of course, I set up the simple_jsp role in the tomcat-users.xml file and
 added that role to my user entry.

 Now that this is all said and done, I'm still getting behavior that I'm
 not expecting. If I load my environment file into the browser
 (http://localhost/Simple_JSP/environment.jsp), it comes up as though
 there were no security/authentication mechanism to put up a roadblock.
 The login page is never presented.

 I was expecting that if I were to request any page from the Simple_JSP
 area, that before anything is displayed, I would be prompted to provide
 and user name and password. Isn't that what's supposed to happen?

 Thanks,
 Joe



 -Original Message-
 From: Frank W. Zammetti [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, June 14

RE: Help/Examples setting up security settings2

2005-06-15 Thread Øyvind Johansen
The /Simple_JSP part of the URL should be left out. Always start typing from
the web-app folder. (because, who knows when you want to rename the webapp?)

If you remove the /Simple_JSP part of the URLs in the web.xml, I think it
will work, additionally, you should try not setting restricted access on you
login/error pages...

Øyvind

-Opprinnelig melding-
Fra: Frank Zammetti [mailto:[EMAIL PROTECTED] 
Sendt: 15. juni 2005 17:37
Til: tomcat-user@jakarta.apache.org
Emne: RE: Help/Examples setting up security settings2

Although I don't think this is the source of your problem, it strikes me
as odd to be protecting the root of your webapp when this is where the
unprotected page are as well (i.e., login.jsp, login_error.html)  I
would suggest leaving those two in the root of the webapp, and move
environment.jsp and error.jsp to a subdirectory, maybe /Simple_JSP/content
or something, then of course update the security constraint to constrain
that new directory.

Actually, one other thing... the references to the login form and the
login error page in the login-config element I believe are relative to
the webapp root, so drop the Simple_JSP from the beginning of them so they
are /login.jsp and /login_error.jsp respectively.  Again, not sure this is
the problem, but it could be.

Some other things, and this is where hopefully some Tomcat folks more
knowledgable than me can help... There seems to be a realm-name element
for login-config as well, but I have never used it... does it apply
here?  I think it may be for basic auth, but I am unsure.

Also, there are perhaps some other things you need to do to tell Tomcat to
use security... anyone else, does Joseph need to do anything to set up the
UserDatabase resource, or is that set up by default?  Also, does he need
to create a context for his app and perhaps set something to tell Tomcat
to use security?  This is stuff I am not familiar with, so hopefully
someone else reading this can help.

-- 
Frank W. Zammetti
Founder and Chief Software Architect
Omnytex Technologies
http://www.omnytex.com

On Wed, June 15, 2005 9:31 am, Gagnon, Joseph M  \(US SSA\) said:
 Ah-ha! Everything I had read so far led me to think I needed to put
 everything under ROOT. I'm glad you guys pointed that out. It makes
 sense.

 In the meantime, to make things simpler, I set up another webapp
 without any of the SPID stuff I was talking about before. It's very
 simple and contains nothing more than a login page (login.jsp) and login
 error page (login_error.html), the environment page (environment.jsp)
 I mentioned before and an error page (error.jsp), specified in the
 errorPage attribute of the page directive of the JSP files.

 The new app. sits in [tomcat]\webapps\Simple_JSP (not under ROOT any
 more) and the web.xml file in the WEB-INF subdirectory has been set up
 to use the correct path. I also included the security-role element Frank
 mentioned below.

 The web-app portion of web.xml looks like this:

 web-app xmlns=http://java.sun.com/xml/ns/j2ee;
 xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
 xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee
 http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd;

 display-nameSimple JSP/display-name
 descriptionSimple JSP Test/description

 login-config
 auth-methodFORM/auth-method
 form-login-config

 form-login-page/Simple_JSP/login.jsp/form-login-page

 form-error-page/Simple_JSP/login_error.html/form-error-page
 /form-login-config
 /login-config

 security-role
 descriptionSecurity Role/description
 role-namesimple_jsp/role-name
 /security-role

 security-constraint
 web-resource-collection
 web-resource-nameSimple JSP
 Test/web-resource-name
 url-pattern/Simple_JSP/*/url-pattern
 http-methodGET/http-method
 http-methodPOST/http-method
 /web-resource-collection
 auth-constraint
 role-namesimple_jsp/role-name
 /auth-constraint
 /security-constraint

 /web-app

 Of course, I set up the simple_jsp role in the tomcat-users.xml file and
 added that role to my user entry.

 Now that this is all said and done, I'm still getting behavior that I'm
 not expecting. If I load my environment file into the browser
 (http://localhost/Simple_JSP/environment.jsp), it comes up as though
 there were no security/authentication mechanism to put up a roadblock.
 The login page is never presented.

 I was expecting that if I were to request any page from the Simple_JSP
 area, that before anything is displayed, I would be prompted to provide
 and user name and password. Isn't that what's supposed to happen?

 Thanks,
 Joe



 -Original Message-
 From: Frank W. Zammetti [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, June 14