Re: Parameters and where is log

2004-06-16 Thread Asim Ghosh
hello, this is reply to your second query. U have to use Logger tag in server.xml and in code ServletContext context; context.log(); Asim Ghosh Gabi [EMAIL PROTECTED] wrote: Trying to pass from resin to apache, in resin Coonection='jdbc:bla bla...'/ I've put the equivalent in

RE: Parameters and where is log

2004-06-16 Thread Gabi
I've put the context with his own Logger, I can see all the info of this host here, and in the JavaBean code I've put ServletContext context; context=session.getServletContext(); context.log(test message!!!); But I don't see this message in the log. And, there is a global way I can

RE: Parameters and where is log

2004-06-16 Thread Asim Ghosh
http://jakarta.apache.org/tomcat/faq/misc.html#catalina.out Where does System.out go? How do I rotate catalina.out? Gabi [EMAIL PROTECTED] wrote:I've put the context with his own Logger, I can see all the info of this host here, and in the JavaBean code I've put ServletContext context

RE: Parameters and where is log

2004-06-16 Thread Gabi
That's what I've done, I've created a Context path=... docBase=... Logger className=org.apache.catalina.logger.FileLogger prefix=web_log. suffix=.txt timestamp=true/ I see all the webapp output in web_log file, but not the message from the applicacion, where I use the lines: ServletContext

RE: Parameters and where is log

2004-06-16 Thread Shapira, Yoav
: Parameters and where is log That's what I've done, I've created a Context path=... docBase=... Logger className=org.apache.catalina.logger.FileLogger prefix=web_log. suffix=.txt timestamp=true/ I see all the webapp output in web_log file, but not the message from the applicacion, where I use

RE: Parameters and where is log

2004-06-16 Thread Jérôme Duval
Don't know if this will be of any use to you, but if you are using Tomcat 5.0.24, you can define where System.out and System.err are redirected by Configuring Tomcat under the Logging tab. - To unsubscribe, e-mail: [EMAIL

RE: Parameters and where is log

2004-06-16 Thread Gabi
correctly, (the first part of my email), in resin where context-param tags and I'm translating it to context-param param-name.../param-name param-value.../param-value /context-param I suppose it's the correct way, but my servlet does not work, but it could be another thing so (now) with the logs help

Where is Digester?

2004-06-10 Thread Barnet Wagman
Could some tell me which jar file contains org/apache/commons/digester/Digester and where the path to it gets specified in server.xml (Tomcat 5)? I've added a second service to my server.xml file (to support a second IP address). When Tomcat starts, the second service is throwing

RE: Where is Digester?

2004-06-10 Thread Mike Jackson
commons-digester-1.5.tar.gz --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Barnet Wagman [mailto:[EMAIL PROTECTED] Sent: Thursday, June 10, 2004 10:07 AM To: [EMAIL PROTECTED] Subject: Where is Digester? Could some tell me which jar file contains org

RE: Where is Digester?

2004-06-10 Thread Mike Jackson
:[EMAIL PROTECTED] Sent: Thursday, June 10, 2004 10:07 AM To: [EMAIL PROTECTED] Subject: Where is Digester? Could some tell me which jar file contains org/apache/commons/digester/Digester and where the path to it gets specified in server.xml (Tomcat 5)? I've added a second service to my

Re: Where to put tld files for jarred custom taglibs?

2004-06-07 Thread Ariel Valentin
] From: Keith Hankin [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Where to put tld files for jarred custom taglibs? Date: Mon, 7 Jun 2004 11:17:54 +0530 The manifest doesnt' really have anything in it. Just the default

Re: Where to put tld files for jarred custom taglibs?

2004-06-06 Thread Keith Hankin
Subject: Re: Where to put tld files for jarred custom taglibs? Keith, Have you tried unpacking the jar and see if everything is packed in the correct directory structure and that the Manifest file has the correct info? Mr. Ariel S. Valentin mailto: [EMAIL PROTECTED] From: Keith Hankin

Re: Where to put tld files for jarred custom taglibs?

2004-06-05 Thread Keith Hankin
PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 01, 2004 5:40 PM Subject: Re: Where to put tld files for jarred custom taglibs? STOCKHOLM, Raymond wrote: How did you locate your tld in your JSP ? something like this ? %@ taglib uri=/WEB-INF/tld/form-tags.tld prefix=ftags

Re: Where to put tld files for jarred custom taglibs?

2004-06-05 Thread Ariel Valentin
] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Where to put tld files for jarred custom taglibs? Date: Sat, 5 Jun 2004 17:59:38 +0530 I read the article, did what it said exactly, but it *still* doesn't work. It keeps complaining that it cannot find taglib.tld, but my tld file is not named taglib.tld

