more logging in tomcat 5.5

2004-12-04 Thread Jeff Ousley
hello! forgive the rambling nature of this message. my basic question is how do i get more detailed logging out of tomcat. i'm trying to set up a JNDIRealm to authenticate to an ldap server. in my realm config i've got the debug=99 name/value pair. my realm is included inside my host container. i

basic security tutorial

2004-12-02 Thread Jeff Ousley
hello! does anyone know if there's a tutorial or reference on how to set up basic security using tomcat (5.5)? i'd like to get a better understanding of how to secure particular pages in a webapp. thanks! - To unsubscribe,

jdbc via ResourceLink in context.xml not working in 5.5.4

2004-11-29 Thread Jeff Ousley
Hello, I am moving from tomcat 5.0.28 to 5.5.4 and I'm having trouble getting my jdbc driver working in the new tomcat. I have a Resource set up under GlobalNamingResources in server.xml, just as I did in 5.0.28. I also have a corresponding conext xml file (named the same as my test app -

documentation for ant tasks

2004-08-20 Thread Jeff Ousley
hello! is there anyplace where the catalina ant functions/tasks are documented? i've searched but obviously i'm not looking in the proper place. thanks! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

java/jsp dynamic data

2003-02-11 Thread Jeff Ousley
All, I'm sorry to bring this up again, but I'm just not seeing clearly and maybe someone here could help. I need to write an application that displays in a web browser some data that will change from second to second. I have to use java in some form. I'm tied to the jtapi packages. I thought

Re: forcing a jsp page to reload/refresh when backend data changes

2003-02-04 Thread Jeff Ousley
Nick, I like this idea. Do you know of any examples that make use of this concept? What code would I use (generically) to have the invisible frame force a resubmit on the viewable frame? Have you ever worked with pushlets? Are they worth messing with? thanks, -jeff --- Nick Sophinos [EMAIL

Re: bean initialization code

2003-02-03 Thread Jeff Ousley
] wrote: Jeff Ousley [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello! Is there a method I can override in a bean that'll get executed when a bean is first used and not on subsequent calls? Basically I'm page that uses a bean such as: jsp

System.out.prinln in a bean

2003-01-31 Thread Jeff Ousley
Hello! If I use System.out.println in a bean, where does the output go? Can I control where it goes? thanks! -jeff __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com

placement of 3rd party class files

2003-01-31 Thread Jeff Ousley
Hello! Forgive my ignorance as I try to grasp the concepts involved in using tomcat. I'm still learning. My web application uses several beans which use 3rd party classes bundled in .jar files. Where should I place these? After reading the class loader doc, I'm still not clear? They will only be

RE: placement of 3rd party class files

2003-01-31 Thread Jeff Ousley
put them in the /WEB-INF/lib directory. your webapp has to have a WEB-INF directory, and under WEB-INF you have two directories /classes -- used for .class files /lib -- used for .jar files -Original Message- From: Jeff Ousley [mailto:[EMAIL PROTECTED]] Sent: Friday

bean initialization code

2003-01-31 Thread Jeff Ousley
Hello! Is there a method I can override in a bean that'll get executed when a bean is first used and not on subsequent calls? Basically I'm page that uses a bean such as: jsp:useBean id=termwatch class=termwatch.TermWatchBean scope=session/ In order to use the termwatch bean some code inside

empty form fields and jsp:setProperty

2003-01-30 Thread Jeff Ousley
Hello, I'm trying to do a simple form on a jsp page in conjunction with a bean. I'm able to set the values on a form and retrieve them from the bean just fine. However, I'm using: jsp:setProperty name=termwatch property=*/ and I'm not clearly understanding how to properly handle empty fields.

class files not being found

2003-01-15 Thread Jeff Ousley
All, I'm using tomcat 4.1 and I'm noticing that unless your .class file is not part of a package and in the proper directory structure under the classes directory, it cannot be found. Is there a way to use .class files found under WEB-INF/classes that are not part of a package? thanks! -jwff

forcing a jsp page to reload/refresh when backend data changes

2003-01-14 Thread Jeff Ousley
Hello! Forgive this very newbie-ish question. If someone could point me in the right direction I would appreciate it. Is it possible/feasible to have .jsp page refresh the data it's displaying when the data on the backend changes? For example if I have a .jsp page that queries and displays data

jsp versus xml syntax

2003-01-13 Thread Jeff Ousley
Hello! I'm using (learning) tomcat-4.1.18 and I'm trying to get the following example page to work: HTML jsp:declaration // this is a local helper bean for processing the HTML form static public class localBean { private String value; public String getValue() { return value;}

Re: jsp versus xml syntax

2003-01-13 Thread Jeff Ousley
So, under tomcat 4.1 am I not able to do this: jsp:declaration // this is a local helper bean for processing the HTML form static public class localBean { private String value; public String getValue() { return value;} public void setValue(String s) { value = s; } }

how do I reference a bean that's inside my jsp page?

2003-01-13 Thread Jeff Ousley
Hello, I cannot seem to get this example below to work under tomcat (I'm using version 4.1.18). I get an error indicating that the class localBean cannot be found such as: java.lang.ClassNotFoundException: localBean at

Re: how do I reference a bean that's inside my jsp page?

2003-01-13 Thread Jeff Ousley
they are using. -jeff --- Charles Baker [EMAIL PROTECTED] wrote: --- Jeff Ousley [EMAIL PROTECTED] wrote: Hello, I cannot seem to get this example below to work under tomcat (I'm using version 4.1.18). I get an error indicating that the class localBean cannot be found

RE: how do I reference a bean that's inside my jsp page?

2003-01-13 Thread Jeff Ousley
- From: Jeff Ousley [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 5:38 PM To: [EMAIL PROTECTED] Subject: how do I reference a bean that's inside my jsp page? Hello, I cannot seem to get this example below to work under tomcat (I'm using version 4.1.18). I get an error

RE: how do I reference a bean that's inside my jsp page?

2003-01-13 Thread Jeff Ousley
/ I also have my webapps directory in my Classpath, but not sure if that is required... On a side note, anyone feel free to correct me if I am wrong about something ;) but Jeff, this is how mine is set up. HTH Denise -Original Message- From: Jeff Ousley

RE: jsp versus xml syntax

2003-01-13 Thread Jeff Ousley
for JSP pages. Cheers, Greg Trasuk, President StratusCom Manufacturing Systems Inc. - We use information technology to solve business problems on your plant floor. http://stratuscom.ca -Original Message- From: Jeff Ousley [mailto:[EMAIL PROTECTED]] Sent: January 13, 2003 16:16