RE: retrieving complete classpath for tomcat instance

2002-06-11 Thread Paresh Deshpande
Message- From: Paresh Deshpande [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 06:01 PM To: [EMAIL PROTECTED] Subject: retrieving complete classpath for tomcat instance Importance: High Hi, I am using tomcat 4.0 servlet container with apache 1.3.24 as web server. I have a situation where

retrieving complete classpath for tomcat instance

2002-06-10 Thread Paresh Deshpande
Hi, I am using tomcat 4.0 servlet container with apache 1.3.24 as web server. I have a situation where I need to compile a java file at runtime within my web-application. I am using org.apache.jasper.compiler.SunJavaCompiler to generate the necessary class files. While compilation, I need

RE: unable to serve static pages through apache web server (Tomcat 4.0 - Apache using AJP connector)

2002-05-21 Thread Paresh Deshpande
the flag is set to true by default and my server.xml configuration did not include this attribute, all the pages(static as well as dynamic) were served by tomcat in the tomcat-apache service mode. thanks Paresh Deshpande ( Hey Scott, once again thanks for your workaround suggestion. ) -Original

unable to serve static pages through apache web server (Tomcat 4.0 - Apache using AJP connector)

2002-05-20 Thread Paresh Deshpande
Hello, I have installed Apache web server (Apache/1.3.24 (Win32) mod_jk/1.1.0) with Tomcat as servlet engine (Apache Tomcat/4.0.3) to serve my application. I am using AJP connector to integrate tomcat with apache installation. Now regarding my problem, all my requests for static

RE: unable to serve static pages through apache web server (Tomcat 4. 0 - Apache using AJP connector)

2002-05-20 Thread Paresh Deshpande
, although it might be possible if you get that data from the error page and use a RequestDispacher to pass it to the correct page. ~Scott Paresh Deshpande wrote: Hello, I have installed Apache web server (Apache/1.3.24 (Win32) mod_jk/1.1.0) with Tomcat as servlet engine (Apache Tomcat/4.0.3

RE: unable to serve static pages through apache web server (Tomcat 4. 0 - Apache using AJP connector)

2002-05-20 Thread Paresh Deshpande
a RequestDispacher to pass it to the correct page. ~Scott Paresh Deshpande wrote: Hello, I have installed Apache web server (Apache/1.3.24 (Win32) mod_jk/1.1.0) with Tomcat as servlet engine (Apache Tomcat/4.0.3) to serve my application. I am using AJP connector to integrate tomcat with apache

RE: problem in loading jar files in WEB-INF\lib directory

2001-08-18 Thread Paresh Deshpande
Hey Rob, thanks for the help. Let me figure out how this works for me. greetings Paresh -Original Message- From: Rob S. [mailto:[EMAIL PROTECTED]] Sent: Friday, August 17, 2001 8:07 PM To: [EMAIL PROTECTED] Subject: Re: problem in loading jar files in WEB-INF\lib directory Ugh,

RE: problem in loading jar files in WEB-INF\lib directory

2001-08-18 Thread Paresh Deshpande
files in WEB-INF\lib directory On Fri, 17 Aug 2001, Paresh Deshpande wrote: Hi Rob, thanks for your reply, Rob. I was waiting for the reply for quite a while :)). It is not specifically mentioned in the docs how the class files in WEB-INF\classes are loaded. Neither is it mentioned

RE: problem in loading jar files in WEB-INF\lib directory

2001-08-17 Thread Paresh Deshpande
Sounds like you could learn a lot from reading the Application Developer's Guide that comes packaged with tomcat in the /doc directory. It's also available online at: http://jakarta.apache.org/tomcat/index.html - r -Original Message- From: Paresh Deshpande [mailto:[EMAIL PROTECTED

RE: problem in loading jar files in WEB-INF\lib directory

2001-08-17 Thread Paresh Deshpande
-Original Message- From: Paresh Deshpande [mailto:[EMAIL PROTECTED]] Sent: Friday, August 17, 2001 1:14 AM To: [EMAIL PROTECTED] Subject: problem in loading jar files in WEB-INF\lib directory Hi, I am trying to run my application on APACHE with TOMCAT servlet engine. I have

RE: problem in loading jar files in WEB-INF\lib directory

2001-08-17 Thread Paresh Deshpande
hey rob, my servlet calls a class which tries to instantiate JNDI's InitialContext by passing env Hashtable... env.put(Context.INITIAL_CONTEXT_FACTORY, com.sun.jndi.fscontext.RefFSContextFactory); initialContext = new InitialContext(env); the class

problem in loading jar files in WEB-INF\lib directory

2001-08-16 Thread Paresh Deshpande
Hi, I am trying to run my application on APACHE with TOMCAT servlet engine. I have placed the jar files required for web application in myapp\WEB-INF\lib folder. Will tomcat automatically pick up this jar file? Or do I need to add them manually in tomcat.bat? Further, do I need to add