Re: JSP, sessions: how to notify bean about the session end?

2001-03-14 Thread Tony Keith
ation when the session times out or is otherwise invalidate. -- Tony Keith - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Help on j_security_check -- not found

2001-03-13 Thread Tony Keith
Hello all, I have seen your various posting regarding JDBCRealm, IMHO you seem to be an expert in this topic. I have configured my server.xml and web.xml properly to throw me to login.jsp page whenever I try to access a protected page. But the problem is that when I submit log in on jsp page it

Bean problem...

2001-02-01 Thread Tony Keith
Hello, I have a strange problem with beans. I can run my bean just fine if it is in a package. For example: package foo; public class testBean { ... } and it is located in a foo directory under classes directory: /usr/local/src/jakarta-tomcat/webapps/myapps/WEB-INF/classes/foo but if I remove

Re: Bean problem...

2001-02-01 Thread Tony Keith
Is this a specification of JSP? Vikramjit Singh wrote: there is a need for a package to make a bean. the bean has always to be written in a package. otherwise the JSP cannot acces the bean bye -Original Message- From: Tony Keith [SMTP:[EMAIL PROTECTED]] Sent: Thursday

Apache/Tomcat port configuration

2001-01-16 Thread Tony Keith
In tomcat/apache configuration...I have aliases, and mapping working fine. When calling upon the page with http://192.168.1.10:8080/mypath/script.cgi the servlet is executed properly and there is no problem. However the same address typed as

Re: passing parameters to a Servlet

2000-11-27 Thread Tony Keith
. servletnameparameter1=this%20and%20 that where a '%20' is a URL encoded space. Hope this helps -- Tony Keith

Re: How to configure Mysql with Tomcat.

2000-11-16 Thread Tony Keith
quot;?user="+db Login); As for connecting with a non-empty password, I don't know how to do that. If you figure it out, please let me know. --Zeba At 09:58 AM 11/16/00 -0800, Tony Keith wrote: >Hello, > >I wrote a simple servlet to insert a row into a mysql database table. >I

Re: How to configure Mysql with Tomcat.

2000-11-16 Thread Tony Keith
Name(dbDriver).newInstance(); connPool[i]=DriverManager.getConnection("jdbc:mysql://"+dbServer+"?user="+db Login); As for connecting with a non-empty password, I don'tknow how to do that. If you figure it out, please let me know. --Zeba At 09:58 AM 11/16/00 -0800, Tony Keith wrote: >H

Re: How to configure Mysql with Tomcat. (problem Fixed!)

2000-11-16 Thread Tony Keith
Tony Keith wrote: Once I copied the Mysql classes to the /WEB-INF/classes directory it worked. I also was specifying the wrong path for the driver. I had org.mm.mysql.Driver instead of org.gjt.mm.mysql.Driver. Thanks for everyone's help. Noel Morgan wrote: For Tomcat 3.2b6 I used: my setup