Re: instructions for setting up jaas over db in tomcat

2005-08-29 Thread Robert Taylor
I used the following link: http://jakarta.apache.org/tomcat/tomcat-5.5-doc/realm-howto.html#JAASRealm It tooks some research, but I finally got it to work. /robert Ittay Dror wrote: Hi, I haven't found anywhere a step-by-step instructions or reference code on how to set up jaas. Please

Re: instructions for setting up jaas over db in tomcat

2005-08-29 Thread Robert Taylor
Have you read anything here? http://java.sun.com/j2se/1.4.2/docs/guide/security/jaas/tutorials/GeneralAcnOnly.html /robert Ittay Dror wrote: Robert Taylor wrote: I used the following link: http://jakarta.apache.org/tomcat/tomcat-5.5-doc/realm-howto.html#JAASRealm doesn't contain

Re: Undeploy leaves residual files

2005-08-26 Thread Robert Taylor
I had the same issues and it looks like we are using similar technologies. Struts1.2.7, Hibernate 3.0.5, Spring 1.2.3 The struts issue (I think) is caused by validator access the validator.dtd resource and no releasing it. Under WEB-INF/classes/org/apache/commons/validator/resources I added

ehacache prevents web app reload

2005-08-23 Thread Robert Taylor
Greetings, I'm using Tomcat 5.9 and Spring1.2.3, and Hibernate3. I have to stop and start Tomcat each time I need to reload my web app, otherwise, ehcache is holding onto a resource which prevents the old web app from being deleted so it can be replaced by the reloaded one. I searched the

Tomcat 5.5.9: [JSTL] The absolute uri: http://java.sun.com/jstl/c cannot be resolved in either web.xml or the jar files deployed with this application

2005-07-03 Thread Robert Taylor
Greetings, I'm running Tomcat 5.5.9 on Win2K, JDK1.5 and have observed that there is a problem resolving the JSTL taglibs when using their specified absolute uri. I believe I have everything installed correctly because if I use the relative location to the .tld instead of the uri it works

Re: Tomcat 5.5.9: [JSTL] The absolute uri: http://java.sun.com/jstl/c cannot be resolved in either web.xml or the jar files deployed with this application

2005-07-03 Thread Robert Taylor
Digby, thanks. That was it. Next time I'll think instead of cutting and pasting. /robert Digby wrote: I think this is what you need now: %@ taglib prefix=c uri=http://java.sun.com/jsp/jstl/core; % Note the extra /jsp/ Digby Robert Taylor wrote: Greetings, I'm running Tomcat 5.5.9

Tomcat5.5.7 and Log4j

2005-06-28 Thread Robert Taylor
Greetings, I'm trying to use Log4j in my web app and I'm having some difficulty. I'm running Tomcat5.5.7 and JDK 1.5.0 I've followed the instructions here: http://jakarta.apache.org/tomcat/tomcat-5.5-doc/logging.html -placed log4j.jar and commons-logging.jar in commons/lib -placed log4j.xml in

RE: security-constraint to limit jsp access

2004-12-19 Thread Robert Taylor
Jay, There was just a fairly exhausive thread on this topic. Here is the outcome: http://nagoya.apache.org/eyebrowse/[EMAIL PROTECTED]msgNo=163858 /robert -Original Message- From: Jay Wright [mailto:[EMAIL PROTECTED] Sent: Saturday, December 18, 2004 7:55 PM To: [EMAIL PROTECTED]

RE: cannot connect a sqlserver

2004-12-16 Thread Robert Taylor
When you restore a backup using SQLServer, you must delete and re-add the database users for that database. It's deceiving, because when you restore the database, and look at the users in Enterprise Manager, they are still there and you have no problem querying the database using Query Analyzer.

RE: [OT] cannot connect a sqlserver

2004-12-16 Thread Robert Taylor
David, Thanks for the clarification. Can you elaborate on how you can use SQL Enterprise Manager to generate necessary SQL script to create the users and roles specific to that database, and to apply the object-level permissions or point me to the docs? I have a script which I use for

RE: [OT] cannot connect a sqlserver

