Re: Location of backwards compatibility patch

2005-06-21 Thread Matt Galvin
On 6/21/05, Scott, Brian [EMAIL PROTECTED] wrote: Hello friends. I'm curious if anyone can guide me to the Tomcat compatibility patch that will allow me to run Tomcat 5.5 under jdk 142_05. I spent some time on the jakarta site but was unable to locate the file. Thank you in advance. Its not

Re: JAVA_OPTS??

2005-06-07 Thread Matt Galvin
Using JAVA_OPTS, you can pass any options *directly to the Java virtual machine* on which you are running Tomcat. Some of these options are standard, others are VM-specific. If you want to know the details, check the documentation for your particular JVM - if it can be passed an option, you

Re: No such list! s (AM I THE ONLY ONE GETTING THIS SPAM)?

2005-05-17 Thread Matt Galvin
On 5/17/05, Guy Katz [EMAIL PROTECTED] wrote: am i the only one getting this annoying spam from the tomcat lisy? No, I have gotten like 100 of them, it's getting really annoying. Matt - To unsubscribe, e-mail: [EMAIL

Re: context.xml created by Ant not discovered by Tomcat

2005-05-07 Thread Matt Galvin
Here is context.xml... Context path=/xx docBase=xx crossContext=true Resource name=jdbc/xxDb auth=Container type=javax.sql.DataSource/ ResourceParams name=jdbc/xxDb parameternamefactory/namevalueorg.apache.commons.dbcp.BasicDataSourceFactory/value/parameter

Re: Pass parameter to the JVM at startup

2005-05-06 Thread Matt Galvin
How can I tell that the JVM is actually running in server mode? well, not sure if you can. I'd try java.lang.System.getProperties() or something... Yupp... works... Just run my junitreport via ant which also dumps lots of system properties, too: java.vm.name is what you are

Re: Pass parameter to the JVM at startup

2005-05-05 Thread Matt Galvin
Use the JAVA_OPTS variable in catalina.sh or .bat You can also increase the memory settings here, e.g. -server -Xms512m -Xmx1024m or whatever other jvm options you need. I am also trying to do this but it doesn't seem to work, well there is no indication that it did. I also tried setting

Re: context.xml created by Ant not discovered by Tomcat

2005-05-05 Thread Matt Galvin
So, IS there a way to do what I'm trying to do? Yes, there is, I usually put them in: $CATALINA_HOME/conf/Catalina/localhost/myapp.xml Could you post the contents of your context file? Maybe something needs to be tweak possibly. Matt

Re: Help - Alias or Symlink to external(to the context) images directory?

2005-05-04 Thread Matt Galvin
On 5/3/05, Mott Leroy [EMAIL PROTECTED] wrote: http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/context.html - see the allowLinking property. This did the trick :) Thanks Mott!!! As far as how to create the symlink when the app is deployed, not sure beyond running some sort of script

Help - Alias or Symlink to external(to the context) images directory?

2005-05-03 Thread Matt Galvin
Hi All, Does anyone know of a way to set an alias to an external directory that contains images to be displayed on a web page? Maybe explaining what I need to do would help: I have a directory, for example: /tmp/images I have a webapp in: /opt/tomcat/webapps/myapp I need to be able to store