RE: simple classpath / webapp question

2003-11-24 Thread Shapira, Yoav
m: Ben Souther [mailto:[EMAIL PROTECTED] >Sent: Monday, November 24, 2003 12:46 PM >To: Tomcat Users List >Subject: Re: simple classpath / webapp question > >I assume from the backslashes in your pathname that you are running on >Windows. Otherwise, I would suggest using syml

adding new jars to classpath

2004-01-06 Thread sushma
Hi, I added new jars to the classpath in setclasspath.sh(using tomcat 4.1.27) but these are not being picked up. I got a CNF error. I copied these jars to common/lib and then it worked fine. These jars are used by the custom realm classes placed at server/lib. why am I not able to modify the

Classpath Tomcat Service Using procrun

2004-01-23 Thread thuret olivier
hi all, i want to set the classpath for tomcat 5.18 sevices whith the option : In exemple of service.bat : set CLASS_PATH=c:\jar\toto.jar "%EXECUTABLE%" //US//Tom4 --JavaOptions -Dcatalina.home="\"%CATALINA_HOME%\""#-Djava.endorsed.dirs="\"%CATALINA_

Please help with CLASSPATH problem

2004-02-16 Thread Andi Reinbrech
Hi, this problem behaves differently under 4.1 and 5.0.18, but I can't use *either*. When I run Tomcat 5.0.18 from the command prompt, the app works 100%. It is supposed to pick up a file called "emapi.cfg" and "licenses.txt" from the CLASSPATH. "emapi.cfg" wo

Embedded Tomcat and Classpath issues.

2004-02-23 Thread Brian Krisler
Hello, I have an application that has Tomcat embedded, running Xindice. I would like to start Tomcat when my application starts which works just fine if Tomcat jars are the only jars specified on the VM classpath. However I also need to have Xindice jars on the classpath since my application

Re: CLASSPATH in Windows XP

2004-08-20 Thread Schalk Neethling
install Apache SOAP and AXIS not copying the jar files into Tomcat5/common/lib but setting their paths in CLASSPATH, like installation instructions of SOAP and AXIS says. It doesn’t work (copying the files all works fine). This is my CLASSPATH: "C:\Servidor web\AXIS 1.1\lib\axis.jar;C:\Servidor we

Re: CLASSPATH in Windows XP

2004-08-20 Thread QM
On Fri, Aug 20, 2004 at 12:29:25PM +0200, Javier wrote: : Does Tomcat use this CLASSPATH? How can I tell Tomcat to use that? You *really* want to follow standards here, and using a classpath env var with a webapp is not quite standard. Review the servlet spec. Do a search for "WEB-INF/lib

classpath with a service help

2004-09-20 Thread John MccLain
Howdy, I wish to deploy Tomct5.0.28 along with a webapp. I want to be able to insure that Tomcat is deployed as a service, uses the standard classpath AND 1 more classpath entry. How can I set up the Tomcat windows installer to setup Tomcat as a service and include a specific directory on the

Re: Jaxp and Classpath modification????

2000-12-04 Thread Jim Rudnicki
- Original Message - > I see that Tomcat 3.2b8 at startup is including the JAXP XML parser jar > files from the $TOMCAT_HOME/lib directory in my CLASSPATH. That will NOT > work for me - I'm trying to use the Xerces XML parser in a servlet and the > JAXP DOM1

Re: ClassPath and setTomcat_Home variables?

2001-01-07 Thread nitin dubey
Hi sam, that means your classpath has not been set. from run option in start menu type SYSEDIT. give following commands in your autoexec.bat. set TOMCAT_HOME=c:\tomcat set JAVA_HOME=c:\jdk1.3 set classpath=%classpath%;c:\jsdk2.0\lib\jsdk.jar; here I am assuming that all jdk, jsdk and tomcat

Re: ClassPath and setTomcat_Home variables?

2001-01-08 Thread Robert Wohleb
Search the microsoft docs at msdn.microsoft.com for the "out of environment space problem. There is a quick fix listed there. If I remember correctly it deals with the dos box not properly automatically detecting memory requirements for the environment space. If you can't find the doc, try setting

Re: classpath of a filter

2004-11-26 Thread Tim Funk
know if the request is an instance of org.apache.catalina.connector.RequestFacade. When executing the 'if (request instanceof RequestFacade)' the program gives an error for that line: java.lang.NoClassDefFoundError: org/apache/catalina/connector/RequestFacade I guess the RequestFacade i

RE: Application Level Classpath Setting

2005-07-01 Thread Raghupathy,Gurumoorthy
Put it in WEB-INF/lib -Original Message- From: Srinivas Ivaturi [mailto:[EMAIL PROTECTED] Sent: 01 July 2005 10:40 To: tomcat-user@jakarta.apache.org Subject: Application Level Classpath Setting Hi I have a set of JAR files to be set into classpath. I cannot keep the entire JARs into

RE: Application Level Classpath Setting

2005-07-01 Thread Srinivas Ivaturi
I forget to mention these are 3 rd party JARS which I cannot put in the LIB. -Original Message- From: Raghupathy,Gurumoorthy [mailto:[EMAIL PROTECTED] Sent: Friday, July 01, 2005 3:12 PM To: 'Tomcat Users List' Subject: RE: Application Level Classpath Setting Put it in W

RE: Application Level Classpath Setting

2005-07-01 Thread Peter Crowther
> From: Srinivas Ivaturi [mailto:[EMAIL PROTECTED] > I forget to mention these are 3 rd party JARS which I cannot > put in the LIB. "Cannot" by licensing terms, because the app will no longer work if you do, or what? - Peter

RE: Application Level Classpath Setting

2005-07-01 Thread Srinivas Ivaturi
It is not that it wont work , It is by design. -Original Message- From: Peter Crowther [mailto:[EMAIL PROTECTED] Sent: Friday, July 01, 2005 3:19 PM To: Tomcat Users List Subject: RE: Application Level Classpath Setting > From: Srinivas Ivaturi [mailto:[EMAIL PROTECTED] > I for

RE: Application Level Classpath Setting

2005-07-01 Thread Peter Crowther
> From: Srinivas Ivaturi [mailto:[EMAIL PROTECTED] > It is not that it wont work , It is by design. OK. So, to summarise: - You have a set of jars that is too large to name on the classpath in Windows; - The jars are required for one webapp only, not for the whole of Tomcat (so one

Re: Application Level Classpath Setting

2005-07-01 Thread Anoop kumar V
AFAIK - Tomcat does not care about the system classpath. It picks up its classpath from catalina.sh ->setclasspath.sh (TC 4.x) In TC 5.x (this too FYI does not care abt the system classpath, but) you can modify the following lines in catalina.properties file under the conf dir ... # # # List

RE: Application Level Classpath Setting

2005-07-01 Thread Peter Crowther
> From: Anoop kumar V [mailto:[EMAIL PROTECTED] > In TC 5.x (this too FYI does not care abt the system classpath, but) > you can modify the following lines in catalina.properties file under > the conf dir ... > > That's better than my version - thanks, Anoop.

RE: Application Level Classpath Setting

2005-07-01 Thread Srinivas Ivaturi
me If I give like this. Any reason you know? Thankas Srinivas Ivaturi. -Original Message- From: Anoop kumar V [mailto:[EMAIL PROTECTED] Sent: Friday, July 01, 2005 6:27 PM To: Tomcat Users List Subject: Re: Application Level Classpath Setting AFAIK - Tomcat does not care about the

Classpath issues with embedded tomcat

2005-07-12 Thread Ryan LeCompte
Hello all, I'm running embedded tomcat 5.5.9. Let's say that I have one version of X.jar in my main classpath when I launch my embedded Tomcat, and also a different version of X.jar in a deployed webapp under WEB-INF/lib. Is there a way to force tomcat to use the X.jar version that i

Re: tomcat 4.x classpath

2005-07-21 Thread Alon Belman
e: > How do you add directories to tomcat's classpath? > > > > Jason Bergthorson > > GIS Programmer/Applications Developer > > > > Phone: 204.983.4035 > > Fax: 204.983.2178 > > 200-303 Mai

RE: tomcat 4.x classpath

2005-07-21 Thread Warren Taylor
: Thursday, July 21, 2005 4:35 PM To: Tomcat Users List Subject: Re: tomcat 4.x classpath You almost certainly don't need to set it directly. Tomcat will build classpaths for its different class loaders itself following the rules explained here: http://jakarta.apache.org/tomcat/tomcat-5.5-d

RE: tomcat 4.x classpath

2005-07-21 Thread Bergthorson, Jason
\X to tomcat's classpath, or just have tomcat read my system classpath and get it from there. But by default tomcat does not use your system classpath, and I can't figure out how to either add the system classpath to its classpath or to add directories to it. It would read jar files from my li

RE: jndi.properties file and classpath

2005-04-06 Thread Eric J Kaplan
-Original Message- From: Eric J Kaplan [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 06, 2005 11:18 AM To: 'Tomcat Users List' Subject: jndi.properties file and classpath We are using tomcat 5.0.28 and our servlet needs to load jndi.properties from a jndi.properties file in o

Apache 2, mod_jk2, inprocess, w2k, classpath ?

2002-09-12 Thread Andre Schild
Hello, I'm trying to setup my Apache 2.0.40 with mod_jk2 and tomcat 4.1.10 When using the AJP13 connector or http connectors then things work fine. But when I specify to use the inprocess/jni connection, then I get startup problems for the VM. Looking at the stderr.log file, I see that it doesn'

Classpath and Aliases on Tomcat 4

2002-10-07 Thread Matthew Smith
Add elements to the classpath from elsewhere on the file system; and add a static directory to a web app (as in the Alias command in the Apache web server). Currently, I have created a seperate web app for the static files and just pointed its base directory at the images directory. I was hoping f

Re: [off topic] classpath on linux

2002-10-16 Thread Denny Chambers
Try this: JAVA_HOME=/usr/java/j2sdk1.4.1 CLASSPATH=your/class/path PATH=${PATH}:${JAVA_HOME}/bin/ export PATH CLASSPATH JAVA_HOME Lindomar wrote: >Hi everybody! >I'm trying using java on Red Hat 7.1. >It´s install in /usr/java/j2sdk1.4.1, but classpath don't works!? &g

Re: [off topic] classpath on linux

2002-10-16 Thread Lindomar
Thanks Denny! It´s ok now. - Original Message - From: "Denny Chambers" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, October 16, 2002 14:47 Subject: Re: [off topic] classpath on linux > Quer ter seu próprio endereç

Re: [off topic] classpath on linux

2002-10-16 Thread Fernando Perez
Esta usando algun entorno grafico para desarrollar los programas. Yo uso JBuilder7 y no usa el Classpath del sistema usa su propio path. try export JAVA_HOME="/usr/local/java" Fernando Perez Argentina [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>

retrieving complete classpath for tomcat instance

2002-06-10 Thread Paresh Deshpande
complete classpath as an argument to method setClasspath. Once I set classpath correctly, I should be able to use compile method to generate appropriate class files. Problem is that, I am not able to set classpath information for compiler class correctly. How can I include all the jar files to

Re: Tomcat LIB and Java CLASSPATH

2002-07-09 Thread Craig R. McClanahan
On Tue, 9 Jul 2002, Manchan wrote: > Date: Tue, 9 Jul 2002 10:22:42 -0700 (PDT) > From: Manchan <[EMAIL PROTECTED]> > Reply-To: Tomcat Users List <[EMAIL PROTECTED]> > To: Tomcat Users List <[EMAIL PROTECTED]> > Subject: Tomcat LIB and Java CLASSPATH >

Re: Add arbitrary path to classpath?

2002-07-30 Thread Will Hartung
From: "Paul Brinkley" <[EMAIL PROTECTED]> Sent: Tuesday, July 30, 2002 2:14 PM Subject: Add arbitrary path to classpath? > (Newbie alert: I've been playing with Tomcat for a couple weeks, and once > made a servlet or two a couple of years ago. Please be gentle.) &

RE: Add arbitrary path to classpath?

2002-07-31 Thread Andrew Conrad
Message- > From: Paul Brinkley [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 30, 2002 5:14 PM > To: [EMAIL PROTECTED] > Subject: Add arbitrary path to classpath? > > > > (Newbie alert: I've been playing with Tomcat for a couple > weeks, and once mad

Reading properties file from ClassPath (ServletContextListener)

2002-08-01 Thread petra staub
Hi, I currently dont understand the following: I have a registered class as a ServletContextListener. At application start I want to read a Properties file from the classpath, doing the following: myProps = new Properties(); try { URL url = ClassLoader.getSystemResource("co

Classpath problems with tomcat 3.2.1 standalone.

2001-04-10 Thread Renee Petris
citly added the .zip file to my Tomcat classpath. My webapps directory structure looks like:   D:\Apps\tomcat\webapps\JMSadmin     -> error.jsp    ->  JMSQueue.jsp D:\Apps\tomcat\webapps\JMSadmin\WEB-INF    

classpath error in 3.2.1 sample build.bat

2001-04-25 Thread Senor Simpatico
Hi all -- Being fairly new to Java in general and knowing nothing about Tomcat or servlet programming, this gave me all kinds of grief when I first downloaded Tomcat a couple weeks ago. Perhaps this has been pointed out previously, but I couldn't find anything on the user archives that answered

Re: [ClassPath] JSP, JDBC, and mm.MySql

2001-05-18 Thread Matt Goss
Place your jar file in the WEB-INF/lib folder. Matt Jon Shoberg wrote: > > Its getting late but I'm not having too much luck at getting a sucessful > JSP / mysql connection. Given the error message below can someone explain > where I should be setting my class path and the actual mm.mys

RE: [ClassPath] JSP, JDBC, and mm.MySql

2001-05-31 Thread Jann VanOver
] Subject: [ClassPath] JSP, JDBC, and mm.MySql Its getting late but I'm not having too much luck at getting a sucessful JSP / mysql connection. Given the error message below can someone explain where I should be setting my class path and the actual mm.mysql files or the entire jar file?

Re: [ClassPath] JSP, JDBC, and mm.MySql

2001-05-31 Thread Ivan Kougaenko
double check that everything is set up according to this doc http://mmmysql.sourceforge.net/doc/mm.doc/x68.htm I think you should have the entire jar file in the classpath - Original Message - From: "Jon Shoberg" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent:

RE: [ClassPath] JSP, JDBC, and mm.MySql

2001-06-01 Thread Michael Wentzel
> i'm not too sure about Apache, i don't use that one for JSP. > I'm running JRun for my JSP. I do use Apache for PHP though. > It took me a long time setting up a mySQL connection using > JSP before someone told me that there is no need for any > CLASSP

RE: [ClassPath] JSP, JDBC, and mm.MySql

2001-06-01 Thread Supreme Being
Jon, i'm not too sure about Apache, i don't use that one for JSP. I'm running JRun for my JSP. I do use Apache for PHP though. It took me a long time setting up a mySQL connection using JSP before someone told me that there is no need for any CLASSPATH inclusions in the bat

Order of libraries in CLASSPATH question?

2001-06-14 Thread Brett G. Palmer
We are having random problems with some of our application libraries when we deploy them in their separate contexts. The question I have is what is the default behavior for Tomcat to load class libraries into its CLASSPATH. Do libraries from the $TOMCAT_HOME/lib directory get added to the

How to set classpath in TC4

2001-09-26 Thread Patrick . Pierra
hi, Where have i to set the classpath in TC4 ? Patrick PIERRA

Re: Unable to set CLASSPATH dynamically

2001-09-26 Thread David Smith
I get… > > … > Unable to set CLASSPATH dynamically. > Note: To set the CLASSPATH dynamically on Win9x systems > Only DOS 8.3 names may be used in TOMCAT_HOME! > Setting your CLASSPAH statically. > > Using CLASSPATH: C:\jakarta\jakarta-tomcat-3.2.3\classes…….. > >

Re: Unable to set CLASSPATH dynamically

2001-09-26 Thread Jim Cheesman
At 04:09 PM 26/09/01, you wrote: >You must use the 8.3 filenames since java ...windows doesn't understand... >doesn't understand the longer >windows filenames. Open a DOS command prompt and do a dir /w on each >directory with a name longer than 8 characters or more than one '.' to see >the 8.3

RE: Classpath problem with TC 3.2.3

2001-10-31 Thread Larry Isaacs
Cheers, Larry > -Original Message- > From: Voon, Wendy [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 30, 2001 5:29 PM > To: '[EMAIL PROTECTED]' > Subject: Classpath problem with TC 3.2.3 > > > > > Hi, > > I have installed TC 3.2.3. > &g

RE: Classpath problem with TC 3.2.3

2001-11-01 Thread Voon, Wendy
essage- > From: Larry Isaacs [SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, 31 October 2001 23:51 > To: 'Tomcat Users List' > Subject: RE: Classpath problem with TC 3.2.3 > > It looks like the JSP you are executing is in a "jsp" > subdirectory of the w

RE: Classpath problem with TC 3.2.3

2001-11-02 Thread Larry Isaacs
bcall" directory, or is it in a jar? If it isn't working, what error are you seeing? Larry > -Original Message- > From: Voon, Wendy [mailto:[EMAIL PROTECTED]] > Sent: Thursday, November 01, 2001 7:37 PM > To: 'Tomcat Users List' > Subject: RE: Classpath p

Using different classpath in the tomcat

2001-12-03 Thread Diego Martin Moreno
Hi, I have two differente context in one tomcat, but I would like two use different classpath in the two context, and if I can use diffent config why memory of the jvm. Thanks. (Excuse me my bad english) Diego Martin Moreno

newbie Catalina and JBoss classpath question!

2001-12-05 Thread Carl Schwarcz
I'm a student trying to debug a servlet under Catalina (Tomcat 4.0.1) that calls a session bean under JBoss 2.4.3. My servlet dies horribly unable to load (NoClassDefFoundError) javax/ejb/EJBHome which I believe is in jboss-j2ee.jar. The appropriate directory is in my classpath. Howev

Modifying classpath for System Class Loader

2001-12-07 Thread Karthi Ulaganathan
For my servlet application I have to use some previously devloped code, that reads property files by using ClassLoader.getSystemResourceAsStream, which can not be changed. Since I have only bootstrap.jar in my classpath, the getSystemResource.. always returns null. So I modifed CLASSPATH in

not reading system classpath in windows

2002-04-22 Thread Prashant
Hello sir. I'm testing one web application written in java on linux and windows both. On linux system.getProperty("java.class.path") this shows me following classpath : $SYSTEM_CLASSPATH:{$CATALINA_HOME}\bin\bootstrap.jar however on windows machine it is

Re: using more memory, different classpath

2002-04-22 Thread Jacob Kjome
Hello jason, Monday, April 22, 2002, 2:14:39 PM, you wrote: jw> (1) i received an out of memory exception and would like to know where to tell tomcat to use more memory use environment variables TOMCAT_OPTS (for Tomcat3.2.x or 3.3.x) and CATALINA_OPTS (for Tomcat 4.xx) to add options that Tom

RE: using more memory, different classpath

2002-04-22 Thread Tim Cronin
1) if your using 4.x you can increase memory /w the following env var CATALINA_OPTS=-Xmsm -Original Message- From: jason wood [mailto:[EMAIL PROTECTED]] Sent: Monday, April 22, 2002 2:15 PM To: [EMAIL PROTECTED] Subject: using more memory, different classpath (1) i received an out

RE: using more memory, different classpath

2002-04-22 Thread Tim Cronin
(assuming 4.xx) if you follow the startup script the CLASSPATH is reset when tomcat is started, see setclasspath .sh/.bat. You can jar your files and place them \common\lib or if your lazy like me you could modify the setclasspath. Beware if your using the j2ee lib you will create conflicts

Re: please fix my stupid classpath

2002-05-29 Thread Martin van den Bemt
Hi, Tomcat handles your classpath, you don't have to set that.. I even think you get some classloader issues with that.. If you need it for compiling, you should have a look at ant, who can arrange these things a lot easier.. Mvgr, Martin On Thu, 2002-05-30 at 00:08, Richard Diaz wrote

Re: please fix my stupid classpath

2002-05-29 Thread Richard Diaz
I am using the command line (javac) to compile my java files. And now I am trying to .jar them... Rich --- Martin van den Bemt <[EMAIL PROTECTED]> wrote: > Hi, > > Tomcat handles your classpath, you don't have to set > that.. I even think > you get some classloader is

RE: please fix my stupid classpath

2002-05-29 Thread Whitcomb, Roger
Rich - I have NO classpath defined and am doing almost minute-by-minute builds using "Ant". Here is my build.xml file as an example. Notice the "tomcat-home" definition at the top which probably would change and then the "servlet-path" element which po

RE: please fix my stupid classpath

2002-05-29 Thread Martin van den Bemt
Checkout http://jakarta.apache.org/ant/manual/CoreTasks/property.html especially the parameter environment needs looking at ;) Mvgr, Martin On Thu, 2002-05-30 at 00:45, Whitcomb, Roger wrote: > Rich - > I have NO classpath defined and am doing almost minute-by-minute builds

RE: please fix my stupid classpath

2002-05-29 Thread Whitcomb, Roger
:50 PM To: Tomcat Users List Subject: RE: please fix my stupid classpath Checkout http://jakarta.apache.org/ant/manual/CoreTasks/property.html especially the parameter environment needs looking at ;) Mvgr, Martin On Thu, 2002-05-30 at 00:45, Whitcomb, Roger wrote: > Rich - >

RE: please fix my stupid classpath

2002-05-29 Thread Richard Diaz
All I am trying to do is eliminate the "Servlet Exception wrong name" error I am getting ever since I moved my class files into a jar file. I added my jar file as the last entry of my classpath below... ANT = 'Another Neat Tool' THAT I GOTA LEARN?!?!?! AAGGGHHH =( R

Re: please fix my stupid classpath

2002-05-29 Thread Phillip Morelock
akarta.apache.org/ant/manual/CoreTasks/property.html > especially the parameter environment needs looking at ;) > > Mvgr, > Martin > > On Thu, 2002-05-30 at 00:45, Whitcomb, Roger wrote: >> Rich - >> I have NO classpath defined and am doing almost minute-by-minute builds u

Re: please fix my stupid classpath

2002-05-29 Thread Phillip Morelock
I > moved my class files into a jar file. I added my jar > file as the last entry of my classpath below... > > ANT = 'Another Neat Tool' THAT I GOTA LEARN?!?!?! > AAGGGHHH =( > > Rich > > SET > CLASSPATH=c:\sunsdk131;c:\sunsdk131\lib;c:\sunsdk131\src.

FW: Classpath problems with Tomcat 3.2

2001-06-20 Thread Jeffrey Hood
I can't seem to get the following to work... entry in server.xml files: /home/jhood/dev/websource/tomcat: /WEB-INF /classes test.class /subdir1 /subdir2 I have test.jsp in /home/jhood/dev/websource/tomcat, and it finds the test.class fine, as well as other c

RE: Classpath problems with Tomcat 3.2

2001-06-21 Thread Filip Hanik
[EMAIL PROTECTED]] >Sent: Thursday, June 21, 2001 10:14 AM >To: [EMAIL PROTECTED] >Subject: Classpath problems with Tomcat 3.2 > > > >Anyone have -any- explaniation of this??? > >I can't seem to get the following to work... > >entry in server.xml > >

RE: Classpath problems with Tomcat 3.2

2001-06-21 Thread Filip Hanik
generated servlet Filip ~ Namaste - I bow to the divine in you ~ Filip Hanik Software Architect [EMAIL PROTECTED] www.filip.net >-Original Message- >From: Jeffrey Hood [mailto:[EMAIL PROTECTED]] >Sent: Thursday, June 21, 2001 11:19 AM >To: [EMAIL PROTECTED] >Subject: RE

RE: Classpath problems with Tomcat 3.2

2001-06-21 Thread Jeffrey Hood
you need to add a <%@ > page import="test" %> (double check my syntax, I'm typing quickly). An > import="*" might work, but I'm not sure. > > Randy > > > -Original Message- > > From: Jeffrey Hood [mailto:[EMAIL PROTECT

open xml/xsl files inside classpath

2001-06-26 Thread Pedro Salazar
I just use the location in classpath, ex: rb=ResourceBundle.getBundle("PT.teste.props."+properties_file); But, now I would like to open both files, the xml and the xsl file, which are in a package PT.teste.xml. I tested using the absolute path to them, but is not very recommendabl

Re: Jar files fro classpath variable

2001-07-04 Thread Kaneda K
At 16:24 04/07/2001 +0300, you wrote: >Hi, > >I wanted to ask if there is a way to add more jars to the classpath >environment when Tomcat starts ? >Currently I am linking jar files to the lib directory. Is there >a way to tell Tomcat to load jars from carious directories ?

Re: Jar files fro classpath variable

2001-07-04 Thread Tarun Garg
Title: Jar files fro classpath variable You can modify your tomcat.sh ( or tomcat.bat on windows) file to have your jars in the classpath variable. I myself work on a windows machine, but I guess yours is some unix thing. I guess what I am saying should work for you, though I can't veri

about CLASSPATH: system or tomcat trick ?

2001-08-21 Thread Fabrice Terrasson
I added the path /usr/java/xerces-1_4_2/xerces.jar in CLASSPATH of tomcat.sh but it crashes tomcat I removed xerces.jar from CLASSPATH in tomcat.sh and putted it in the my user profile file : ~/.bashrc and ~/.profile but now tomcat works well got a clue ? any help will be appreciated. [fate

Re: a simple ( irritating) classpath problem

2001-08-22 Thread Dmitri Colebatch
uired classes and that they exist in the jar. > in put these files directly under the web-inf/classes/ directory , it > didn't work either again, should be according to package > then i added the full path /lib/cos.jar, to the classpath, > didn't work either. I'm no

Re: a simple ( irritating) classpath problem

2001-08-22 Thread yilmaz
t compile becasue it keeps telling me ParameterParser is not on the classpath any ideas please ( i used tomcat 4 and tomcat 3.2.2 ) they both behave the same way thanks for your help - Original Message - From: "Dmitri Colebatch" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]

Re: a simple ( irritating) classpath problem

2001-08-22 Thread Dmitri Colebatch
ks, if that works then its not a classpath problem, but an import problem. Are you sure you haven't got a simple typo or something? post your code and we'll have a look (o: cheers dim > but why don't the others work. > i put this packet under both /lib/cos.jar, > webapp

Re: a simple ( irritating) classpath problem

2001-08-23 Thread yilmaz
37: 不能??ParameterParser 坏的?文件:.\ParameterParser.class ?文件含有??的?:com.oreilly.servlet.ParameterParser ?去掉或确信它出?在正确的classpath的子目?中. ParameterParser parser= new ParameterParser(req); ^ 1 ??? simply it says that com.oreilly.servlet.ParameterParser is not on the classpath Strange, ISN'T

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 ??

Re: a simple ( irritating) classpath problem

2001-08-23 Thread yilmaz
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 much time and is irritating too. Is there

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

Re: a simple ( irritating) classpath problem

2001-08-23 Thread Noel L Yap
directory , it > didn't work either again, should be according to package > then i added the full path /lib/cos.jar, to the classpath, > didn't work either. I'm not sure why that didn't work - although if you put cos.jar in the classpath it _should_ be available to all

Re: a simple ( irritating) classpath problem

2001-08-23 Thread Rob S.
r. > > > in put these files directly under the web-inf/classes/ directory , it > > didn't work either > > again, should be according to package > > > then i added the full path /lib/cos.jar, to the classpath, > > didn't work either. > > I&#

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

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 > > > -

Re: a simple ( irritating) classpath problem

2001-08-23 Thread Noel L Yap
27;t work? try jar -tf cos.jar to check that the > classes are in the jar. I assume you are importing the required classes > and that they exist in the jar. > > > in put these files directly under the web-inf/classes/ directory , it > > didn't work either > > aga

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\classes>javac gs.java > gs.java:37: 不能??ParameterParser > 坏的?文件:.\ParameterParser.class > ?文件含有??的?:com.oreilly.servlet.ParameterParser > ?去掉或确信它出?在正确的classpath的子目?中. > Par

Re: a simple ( irritating) classpath problem

2001-08-23 Thread yilmaz
HI ALL, first of all thanks for everybody for your help those garbled chars you see on your email are chinese characters(big5) but i already translated it for those who may not be able to see (understand)them it says ParameterParser is not on the right classpath Any way guys , finally after a

Re: a simple ( irritating) classpath problem

2001-08-24 Thread yap_noel
for those who may not be able to see (understand)them it says ParameterParser is not on the right classpath Any way guys , finally after a lot of trial and error methods i managed to make my Tomcat to recognize ParameterParser However, i am stil confused and didn't understand the logic b

Re: a simple ( irritating) classpath problem

2001-08-24 Thread yilmaz
Hi everyone, i had two problems related with this thread for the classpath problem the solution i found by chance :) is : setting the environmental variables through the command window as : set CLASSPATH=c:\jdk1.3;c:\jdk1.3\lib\tools.jar;d:\tomcat4\jakarta-tomcat-4.0-b7 \ mon\lib\servlet.jar;d

Re: Segmentation Fault when modifying classpath?!

2001-09-01 Thread pete
this surrounds modifying tomcat.sh per install instructions found in >apache-soap. > >Per Apache-Soap's "Getting Tomcat Ready", I have changed my classpath to put >xerces.jar at the beginning of my classpath as follows: > >unset CLASSPATH > >CLASSP

Re: Segmentation Fault when modifying classpath?!

2001-09-02 Thread Alejandro Calbazana
s bug? Al - Original Message - From: "pete" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, September 02, 2001 3:25 AM Subject: Re: Segmentation Fault when modifying classpath?! > You're not by any chance using Suns JDK 1.3.1 and Linux are you? &

Re: Segmentation Fault when modifying classpath?!

2001-09-02 Thread simon
t;Alejandro Calbazana" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, September 03, 2001 12:06 AM Subject: Re: Segmentation Fault when modifying classpath?! > Thanks Pete! I will give that a shot. I am using Sun's JDK1.3.1 under > Redhat 7.1 (sorry, forget to

RE: Segmentation Fault when modifying classpath?!

2001-09-02 Thread Robert Finneran
lavor if IBM jdk? Any advice would be appreciated! -Original Message- From: simon [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 02, 2001 5:23 PM To: [EMAIL PROTECTED] Subject: Re: Segmentation Fault when modifying classpath?! Hello Al, If you set the environment variable TOMCAT_OPTS to -classi

Re: Segmentation Fault when modifying classpath?!

2001-09-03 Thread pete
PROTECTED]> >Sent: Sunday, September 02, 2001 3:25 AM >Subject: Re: Segmentation Fault when modifying classpath?! > > >>You're not by any chance using Suns JDK 1.3.1 and Linux are you? >> >> >>If you are, add 'ulimit -s 2048' to tomcat.sh (or just type

Re: setting classpath for an application

2001-09-04 Thread MindTerm
Dear Christian, Place your class files in /yourproject/WEB-INF/lib/. M.T. --- [EMAIL PROTECTED] wrote: > Hi > > I don't want to set classpath generally by starting > tomcat but explicitly > for my application. Is it possible to do this in > web.xml (if yes how)? >

RE: Tomcat3.2.1 - dynamic classpath in wrapper.properties

2001-09-05 Thread Ratnakar Palle
Haven't heard anything on this, so, sending it out again... Sorry for the inconvenience. Thanks, -Ratnakar -Original Message- From: Ratnakar Palle [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 28, 2001 5:32 PM To: [EMAIL PROTECTED] Subject: Tomcat3.2.1 - dynamic classpa

Does Jasper use the Context Classpath

2001-09-10 Thread Will England
Greetings! I know there are two (or three) different classpaths within Tomcat 3.2. The question is, does Jasper, when compiling JSP files, use the Context Classpath, which referrs to the WEB-INF/classes directory for that specific JSP? If not, how could I add the Context Classpath to the

RE: setting classpath in TOMCAT 4.0

2002-01-24 Thread Anton Brazhnyk
Hi, > -Original Message- > From: Jeff Ong [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 24, 2002 12:47 PM > To: Tomcat Users List > Subject: setting classpath in TOMCAT 4.0 > > > hi all, > > I faced problem when try to set CLASSPATH in TOMCAT.

<    1   2   3   4   5   6   7   8   9   10   >