2004-12-16 Thread Robert Taylor
Thanks David. /robert -Original Message- From: David Boyer [mailto:[EMAIL PROTECTED] Sent: Thursday, December 16, 2004 11:27 AM To: [EMAIL PROTECTED] Subject: RE: [OT] cannot connect a sqlserver In Enterprise Manager: Right-click on the database, select All Tasks, and

RE: [newbie] Container Managed Security - preventing direct accessto .jsp

2004-12-15 Thread Robert Taylor
That is exactly how I want to do it. In fact, if you look at my original message I describe what you recommend almost exactly. Anyhow, I finally created a VERY simple security example web app with the following web.xml: ?xml version=1.0 encoding=ISO-8859-1? web-app

RE: [newbie] Container Managed Security - preventing direct access to .jsp

2004-12-14 Thread Robert Taylor
through some controller. I have in the past placed .jsp files behind WEB-INF, but I don't believe that is portable and would like to use CMS to achieve this. Thanks again. /robert -Original Message- From: Robert Taylor [mailto:[EMAIL PROTECTED] Sent: Monday, December 13, 2004 8:59 PM

RE: [newbie] Container Managed Security - preventing direct accessto .jsp

2004-12-14 Thread Robert Taylor
, December 14, 2004 1:16 PM To: Tomcat Users List Subject: RE: [newbie] Container Managed Security - preventing direct accessto .jsp Filters are portable. On Tue, 2004-12-14 at 12:32, Robert Taylor wrote: Ping... Please let me know if this questions is just too obvious and I'll

RE: [newbie] Container Managed Security - preventing direct access to .jsp

2004-12-14 Thread Robert Taylor
direct access to .jsp Robert Taylor wrote: Please let me know if this questions is just too obvious and I'll gladly RTFM... See below :-) It just seems like a common idiom to provide a portable mechanism for protecting direct access to .jsp so as to enforce access through some

RE: [newbie] Container Managed Security - preventing direct access to .jsp

2004-12-14 Thread Robert Taylor
, December 14, 2004 5:07 PM To: Tomcat Users List Subject: Re: [newbie] Container Managed Security - preventing direct access to .jsp Robert Taylor wrote: I didn't realize that was added to the 2.4 spec. It was in 2.3, too. I'd guess it was in the spec from the get-go, but don't have an older

RE: [newbie] Container Managed Security - preventing direct access to .jsp

2004-12-14 Thread Robert Taylor
access to .jsp Robert Taylor wrote: Does this not imply that I can do what I am trying to do? I suppose; I'm just baffled why you want to reinvent this particular built-in wheel, but don't let that stop you :-) -- Hassan Schroeder - [EMAIL PROTECTED

[newbie] Container Managed Security - preventing direct access to .jsp

2004-12-13 Thread Robert Taylor
Greetings, I'm new to Tomcat and this mailing list, and have a question regarding configuring Tomcat to simply disallow access to .jsp pages which I have been protected via the security-constraint/ in my web app web.xml file. From what I understand, the following should do the trick and cause a

RE: [newbie] Container Managed Security - preventing direct access to .jsp

2004-12-13 Thread Robert Taylor
Sorry. I left off some info: Tomcat 5.0.25 Win2k JDK1.4.2 /robert -Original Message- From: Robert Taylor [mailto:[EMAIL PROTECTED] Sent: Monday, December 13, 2004 8:59 PM To: [EMAIL PROTECTED] Subject: [newbie] Container Managed Security - preventing direct access to .jsp

RE: Help!

2001-01-26 Thread Robert Taylor
Hi Desiree, I have Tomcat3.2.1 installed on Win98. All I did was download and unzip binaries to my hard drive c:\apache.org\. It created the appropriate directory structure. I then editted the tomcat.bat file and set TOMCAT_HOME=c:\apache.org\tomcat and JAVA_HOME=c:\jdk1.3. I then ran the

RE: Run tomcat with windows 98

2001-01-24 Thread Robert Taylor
Hi Manuel, You might try tweeking some of the memory options under the MS-DOS window properties. I'm not sure if this will help, but it may be worth a try. Robert -Original Message- From: manuel riche [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 5:46 PM To: [EMAIL

Cocoon and Tomcat

2001-01-23 Thread Robert Taylor
es in the same directory without any problems. I have defined and configured other servlets and they work as expected. My *.jsp files are served up as expected. If anyone can offer some advice on configuring and using Cocoon with Tomcat in Win98 environment, it would be greatly appreciated. Robe