buffer error with tomcat 4.1.9-LE

2002-08-18 Thread capr1ce
Hi all. I've just upgraded to Tomcat 4.1.9-LE. I have a buffer page directive at the top of each of my JSP pages: %@ page buffer=50k % With the new version on tomcat, i'm getting this error: org.apache.jasper.JasperException: /jsp/logon.jsp(2,0) jsp.error.buffer.invalid It works fine if I

Re: hi all

2002-08-16 Thread Capr1ce
I found this. It seems to explain what the problem is... Dont know if it's much help though http://forum.java.sun.com/thread.jsp?forum=54thread=171841 At 06:45 PM 16/08/2002 +0800, you wrote: hi this is my error, and im using jakarta standard tag libs System Replied:

RE: Run Tomcat as tomcat user

2002-08-16 Thread Capr1ce
A password is not necessary, but certainly recommended. See these sections of the mysql documentation: http://www.mysql.com/doc/en/GRANT.html http://www.mysql.com/doc/en/Adding_users.html At 12:31 PM 16/08/2002 +0200, you wrote: Hi Andy ! Thanks for your response. I have created a user

RE: Run Tomcat as tomcat user

2002-08-16 Thread Capr1ce
Message- From: Capr1ce [mailto:[EMAIL PROTECTED]] Sent: viernes 16 de agosto de 2002 12:40 To: Tomcat Users List Subject: RE: Run Tomcat as tomcat user A password is not necessary, but certainly recommended. See these sections of the mysql documentation: http://www.mysql.com/doc/en/GRANT.html

RE: Run Tomcat as tomcat user

2002-08-16 Thread Capr1ce
thought JDBC must be done with the user and password created in mysql. -Original Message- From: Capr1ce [mailto:[EMAIL PROTECTED]] Sent: viernes 16 de agosto de 2002 12:57 To: Tomcat Users List Subject: RE: Run Tomcat as tomcat user No they don't need to have the same password. When your JSP

Re: Errors Compiling a JSP

2002-08-15 Thread Capr1ce
Try it like this: % String[] colorValues = request.getParameterValues(colors); % At 11:14 AM 15/08/2002 -0400, you wrote: Hi, I am learning JSP with the SAMS bookTeach Yourself JSP in 24 Hours. One of the sample JSPs keeps getting a compiler error. The code is: Parameters * Country =

RE: Errors Compiling a JSP

2002-08-15 Thread Capr1ce
that prevented it from fulfilling this request. Thanks Brian -Original Message- From: Capr1ce [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 11:19 AM To: Tomcat Users List Subject: Re: Errors Compiling a JSP Try it like this: % String[] colorValues = request.getParameterValues(colors

RE: Errors Compiling a JSP

2002-08-15 Thread Capr1ce
this request. Thanks Brian -Original Message- From: Capr1ce [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 11:19 AM To: Tomcat Users List Subject: Re: Errors Compiling a JSP Try it like this: % String[] colorValues = request.getParameterValues(colors); % At 11:14 AM 15

Re: AW: Errors Compiling a JSP

2002-08-15 Thread Capr1ce
. Thanks Brian -Original Message- From: Capr1ce [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 11:19 AM To: Tomcat Users List Subject: Re: Errors Compiling a JSP Try it like this: % String[] colorValues = request.getParameterValues(colors); % At 11

Connection pooling using Jakarta commons

2002-08-14 Thread Capr1ce
Hi, I'm new here. My name's Mel. Hi! Anyway, I have a question that I cannot find an answer for anywhere. I've implemented connection pooling using Tomcat 4.0 and the required projects from Jakarta commons as instructed in the JNDI resources how to that can be found with in the Tomcat

Re: filter

2002-08-14 Thread Capr1ce
Hi, do you have the elements in the correct order as specified by the web.xml's DTD? Refer to section 13.3 of the Servlet (2.3) spec. At 10:21 AM 14/08/2002 -0300, you wrote: I'm using Tomcat 4.0.4 I'm trying to declare a filter in web.xml file, but it refuses to work. Here is what I

Re: Bean on Tomcat

2002-08-14 Thread Capr1ce
Theres not any configuration needed. Ok, so say you put your bean in WEB-INF/classes/beans and your bean is called FooBean.java You would use it like this within your JSP: jsp:useBean id=foo scope=page class=beans.FooBean / jsp:getProperty name=foo property=aProperty / Is that what you're