Re: a simple ( irritating) classpath problem

2001-08-24 Thread yap_noel
] To: [EMAIL PROTECTED] Sent: Friday, August 24, 2001 8:16 AM Subject: Re: a simple ( irritating) classpath problem On Thu, 23 Aug 2001, yilmaz wrote: D:\tomcat4\jakarta-tomcat-4.0-b7\webapps\ROOT\WEB-INF\classesjavac gs.java gs.java:37: 銝??ParameterParser ????辣å

Re: a simple ( irritating) classpath problem

2001-08-24 Thread yilmaz
myVariable=parser.getStringParameter(formVariable); hope it helps for those who are having the similar problems cheers :) - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 24, 2001 10:25 PM Subject: Re: a simple ( irritating) classpath problem Just

Re: a simple ( irritating) classpath problem

2001-08-23 Thread yilmaz
- From: Dmitri Colebatch [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 23, 2001 2:24 PM Subject: Re: a simple ( irritating) classpath problem On Thu, 23 Aug 2001, yilmaz wrote: but all those efforts are in vain, i don't understand it. when i reference

RE: a simple ( irritating) classpath problem

2001-08-23 Thread Scott Coleman
and what is your classpath set to ??? -Original Message- From: yilmaz [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 23, 2001 10:34 AM To: [EMAIL PROTECTED] Subject: Re: a simple ( irritating) classpath problem here is the related part of my code: import java.io.*; import java.sql

Re: a simple ( irritating) classpath problem

2001-08-23 Thread yilmaz
Scott Coleman wrote : - Original Message - From: Scott Coleman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 23, 2001 4:33 PM Subject: RE: a simple ( irritating) classpath problem and what is your classpath set to ??? CLASSPATH=.;C:\Aligo\M-1\jakarta-tomcat-3.2.2\lib

Re: a simple ( irritating) classpath problem

2001-08-23 Thread yilmaz
. Is there any simpler or faster way for that? (restarting tomcat doesn't work) thanks everybody :) - Original Message - From: yilmaz [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 23, 2001 5:01 PM Subject: Re: a simple ( irritating) classpath problem Scott Coleman wrote

RE: a simple ( irritating) classpath problem

2001-08-23 Thread Scott Coleman
: Re: a simple ( irritating) classpath problem hi all, i am sorry to bother you with my simple questions please bear with me a few more seconds the Problem is whenever i change the classpath or add something to it, i have to log out windows 2000 to make those changes take effect which is taking too

Re: a simple ( irritating) classpath problem

2001-08-23 Thread Jonathan Eric Miller
- Original Message - From: Dmitri Colebatch [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 22, 2001 11:33 PM Subject: Re: a simple ( irritating) classpath problem hi, There are three basic areas that classes can be put in tomcat: WEB-INF/classes - contains all

Re: a simple ( irritating) classpath problem

2001-08-23 Thread Noel L Yap
I'm also having problems with WEB-INF/lib. At the time the JSP is compiled, it seems that the Java compiler doesn't use WEB-INF/lib. What can be done about this? Thanks, Noel hi, There are three basic areas that classes can be put in tomcat: WEB-INF/classes - contains all the classes that

Re: a simple ( irritating) classpath problem

2001-08-23 Thread Rob S.
Guys, not to be short-tempered here or anything, but open your eyes! These class loading issues have been a hot topic on the list for the last week, while all of you are writing/reading your own messages. 1) Search or browse the list the archives. 2) See classloader.html that describes

Re: a simple ( irritating) classpath problem

2001-08-23 Thread Craig R. McClanahan
On Thu, 23 Aug 2001, yilmaz wrote: Date: Thu, 23 Aug 2001 14:12:54 +0800 From: yilmaz [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: a simple ( irritating) classpath problem thanks Dimitri but that is what i exactly did, and (of course) i imported

Re: a simple ( irritating) classpath problem

2001-08-23 Thread Craig R. McClanahan
On Thu, 23 Aug 2001, Jonathan Eric Miller wrote: Date: Thu, 23 Aug 2001 08:38:50 -0500 From: Jonathan Eric Miller [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: a simple ( irritating) classpath problem - Original Message - From: Dmitri

Re: a simple ( irritating) classpath problem

2001-08-23 Thread Noel L Yap
What about tomcat-3.2.3? I've been doing a lot of searching; all I've found were trouble reports and no solutions. Can you provide a URL, please? Thanks, Noel Guys, not to be short-tempered here or anything, but open your eyes! These class loading issues have been a hot topic on the list

Re: a simple ( irritating) classpath problem

2001-08-23 Thread Noel L Yap
These class loading issues have been a hot topic on the list for the last week, while all of you are writing/reading your own messages. The answers to these questions (or at least URLs to answers) need to be put into the FAQ. 1) Search or browse the list the archives. All I find are problem

Re: a simple ( irritating) classpath problem

2001-08-23 Thread Dmitri Colebatch
On Thu, 23 Aug 2001, yilmaz wrote: D:\tomcat4\jakarta-tomcat-4.0-b7\webapps\ROOT\WEB-INF\classesjavac gs.java gs.java:37: 不能??ParameterParser 坏的?文件:.\ParameterParser.class ?文件含有??的?:com.oreilly.servlet.ParameterParser ?去掉或确信它出?在正确的classpath的子目?中. ParameterParser parser= new

Re: a simple ( irritating) classpath problem

2001-08-23 Thread yilmaz
the real application THANKS AGAIN TO EVRYBODY CHEERS =) - Original Message - From: Dmitri Colebatch [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 24, 2001 8:16 AM Subject: Re: a simple ( irritating) classpath problem On Thu, 23 Aug 2001, yilmaz wrote: D:\tomcat4

a simple ( irritating) classpath problem

2001-08-22 Thread yilmaz
hi all, i have been using servlets and tomcat for a long time but till now i couldn't figure out how to set the classpath exactly Can some one please explain this briefly and clearly? you might ask how did you use tomcat without setting the classpath each time i used trial and error method,

Re: a simple ( irritating) classpath problem

2001-08-22 Thread Dmitri Colebatch
hi, There are three basic areas that classes can be put in tomcat: WEB-INF/classes - contains all the classes that form the web application WEB-INF/lib - contains jars that the web application uses TOMCAT_HOME/lib - contains jars that are available to _all_ applications using tomcat

Re: a simple ( irritating) classpath problem

2001-08-22 Thread yilmaz
, August 23, 2001 12:33 PM Subject: Re: a simple ( irritating) classpath problem hi, There are three basic areas that classes can be put in tomcat: WEB-INF/classes - contains all the classes that form the web application WEB-INF/lib - contains jars that the web application uses

Re: a simple ( irritating) classpath problem

2001-08-22 Thread Dmitri Colebatch
Message - From: Dmitri Colebatch [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 23, 2001 12:33 PM Subject: Re: a simple ( irritating) classpath problem hi, There are three basic areas that classes can be put in tomcat: WEB-INF/classes - contains all