Where to put tld files for jarred custom taglibs?

2004-06-01 Thread Keith Hankin
I have created a custom taglib, extending TagSupport. I have packaged the class files into a jar. I have also added the tld file to this jar. I then place this jar file in my war file under WEB-INF/lib. However, no matter where I place the tld file in the jar, it seems that Tomcat is unable

RE: Where to put tld files for jarred custom taglibs?

2004-06-01 Thread STOCKHOLM, Raymond
How did you locate your tld in your JSP ? something like this ? %@ taglib uri=/WEB-INF/tld/form-tags.tld prefix=ftags % -Message d'origine- De : Keith Hankin [mailto:[EMAIL PROTECTED] Envoyé : mardi 1 juin 2004 08:31 À : [EMAIL PROTECTED] Objet : Where to put tld files for jarred custom

Re: Where to put tld files for jarred custom taglibs?

2004-06-01 Thread Keith Hankin
-location /taglib I also try specifying taglib-location as /META-INF/mytags.tld, /WEB-INF/mytags.tld, etc. - Original Message - From: STOCKHOLM, Raymond [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, June 01, 2004 12:09 PM Subject: RE: Where to put tld files

RE: Where to put tld files for jarred custom taglibs?

2004-06-01 Thread STOCKHOLM, Raymond
- De : Keith Hankin [mailto:[EMAIL PROTECTED] Envoyé : mardi 1 juin 2004 09:01 À : Tomcat Users List Objet : Re: Where to put tld files for jarred custom taglibs? I locate it as follows: %@ taglib uri=http://website.com/mypkg/mytags.tld; prefix=mypref % , then in my web.xml have the following

Re: Where to put tld files for jarred custom taglibs?

2004-06-01 Thread Keith Hankin
Where did you put the tld file in your jar file? Did you also put the jar into a war file? - Original Message - From: STOCKHOLM, Raymond [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, June 01, 2004 12:44 PM Subject: RE: Where to put tld files for jarred custom

RE: Where to put tld files for jarred custom taglibs?

2004-06-01 Thread STOCKHOLM, Raymond
] Envoyé : mardi 1 juin 2004 09:19 À : Tomcat Users List Objet : Re: Where to put tld files for jarred custom taglibs? Where did you put the tld file in your jar file? Did you also put the jar into a war file? - Original Message - From: STOCKHOLM, Raymond [EMAIL PROTECTED] To: Tomcat Users

Re: Where to put tld files for jarred custom taglibs?

2004-06-01 Thread Keith Hankin
: RE: Where to put tld files for jarred custom taglibs? I put the tld file in $MYAPPLICATION/WEB-INF/tld/form-tags.tld My application is delivered as a war (which tomcat expands), and contains $MYAPPLICATION/WEB-INF/tld/form-tags.tld (I don't have any other jar, except the war) -Message

Re: Where to put tld files for jarred custom taglibs?

2004-06-01 Thread M.Hockings
STOCKHOLM, Raymond wrote: How did you locate your tld in your JSP ? something like this ? %@ taglib uri=/WEB-INF/tld/form-tags.tld prefix=ftags % -Message d'origine- De : Keith Hankin [mailto:[EMAIL PROTECTED] Envoyé : mardi 1 juin 2004 08:31 À : [EMAIL PROTECTED] Objet : Where to put tld

Re: where to put request.registerRequests=false when using mod_jk (not jk2)

2004-05-27 Thread Emerson Cargnin
of the request.registerRequests=false to put in jk2.properties. I'm using mod_jk, but as I see a similar message, I'll try this too. But... where do I put this conf, as mod_jk does not have a jk.properties file. could be it worker.properties? You put it in $CATALINA_HOME/conf/jk2.properties. This file controls

Re: where to put request.registerRequests=false when using mod_jk (not jk2)

2004-05-27 Thread Emerson Cargnin
java.lang.OutOfMemoryError java.lang.OutOfMemoryError java.lang.OutOfMemoryError ... I've seen a sugestion of the request.registerRequests=false to put in jk2.properties. I'm using mod_jk, but as I see a similar message, I'll try this too. But... where do I put this conf, as mod_jk does not have

where to put request.registerRequests=false when using mod_jk (not jk2)

2004-05-26 Thread Emerson Cargnin
this too. But... where do I put this conf, as mod_jk does not have a jk.properties file. could be it worker.properties? thanks in advance -- Emerson Cargnin Analista de Sistemas Setor de Desenvolvimento de Sistemas - TRE-SC tel : (048) - 251-3700 - Ramal 3181

Re: where to put request.registerRequests=false when using mod_jk (not jk2)

2004-05-26 Thread Emerson Cargnin
, but as I see a similar message, I'll try this too. But... where do I put this conf, as mod_jk does not have a jk.properties file. could be it worker.properties? thanks in advance -- Emerson Cargnin Analista de Sistemas Setor de Desenvolvimento de Sistemas - TRE-SC tel : (048) - 251-3700 - Ramal 3181

Re: where to put request.registerRequests=false when using mod_jk (not jk2)

2004-05-26 Thread Emerson Cargnin
java.lang.OutOfMemoryError java.lang.OutOfMemoryError ... I've seen a sugestion of the request.registerRequests=false to put in jk2.properties. I'm using mod_jk, but as I see a similar message, I'll try this too. But... where do I put this conf, as mod_jk does not have a jk.properties file. could

Re: where to put request.registerRequests=false when using mod_jk (not jk2)

2004-05-26 Thread Emerson Cargnin
try this too. But... where do I put this conf, as mod_jk does not have a jk.properties file. could be it worker.properties? thanks in advance -- Emerson Cargnin Analista de Sistemas Setor de Desenvolvimento de Sistemas - TRE-SC tel : (048) - 251-3700 - Ramal 3181

Re: where to put request.registerRequests=false when using mod_jk (not jk2)

2004-05-26 Thread Bill Barker
to put in jk2.properties. I'm using mod_jk, but as I see a similar message, I'll try this too. But... where do I put this conf, as mod_jk does not have a jk.properties file. could be it worker.properties? You put it in $CATALINA_HOME/conf/jk2.properties. This file controls the settings

Where I can find tomcat 3.2

2004-05-19 Thread Steve Park
I cannot find tomcat 3.2. Can anyone tell if this is still downloadable, and where ? Thanks. Steve This message was sent using IMP, the Internet Messaging Program

RE: Where I can find tomcat 3.2

2004-05-19 Thread Shapira, Yoav
PROTECTED] Sent: Wednesday, May 19, 2004 11:59 AM To: Tomcat Users List Subject: Where I can find tomcat 3.2 I cannot find tomcat 3.2. Can anyone tell if this is still downloadable, and where ? Thanks. Steve This message was sent using

where to define path to workers2.properties

2004-05-06 Thread Stefan Burkard
-directory. can i anywhere define the path to the workers2.properties file? i found some examples for windows where the path is written to the registry, but no example for linux thanks and greetings stefan - To unsubscribe, e

RE: where to define path to workers2.properties

2004-05-06 Thread Yang Xiao
To: [EMAIL PROTECTED] Subject: where to define path to workers2.properties hi tomcat-users i have installed and running apache/tomcat/jk2 on a linux-box. in the meantime i updated apache and because i use a directory with version-number, the path to the apache-rootdir changed. now my mod_jk2

Re: where to define path to workers2.properties

2004-05-06 Thread Jack Lauman
a directory with version-number, the path to the apache-rootdir changed. now my mod_jk2-module searches the workers2.properties configfile still in the old apache-directory. can i anywhere define the path to the workers2.properties file? i found some examples for windows where the path is written

Re: Where to set JAVA_OPTS

2004-04-07 Thread Giorgio Ponza
[EMAIL PROTECTED] ha scritto: Hi, Where do I need to set JAVA_OPTS (Should I edit catalina.bat file?). I am using Win 2k Pro and Tomcat 5. Thank you, Best Regards, Uma Hi usually i put my JAVA_OPTS in catalina.sh (in windows is catalina.bat) like this REM set JAVA_OPTS=-server -Xms128m -Xmx128m

Re: Where to set JAVA_OPTS

2004-04-07 Thread Jon Wingfield
No need to change the script. I normally set an Environment variable in the same place I define JAVA_HOME Go to Control Panel \ System \ Advanced tab \ Environment variables... Well, that's where it is on XP, which i'm currently running. HTH, Jon Giorgio Ponza wrote: [EMAIL PROTECTED] ha

Re: Where to set JAVA_OPTS

2004-04-07 Thread Paul Mansfield
On Wed, 2004-04-07 at 14:43, Jon Wingfield wrote: No need to change the script. I normally set an Environment variable in the same place I define JAVA_HOME Go to Control Panel \ System \ Advanced tab \ Environment variables... Well, that's where it is on XP, which i'm currently running

Re: Where to set JAVA_OPTS

2004-04-07 Thread Giorgio Ponza
Jon Wingfield ha scritto: No need to change the script. I normally set an Environment variable in the same place I define JAVA_HOME Go to Control Panel \ System \ Advanced tab \ Environment variables... Well, that's where it is on XP, which i'm currently running. HTH, Jon I don't think is a good

RE: Where to set JAVA_OPTS

2004-04-07 Thread Shapira, Yoav
Hi, Yup, same here. I don't like to rely on the environment. Yoav Shapira Millennium Research Informatics -Original Message- From: Giorgio Ponza [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 07, 2004 9:56 AM To: Tomcat Users List Subject: Re: Where to set JAVA_OPTS Jon Wingfield

RE: Where to set JAVA_OPTS

2004-04-07 Thread ldrobertson
cc: Subject: RE: Where to set JAVA_OPTS 04/07/2004 09:57

Where to set JAVA_OPTS

2004-04-06 Thread UmamaheswarKalluru
Hi, Where do I need to set JAVA_OPTS (Should I edit catalina.bat file?). I am using Win 2k Pro and Tomcat 5. Thank you, Best Regards, Uma - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

RE: Where is the stratum package?

2004-03-25 Thread Shapira, Yoav
Hi, Stratum is a jakarta turbine (http://jakarta.apache.org/turbine/) package. Yoav Shapira Millennium Research Informatics -Original Message- From: Alex Chen [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 24, 2004 10:15 PM To: Tomcat Users List Subject: Where is the stratum package

Where I can find the apache 2.0.x and tomcat 4.1.2x debian packages ?

2004-03-25 Thread Salvador Santander Gutiérrez
Where I can find the apache 2.0.x and tomcat 4.1.2x debian packages ? Thanks. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Where is the stratum package?

2004-03-25 Thread Alex Chen
: Where is the stratum package? I got the following error message in my tomcat log file. I am using Axis under Tomcat and create a servlet that extends AxisServlet 2004-03-24 18:33:07 StandardContext[/balancer]org.apache.webapp.balancer.BalancerFilter: init(): ruleChain

Where to find mod_jk2 for redhat?

2004-03-24 Thread Andy Grove
Hi, I'm using Apache 2.0.46 and Tomcat 4.1.29 on Red Hat Enterprise Linux and I am looking for the correct mod_jk2.so to use. There are no linux binary releases on the Jakarta site and the library that I use successfully on another redhat server gives me this error when starting Apache:

RE: Where to find mod_jk2 for redhat?

2004-03-24 Thread Dale, Matt
Try this HOWTO on building the connector http://cymulacrum.net/writings/tomcat5/book1.html -Original Message- From: Andy Grove [mailto:[EMAIL PROTECTED] Sent: 24 March 2004 16:01 To: [EMAIL PROTECTED] Subject: Where to find mod_jk2 for redhat? Hi, I'm using Apache 2.0.46 and Tomcat

where to place the context for the default web application

2004-03-24 Thread Angelov, Rossen
Hi, According to the Server Configuration Reference, it is not recommended to place Context elements directly in the server.xml My question is where to place the context element for the default web application and how to name it because the context path in this case is a zero-length string

RE: where to place the context for the default web application

2004-03-24 Thread Shapira, Yoav
:[EMAIL PROTECTED] Sent: Wednesday, March 24, 2004 12:10 PM To: '[EMAIL PROTECTED]' Subject: where to place the context for the default web application Hi, According to the Server Configuration Reference, it is not recommended to place Context elements directly in the server.xml My question is where

RE: where to place the context for the default web application

2004-03-24 Thread Angelov, Rossen
: where to place the context for the default web application Hi, The default web application is simply the one whose path (not docBase) is . You can name it and its context file anything you want, e.g. myapp.xml, and use whatever docBase you want. Yoav Shapira Millennium Research Informatics

Where is the stratum package?

2004-03-24 Thread Alex Chen
I got the following error message in my tomcat log file. I am using Axis under Tomcat and create a servlet that extends AxisServlet 2004-03-24 18:33:07 StandardContext[/balancer]org.apache.webapp.balancer.BalancerFilter: init(): ruleChain: [org.apache.webapp.balancer.RuleChain:

RE: where is setUserPrincipal() ?

2004-03-23 Thread Shapira, Yoav
Millennium Research Informatics -Original Message- From: Robert Hall [mailto:[EMAIL PROTECTED] Sent: Monday, March 22, 2004 8:52 PM To: Tomcat Users List Subject: Re: where is setUserPrincipal() ? In case you haven't already gotten to the bottom of this, here's a perspective; afaik

RE: Image proccessing deployment problem, Give me some Idea's where to look.

2004-03-22 Thread Shapira, Yoav
some Idea's where to look. This is a weird problem, so please excuse me if this is not Tomcat related because I'm not sure where the problem is. Dev. Environment: Tomcat 5.0; IDE: MyEclipse, WinXP Problem: Using Jmagik (ImageMagic) to process image files. Tomcat works fine when I start Tomcat from

where is setUserPrincipal() ?

2004-03-22 Thread Bob Langford
I've been looking at the various methods of doing access control, and many of the messages I've seen (on this list and elsewhere) mention doing something like: hrequest.setUserPrincipal( new MyPrincipal(username) ); so that other code can call getUserPrincipal(), etc. But there is no

Re: where is setUserPrincipal() ?

2004-03-22 Thread Robert Hall
In case you haven't already gotten to the bottom of this, here's a perspective; afaik, HttpRequest.setUserPrincipal() is implemented by the container (ie - Tomcat). From the docs: public void *setUserPrincipal*(java.security.Principal principal) Set the Principal who has been

Image proccessing deployment problem, Give me some Idea's where to look.

2004-03-20 Thread Tom K
This is a weird problem, so please excuse me if this is not Tomcat related because Im not sure where the problem is. Dev. Environment: Tomcat 5.0; IDE: MyEclipse, WinXP Problem: Using Jmagik (ImageMagic) to process image files. Tomcat works fine when I start Tomcat from the startup.bat

where to find mod_jk2 for linux?

2004-03-15 Thread Márcio Roberto
Hello, I cant find the jk2 connector for Linux. I am running tomcat 4.1.30 and Apache 2.0.48. In the binaries page of mod_jk2 there are only directories for solaris and win32. Anyone knows where I can find it Thanks

RE: where to find mod_jk2 for linux?

2004-03-15 Thread Randall Svancara
You can download the source and build it. It is pretty easy to do. http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/jk2/vhosthowto.html -Original Message- From: Márcio Roberto [mailto:[EMAIL PROTECTED] Sent: Monday, March 15, 2004 12:25 PM To: [EMAIL PROTECTED] Subject: where

where to place tag libs

2004-03-13 Thread akki
hi all, i have got a problem i have got a libraries of tag lib which is used by developers for their application.he/she has to add the tag libraries in his/her own wen/inf/tlds. Is there any common dir where all libraries can be placed and used

JAAS: Where does role information go in a Subject?

2004-03-12 Thread Alan Weissman
I'm implementing a JAAS login mechanism in my app, not as a Realm but via Struts Action classes. In my loginModule, I am creating the Subject with principals and credentials and want to store role information. Where does Tomcat expect a list of roles to be in the Subject? I Haven't been

Re: JAAS: Where does role information go in a Subject?

2004-03-12 Thread Adam Hardy
On 03/12/2004 06:44 PM Alan Weissman wrote: I'm implementing a JAAS login mechanism in my app, not as a Realm but via Struts Action classes. In my loginModule, I am creating the Subject with principals and credentials and want to store role information. Where does Tomcat expect a list of roles

RE: JAAS: Where does role information go in a Subject?

2004-03-12 Thread Alan Weissman
control over what happens at login? -Original Message- From: Adam Hardy [mailto:[EMAIL PROTECTED] Sent: Friday, March 12, 2004 1:48 PM To: Tomcat Users List Subject: Re: JAAS: Where does role information go in a Subject? On 03/12/2004 06:44 PM Alan Weissman wrote: I'm implementing

Re: JAAS: Where does role information go in a Subject?

2004-03-12 Thread Adam Hardy
On 03/12/2004 08:02 PM Alan Weissman wrote: Hm! Thanks Adam - I guess that makes sense! Ok, so my two requirements for my authentication are 1) that I can load custom information into the session object and 2) that I support isUserInRole(). Realm authentication should take care of #2, but what

where to place tag libs

2004-03-12 Thread akki
hi all, i have got a problem i have got a libraries of tag lib which is used by developers for their apapplication.he/she has to add the tag libraries in his/her own wen/inf/tlds. Is there any common dir where all libraries can be placed and used. thanks aKhilesh ITX HWR BHEL

Where does Tomcat remember types of EL variables?

2004-03-11 Thread Juergen Weber
Where does Tomcat remember types of EL variables? If I use an EL variable image like ${index.selected} Tomcat 5 generates code like: image = (de.jwi.jgallery.Image) pageContext.findAttribute(image); When I renamed the class name of image, Tomcat would still generate code to access the old

Where does Tomcat remember types of EL variables?

2004-03-11 Thread Juergen Weber
I found the problem, the classname was used as String parameter in the constructor for a TagExtraInfo. Should always use Myclass.class.getClass().getName() instead of String class names. Sorry for bothering you, Juergen Where does Tomcat remember types of EL variables? If I use an EL

RE: Where does Tomcat remember types of EL variables?

2004-03-11 Thread Shapira, Yoav
as you did above. Then it becomes valuable searchable archive material. Thanks, Yoav Shapira Juergen Where does Tomcat remember types of EL variables? If I use an EL variable image like ${index.selected} Tomcat 5 generates code like: image = (de.jwi.jgallery.Image) pageContext.findAttribute

Suggestion on where to put mysql driver

2004-03-05 Thread Simone - Dev
hello all, I'm installing a new server and I'd like know where should I put the mysql jdbc driver. In all my other server I installed them in the $JAVA_HOME/jre/lib/ext But I suppose this is not the best position for it. Where do u suggest to put it? Common Shared in each webapp WEB-INF/lib

Re: Suggestion on where to put mysql driver

2004-03-05 Thread Alex
, 5 Mar 2004 17:32:47 +0100 From: Simone - Dev [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: Suggestion on where to put mysql driver hello all, I'm installing a new server and I'd like know where should I put the mysql jdbc

RE: Suggestion on where to put mysql driver

2004-03-05 Thread Wilson, Allen
List' Subject: Suggestion on where to put mysql driver hello all, I'm installing a new server and I'd like know where should I put the mysql jdbc driver. In all my other server I installed them in the $JAVA_HOME/jre/lib/ext But I suppose this is not the best position for it. Where do u suggest

R: Suggestion on where to put mysql driver

2004-03-05 Thread Simone - Dev
Users List Oggetto: Re: Suggestion on where to put mysql driver http://jakarta.apache.org/tomcat/tomcat-5.0-doc/jndi-datasourc e-examples-howto.html Depends on how you want it exposed and what you are doing with it. There's a plethora of documentation online. common/lib

Re: Suggestion on where to put mysql driver

2004-03-05 Thread BAO RuiXian
Simone - Dev wrote: hello all, I'm installing a new server and I'd like know where should I put the mysql jdbc driver. In all my other server I installed them in the $JAVA_HOME/jre/lib/ext But I suppose this is not the best position for it. It should be in common/lib. Best Bao Where do u

Where to store log files from packed WAR file apps

2004-03-03 Thread Harry Mantheakis
Hello Now that I've got my Ant build/deploy scripts working nicely, I'm tempted to start running my applications out of packed WAR files. I cannot figure out if there is a *portable* way to specify paths for where my Log4J log files should be saved. I assume I could use the 'catalina.home

RE: Where to store log files from packed WAR file apps

2004-03-03 Thread Yiannis Mavroukakis
: 03 March 2004 09:34 To: Tomcat Users List Subject: Where to store log files from packed WAR file apps Hello Now that I've got my Ant build/deploy scripts working nicely, I'm tempted to start running my applications out of packed WAR files. I cannot figure out if there is a *portable* way

RE: Where to store log files from packed WAR file apps

2004-03-03 Thread Shapira, Yoav
Hi, Might be wrong on this but why not setup environment variables and reflect those in ant? That way you should be portable, providing those env vars exist. BTW, take off the tomcat greeting page from your machine ;) That's one possible solution. Another is to setup a build.properties file

Re: Where to store log files from packed WAR file apps

2004-03-03 Thread Jacob Kjome
You should never log to within the directory structure of your webapp if you want your app to be portable. Provide configuration in web.xml as to where you want the log file to go which an admin can override via proprietary configuration. For instance, in Tomcat... Context ... Parameter

Re: Where to store log files from packed WAR file apps

2004-03-03 Thread Harry Mantheakis
Thanks to everyone for the replies to my question! Lots there for me to look into - JNDI, Alpha_2, and Chainsaw. Phew! Sorry, for *my* slow response: my ISP has dropped all my mail today, of all days - so I went online to get your answers. Regards Harry Mantheakis London, UK

Re: Where to store log files from packed WAR file apps

2004-03-03 Thread Harry Mantheakis
Thanks to everyone for the replies to my question! Lots there for me to look into - JNDI, Alpha_2, and Chainsaw. Phew! Sorry, for *my* slow response: my ISP has dropped all my mail today, of all days - so I went online to get your answers. Regards Harry Mantheakis London, UK

Where to get binaries for JK2 connector for Linux

2004-02-29 Thread Martas
Where can I download from Linux binaries for JK2 connector, from the jakarta.apache.org site, I found just JK2 binaries for Win32 and Solaris. Thanks a lot for advise, M. == REKLAMA Java Desktop System predstavuje prvu pouzitelnu alternativu voci

Re: Where to get binaries for JK2 connector for Linux

2004-02-29 Thread pavan . k
u can get them at http://johnturner.com Pavan Kumar Tata Consultancy Services Mailto: [EMAIL PROTECTED] Website: http://www.tcs.comDISCLAIMER: The information contained in this message is intended only and solely for the addressed individual or entity indicated in this message and for the

Re: Run Applet on Tomcat 5.0 -- Where to put the plugin class files?

2004-02-26 Thread Christopher Schultz
is trying to load your applet, I assume that the page is in the proper place. 2. I use IE to browse http://localhost/PluginApplet.jsp Result: IE failed in initializing PluginApplet. Where should I put the following 4 class files? DrawingPanel.class ,PluginApplet.class, TextPanel.class

Run Applet on Tomcat 5.0.16 -- Where should I to put class files?

2004-02-26 Thread Henry Lai
Hi, I still get applet not initialized error after I using the archive=http://localhost/PluginApplet.jar; tag in jsp:plugin. Do I have to setup classpath environment variable on my Windows system? What should I put in it? Henry

Re: Run Applet on Tomcat 5.0.16 -- Where should I to put class files?

2004-02-26 Thread Christopher Schultz
Henry, I still get applet not initialized error after I using the archive=http://localhost/PluginApplet.jar; tag in jsp:plugin. What is the actual error? IE should provide a more descriptive error message when the pplet does not load. Try double-clicking on any strange-looking icons in IE's

Re: Where is the source code that processes the server.xml file?

2004-02-22 Thread Bill Barker
-tomcat-5.0/ http://jakarta.apache.org/site/cvsindex.html -Tim Adrian Beech wrote: G'day all, Can someone please tell me where I might find the Java code in the Tomcat 5.0 source tree which is responsible for processing the server.xml file? I'm particularly looking for the code

Where is the source code that processes the server.xml file?

2004-02-21 Thread Adrian Beech
G'day all, Can someone please tell me where I might find the Java code in the Tomcat 5.0 source tree which is responsible for processing the server.xml file? I'm particularly looking for the code that is employed to handle the resource ... elements in the server.xml file. I would greatly

Re: Where is the source code that processes the server.xml file?

2004-02-21 Thread Tim Funk
http://cvs.apache.org/viewcvs.cgi/jakarta-tomcat-5.0/ http://jakarta.apache.org/site/cvsindex.html -Tim Adrian Beech wrote: G'day all, Can someone please tell me where I might find the Java code in the Tomcat 5.0 source tree which is responsible for processing the server.xml file? I'm

where can I find reason for this exception message from tomcat?

2004-02-18 Thread tomcat_user
Hi, All, I have installed tomcat 4.1.24 on windows 2000 server and hardware is compaq. And jdk1.3.1_08 has installed. My web application deployed on the ROOT context of this tomcat and use own connection pool for MS SQL Server 2000. The jdbc driver for MS SQL Server2000 are msbase.jar,

RE: Best practice question: where to place project libraries

2004-02-12 Thread Shapira, Yoav
Howdy, Yes, there's an excellent way to do this: documentation. End of story That is not the end of story, of course, or else you wouldn't support META-INF/context.xml. I personally wish we didn't support it, in fact. I think it's caused much more confusion than it's worth, and something

Re: Best practice question: where to place project libraries

2004-02-11 Thread John Holman
Matt Raible wrote: -Original Message- From: Josh Rehman [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 5:49 PM Thanks. You bring up an interesting aspect of container configuration: database drivers. It would be interesting to extend the META-INF/context.xml tomcat

Re: Re: Best practice question: where to place project libraries

2004-02-11 Thread correo
Ya hemos recibido su solicitud de correo en breve le enviaremos su nombre de usuario y contreseña. Gracias por confiar en nosotros - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Re: Re: Best practice question: where to place project libraries

2004-02-11 Thread correo
Ya hemos recibido su solicitud de correo en breve le enviaremos su nombre de usuario y contreseña. Gracias por confiar en nosotros - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Re: Re: Re: Best practice question: where to place project libraries

2004-02-11 Thread correo
Ya hemos recibido su solicitud de correo en breve le enviaremos su nombre de usuario y contreseña. Gracias por confiar en nosotros - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Re: Re: Re: Re: Best practice question: where to place project libraries

2004-02-11 Thread correo
Ya hemos recibido su solicitud de correo en breve le enviaremos su nombre de usuario y contreseña. Gracias por confiar en nosotros - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Re: Re: Re: Re: Re: Best practice question: where to place project libraries

2004-02-11 Thread correo
Ya hemos recibido su solicitud de correo en breve le enviaremos su nombre de usuario y contreseña. Gracias por confiar en nosotros - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Re: Re: Re: Re: Re: Re: Best practice question: where to place project libraries

2004-02-11 Thread correo
Ya hemos recibido su solicitud de correo en breve le enviaremos su nombre de usuario y contreseña. Gracias por confiar en nosotros - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Re: Re: Re: Re: Re: Re: Re: Best practice question: where to place project libraries

2004-02-11 Thread correo
Ya hemos recibido su solicitud de correo en breve le enviaremos su nombre de usuario y contreseña. Gracias por confiar en nosotros - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Re: Re: Re: Re: Re: Re: Re: Re: Best practice question: where to place project libraries

2004-02-11 Thread correo
Ya hemos recibido su solicitud de correo en breve le enviaremos su nombre de usuario y contreseña. Gracias por confiar en nosotros - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Best practice question: where to place project libraries

2004-02-11 Thread Shapira, Yoav
, as most containers (including tomcat) will barf. Yoav Shapira Millennium ChemInformatics -Original Message- From: Josh Rehman [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 7:17 PM To: Tomcat Users List Subject: Best practice question: where to place project libraries I

Re: Best practice question: where to place project libraries

2004-02-11 Thread Justin Ruthenbeck
At 07:40 PM 2/10/2004, you wrote: Justin Ruthenbeck wrote: I haven't used the META-INF/context.xml convention, so I'm not too familiar with it. Conceptually, it's questionable whether a webapp should be able to modify container configuration ... even if it's just configuration for that one

Re: Best practice question: where to place project libraries

2004-02-11 Thread Oliver Geisser
Hi Josh Rehman wrote: Justin Ruthenbeck wrote: As a general rule, strive to keep your webapp self-contained and autonomous with only J2EE-standard dependencies (things like JNDI objects that are configurable in every container). Unless there's a reason not to (JDBC drivers is one common

Re: Best practice question: where to place project libraries

2004-02-11 Thread Josh Rehman
Justin Ruthenbeck wrote: Although I haven't personally ever needed functionality like this, there's no argument it'd be useful in some situations. Wanna implement it for everyone? ;) Like John Holman mentioned, however, there will be (practically insurmountable?) problems making the Tomcat

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