Re: Tomcat 4.1.24 Jasper Compile Problem

2003-04-01 Thread Rosdi bin Kasim
[javac] javac: invalid flag: C:\Program Avoid using directory name with spaces, try to install your tomcat in c:\tomcat41 for example. - Original Message - From: Steve Vanspall [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, April 02, 2003 12:16 PM

Re: Tomcat ignores the error-page configuration

2003-03-06 Thread Rosdi bin Kasim
the error-page configuration Rosdi, Thanks for the tip, but it doesn't work. Armand Rosdi bin Kasim a écrit : I am guessing here, but try to remove the leading and trailing space. See if it work. Instead of: location /jsp/error.jsp /location Why not: location/jsp

Re: Tomcat ignores the error-page configuration

2003-03-05 Thread Rosdi bin Kasim
I am guessing here, but try to remove the leading and trailing space. See if it work. Instead of: location /jsp/error.jsp /location Why not: location/jsp/error.jsp/location Rosdi bin Kasim. - Original Message - From: Armand Larregoity [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent

Re: OT: Is it ok to close connection in finalize() ?

2003-02-21 Thread Rosdi bin Kasim
may not be closed immediately. If this is an issue for you, you can call System.gc() to force it to garbage collect immediately. -Jake Rosdi bin Kasim wrote: This is a bit off topic. I am using connection pooling, and in my code, I open all the connection I

Re: MY ATTITUDE

2003-02-13 Thread Rosdi bin Kasim
I couldn't agree more. Rosdi. - Original Message - From: Barley [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, February 14, 2003 8:20 AM Subject: Re: MY ATTITUDE No way. RTFM. The whole reason we have searchable archives, documentation, FAQs and all the

Re: MY ATTITUDE

2003-02-12 Thread Rosdi bin Kasim
RTFM means Read the friggin' manual. It is used in almost any place My oh my..., I thought it means Read The Fine Manual..., man I was mislead - Original Message - From: Erik Price [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, February 12, 2003

Re: server.xml- linking to a context containing a jndi resource fromanother context

2003-01-06 Thread Rosdi bin Kasim
Why didnt you use the tomcat manager/admin?? The manager/admin has been pretty stable and reliable since 4.1.16... No need to edit server.xml directly.. - Original Message - From: Nick Torenvliet [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, January 07,

Re: Unable to use JNDI DataSource

2002-09-10 Thread Rosdi bin Kasim
Declaring your Datasource in GlobalNamingResources doesn't always work. What you can do is, either declare the DataSource within your apps Context itself, like this: - Option A - Declare the DataSource within your apps Context -- Context

Re: How can I send respond incrementally in a Servlet

2002-09-10 Thread Rosdi bin Kasim
What is exactly the 'response' you are sending? If it is a table, then the browser will only display it once the whole table is completed (until it received /table). Regards, Rosdi. - Original Message - From: Sam Cheung [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, September

An error occurred at line: -1 in the jsp file: null

2002-09-09 Thread Rosdi bin Kasim
What does this error mean? I have been trying to migrate my old JSPs to tomcat 4.1.10 + JDK1.4 But all I got is this error, the JSP works fine before on tomcat 4.1.9 + JDK1.3 -- org.apache.jasper.JasperException: Unable to compile class for JSP An

Re: JDBC Realm - changing password

2002-09-03 Thread Rosdi bin Kasim
Actually you will need to physically turn off your server, un-plug if from the wall, wait 5 minutes and then restart the server again... If that doesnt work.., try to turn off and on your proxy as well... because your proxy might be caching it Hahahaaa.. err.. sorry I am a bit

Re: getConnection() returning a NULL JDBC driver

2002-09-02 Thread Rosdi bin Kasim
Oh!.. Robert, btw.., I used tomcat admin to add the ResourceLink... try this url, http://localhost:8080/admin go to your apps and add the link from there This will make sure the xml is generated properly. - Original Message - From: Rosdi bin Kasim [EMAIL PROTECTED] To: Tomcat Users

Re: getConnection() returning a NULL JDBC driver

2002-09-02 Thread Rosdi bin Kasim
) envCtx.lookup(jdbcTranshub); Connection conn = ds.getConnection(); Any other ideas? Thanks in advance, Rob. PS: I did remove the Resource-Ref out of the web.xml file as well. -Original Message- From: Rosdi bin Kasim [mailto:[EMAIL PROTECTED]] Sent: Monday, 2 September 2002 12:13 PM

Re: Connection pool examples

2002-09-02 Thread Rosdi bin Kasim
Search the archives.. I posted a guide/example regarding this not so long ago. Try to search for keywords like, datasource, JNDI, Oracle, connection pool, etc... - Original Message - From: Nancy Crisostomo Martinez [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday,

Re: Data Base Connection

2002-09-02 Thread Rosdi bin Kasim
Search the archives. I posted an example how to setup a datasource for oracle database (but it was using tomcat 4.1.9). Btw, try to upgrade to tomcat 4.1.9, it has some bug fixes regarding JNDI and datasource. - Original Message - From: Isabel Lameda [EMAIL PROTECTED] To: [EMAIL

Re: getConnection() returning a NULL JDBC driver

2002-09-01 Thread Rosdi bin Kasim
Robert, First of all.., I am using Oracle and Tomcat 4.1.9, so my answer might not apply to your problem.. I got the same error like yours.. but after I removed all reference to the datasource in web.xml and then I declared a ResourceLink like this in my server.xml my program is running