ProxyDirContext.lookupCache Error on a new Tomcat install

2006-12-05 Thread Assaf Flatto
Hello I've installed a new server , with the tomcat that comes with the mandrake 2007 RPM's . (tomcat 5.5.17) when i load up my application and access the website i get multiple errors like the one below , At first i thought it was due to the fact that some of images are located on the

Re: EL not evaluatin in TC 5.5

2006-12-05 Thread David Smith
Did you declare your web.xml to use the servlet spec 2.4 schema? AFAIK, that's required to make EL expressions work. --David Roberto Marra wrote: I usually put under WEB-INF/tld/ all the JSP tag library and under WEB-INF/lib all the *.jar file... even jstl.jar I never have had problem

How to password protect a directory?

2006-12-05 Thread Mikolaj Rydzewski
Hi, I have several directories mapped to my Tomcat instance with context.xml like this: ?xml version=1.0 encoding=ISO-8859-2? Context cookies=false docBase=/home/stats/some_dir path=/stats / There're only html files there. No JSP, servlets, and of course no WEB-INF. How

Re: EL not evaluatin in TC 5.5

2006-12-05 Thread Roberto Marra
In my web.xml I don't declare to use the servlet spec 2.4 schema David Smith ha scritto: Did you declare your web.xml to use the servlet spec 2.4 schema? AFAIK, that's required to make EL expressions work. --David -- IT Manager MONTEFIORE -- Centralino: +41916104455 Diretto :

Re: How to password protect a directory?

2006-12-05 Thread David Delbecq
Mikolaj Rydzewski a écrit : Hi, I have several directories mapped to my Tomcat instance with context.xml like this: ?xml version=1.0 encoding=ISO-8859-2? Context cookies=false docBase=/home/stats/some_dir path=/stats / There're only html files there. No JSP,

Context problem in tomcat 5.5

2006-12-05 Thread Rizwan Ahmad
Hi, I am new to tomcat. I just installed tomcat 5.5 on my machine having windows XP platform. I am trying to deploy a war file naming samena.war where samena is the context name. When I startup tomcat it automatically unpacks war file but when I try to access my website using

Re: EL not evaluatin in TC 5.5

2006-12-05 Thread David Smith
Roberto Marra wrote: In my web.xml I don't declare to use the servlet spec 2.4 schema David Smith ha scritto: Did you declare your web.xml to use the servlet spec 2.4 schema? AFAIK, that's required to make EL expressions work. --David Try replacing the top of your web.xml with this and

Re: virtual mapping on Tomcat 5.5

2006-12-05 Thread Raju Balugu
Hi In Tomcat 5.5.17 webapps itself deployed hence put the RMS under webapps and change the docbase Context path=/images docBase=webapps/RMS debug=0 reloadable=true/Context Regards Raju On 11/30/06, olivier nouguier [EMAIL PROTECTED] wrote: hi, A: put apache (httpd) in front of tomcat ==

Re: Why can the JSESSIONID name not be changed?

2006-12-05 Thread brycenesbitt
Stefan Bethke wrote: Hi, I hope this is the right list to ask; if not, please direct me to a better place... We're currently integrating a couple of web sites under a single domain. Some of the sites run on separate Tomcats, others use PHP, Perl or a number of proprietary

RE: EL not evaluatin in TC 5.5

2006-12-05 Thread Michael Hencin
I modified the web.xml with this, entry, and moved my tld file to a WEB-INF/tld. Thanks a lot! This problem was costing me lots in coffee funds and late nights! Mike -Original Message- From: Roberto Marra [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 05, 2006 4:46 AM To: Tomcat

RE: Context problem in tomcat 5.5

2006-12-05 Thread Caldarale, Charles R
From: Rizwan Ahmad [mailto:[EMAIL PROTECTED] Subject: Context problem in tomcat 5.5 When I startup tomcat it automatically unpacks war file but when I try to access my website using http://localhost:8080/samena/ it says The requested resource (/samena/) is not available. Your web.xml

Re: Context problem in tomcat 5.5

2006-12-05 Thread Martin Gainty
servlet-mapping in web.xml? an example for cgi located at http://tomcat.apache.org/tomcat-5.0-doc/RELEASE-NOTES.txt HTH M- This e-mail communication and any attachments may contain confidential and privileged information for the use of the designated recipients named above. If you are not the

Re: How to password protect a directory?

2006-12-05 Thread Rashmi Rubdi
With Tomcat you can also use a URL Rewrite Filter to transparently (HTTP 200) redirect requests to the protected folder to a HTTP 403 status or a password required page. But I can't gurantee if URL Rewriting makes the directory fully secure. - Original Message From: David Delbecq

MemoryRealm problems!

2006-12-05 Thread Omar Adobati
Here is the context.xml about the webapplciation I'm trying to develop. I put it into the $MY_APP/META-INF directory, but it seems to be ignored. Neither the user database and the log seems to be used! == Context Realm className=org.apache.catalina.realm.MemoryRealm

RE: Context problem in tomcat 5.5

2006-12-05 Thread Larry Isaacs
The URL http://localhost:8080/samena/, in the absence of a welcome file such as index.jsp, will request a directory listing. However, in Tomcat 5.5, directory listings are disabled by default, which will result in the error you see. I would guess that you either need to enable directory listings

Re: Context problem in tomcat 5.5

2006-12-05 Thread David Smith
An even better resource for servlet mapping is the servlet spec. It can be downloaded here: http://jcp.org/aboutJava/communityprocess/final/jsr154/index.html SRV.11 describes mapping requests to servlets and SRV.13.4 describes elements of a web.xml file. --David Martin Gainty wrote:

Re: Why can the JSESSIONID name not be changed?

2006-12-05 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bryce, brycenesbitt wrote: Stefan Bethke wrote: Hi, We're currently integrating a couple of web sites under a single domain. Some of the sites run on separate Tomcats, others use PHP, Perl or a number of proprietary systems. We believe

Re: How to password protect a directory?

2006-12-05 Thread Mikolaj Rydzewski
Rashmi Rubdi wrote: With Tomcat you can also use a URL Rewrite Filter to transparently (HTTP 200) redirect requests to the protected folder to a HTTP 403 status or a password required page. But it would force me to write some code ;-) I've added another ProxyPass rule in apache and created

tomcat w/o commercial crap

2006-12-05 Thread Enrico Weigelt
Hi folks, is there any chance to get tomcat working w/o sun's commercial crap ? I'm working on gentoo and can't tomcat it w/o going to the sun shop :(( cu -- - Enrico Weigelt== metux IT service phone: +49

Re: How to password protect a directory?

2006-12-05 Thread Rashmi Rubdi
Ok, cool. The solution suggested is for those who don't have Apache HTTP server. But since you have it, it's much easier and secure to use the HTTP server. - Original Message From: Mikolaj Rydzewski [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Tuesday,

Re: tomcat w/o commercial crap

2006-12-05 Thread EDMOND KEMOKAI
tomcat is from www.apache.org, I think sun donated it a while back. You need java to run tomcat, java is from sun but I don't see what problem that would pose. Alternately you could use GNU Java. On 12/5/06, Enrico Weigelt [EMAIL PROTECTED] wrote: Hi folks, is there any chance to get tomcat

Re: tomcat w/o commercial crap

2006-12-05 Thread David Smith
?? Sun's Commercial Crap ?? What about http://tomcat.apache.org? --David Enrico Weigelt wrote: Hi folks, is there any chance to get tomcat working w/o sun's commercial crap ? I'm working on gentoo and can't tomcat it w/o going to the sun shop :(( cu

Re: tomcat w/o commercial crap

2006-12-05 Thread Andrew Miehs
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Is this a troll? You will need some copy of Java to use Tomcat - either the JVM from Sun, IBM or Blackdown (which I think is based on Sun's) As for ?! commercial = crap ?! Glad to see you are using a free non- commercial machine to write these

RE: MemoryRealm problems!

2006-12-05 Thread Caldarale, Charles R
From: Omar Adobati [mailto:[EMAIL PROTECTED] Subject: MemoryRealm problems! I put it into the $MY_APP/META-INF directory, but it seems to be ignored. Does the file $(catalina.home)/conf/[engine]/[host]/Apps.xml exist? If so, it will override the $MY_APP/META-INF/context.xml file.

RE: tomcat w/o commercial crap

2006-12-05 Thread Michael Hencin
Monica... -Original Message- From: Andrew Miehs [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 05, 2006 10:29 AM To: Tomcat Users List Subject: Re: tomcat w/o commercial crap -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Is this a troll? You will need some copy of Java to use

RE: tomcat w/o commercial crap

2006-12-05 Thread Nelson, Tracy
Not sure what you mean by 'commercial crap', Java is OSS now, and Tomcat always has been. You might want to check out the Gentoo Java project: http://www.gentoo.org/proj/en/java/. Especially the Gentoo Tomcat Guide: http://www.gentoo.org/proj/en/java/tomcat-guide.xml. --- Tracy Nelson / Nelnet

Re: tomcat w/o commercial crap

2006-12-05 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Enrico, Enrico Weigelt wrote: Hi folks, is there any chance to get tomcat working w/o sun's commercial crap ? ??! I'm working on gentoo and can't tomcat it w/o going to the sun shop :(( IIRC, when Gentoo upgraded to JDK 1.5.0, they removed

Redirect in Tomcat 5.5 Not Working

2006-12-05 Thread Latesha Williams
We are running Tomcat 5.5.20 as a standalone web server for a third-party's web and servlet applications. On this server (Linux), Iptables is redirecting ports 80 to 8080 and 443 to 8443 (to run Tomcat as regular user.) In addition, we are interested in configuring Tomcat so that requests to port

Re: tomcat w/o commercial crap

2006-12-05 Thread Enrico Weigelt
* Nelson, Tracy [EMAIL PROTECTED] wrote: Not sure what you mean by 'commercial crap', Java is OSS now, and Tomcat always has been. maybe I missed something, but tomcat requires several packages, ie. sun-jimi, which are NOT free (and cannot be downloaded directly). cu --

Re: tomcat w/o commercial crap

2006-12-05 Thread Enrico Weigelt
* Christopher Schultz [EMAIL PROTECTED] wrote: snip IIRC, when Gentoo upgraded to JDK 1.5.0, they removed the requirement that you download Sun's JDK from their website and drop it in your portage package directory. Now, portage can download and install it automatically. true for the jdk,

RE: tomcat w/o commercial crap

2006-12-05 Thread Caldarale, Charles R
From: Enrico Weigelt [mailto:[EMAIL PROTECTED] Subject: Re: tomcat w/o commercial crap maybe I missed something, but tomcat requires several packages, ie. sun-jimi, which are NOT free (and cannot be downloaded directly). I guess you did miss something, since real Tomcat versions require

Re: tomcat w/o commercial crap

2006-12-05 Thread David Smith
In every install I've done, I've only needed the tomcat download from tomcat.apache.org (and a JVM of course). Never needed to get extra stuff direct from Sun's site. Sounds like you are trying to use some third party package install that added dependencies. --David Enrico Weigelt wrote:

Re: tomcat w/o commercial crap

2006-12-05 Thread Andrew Miehs
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Do yourself a favour and do NOT use Tomcat and Java from your linux distribution. Download Tomcat from Apache.org Download Java from http://java.sun.com/javase/downloads/index.jsp Either the JDK, or JRE Install them both in /usr/local ln -s

Re: tomcat w/o commercial crap

2006-12-05 Thread David Kerber
Enrico Weigelt wrote: * Christopher Schultz [EMAIL PROTECTED] wrote: snip IIRC, when Gentoo upgraded to JDK 1.5.0, they removed the requirement that you download Sun's JDK from their website and drop it in your portage package directory. Now, portage can download and install it

Re: tomcat w/o commercial crap

2006-12-05 Thread Enrico Weigelt
* Caldarale, Charles R [EMAIL PROTECTED] wrote: From: Enrico Weigelt [mailto:[EMAIL PROTECTED] Subject: Re: tomcat w/o commercial crap maybe I missed something, but tomcat requires several packages, ie. sun-jimi, which are NOT free (and cannot be downloaded directly). I guess you

Re: tomcat w/o commercial crap

2006-12-05 Thread Enrico Weigelt
* David Kerber [EMAIL PROTECTED] wrote: snip Nope. I have had tomcat running for a couple of years with nothing but freely-available packages. Of there might be some different functionality you want to use that requires commercial packages, but I haven't run into one yet. on gentoo ?

compiled header filter on tomcat 5.5

2006-12-05 Thread Ian H
Hi all, I've taken the jspbook.jar found on page two of this article: http://www.onjava.com/pub/a/onjava/2004/03/03/filters.html and implement the ResponseHeaderFilter on a test server successfully using the following in web.xml: filter filter-nameResponseHeaderFilter/filter-name

RE: tomcat w/o commercial crap

2006-12-05 Thread Caldarale, Charles R
From: Enrico Weigelt [mailto:[EMAIL PROTECTED] Subject: Re: tomcat w/o commercial crap So how would you suggest an clean tomcat installation on gentoo systems ? Rewrite the ebuilds and kickoff the dependencies ? As others have already suggested, throw away the junk that comes with gentoo,

Re: tomcat w/o commercial crap

2006-12-05 Thread Leon Rosenberg
On 12/5/06, Enrico Weigelt [EMAIL PROTECTED] wrote: * Caldarale, Charles R [EMAIL PROTECTED] wrote: From: Enrico Weigelt [mailto:[EMAIL PROTECTED] Subject: Re: tomcat w/o commercial crap maybe I missed something, but tomcat requires several packages, ie. sun-jimi, which are NOT free

RE: compiled header filter on tomcat 5.5

2006-12-05 Thread Caldarale, Charles R
From: Ian H [mailto:[EMAIL PROTECTED] Subject: compiled header filter on tomcat 5.5 SEVERE: Error filterStart 5/12/2006 09:03:50 org.apache.catalina.core.StandardContext start SEVERE: Context startup failed due to previous errors What else is in the log? (The underlying cause

Re: tomcat w/o commercial crap

2006-12-05 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Enrico, Enrico Weigelt wrote: true for the jdk, but not lots of other sun-* packages required by the tomcat port (or axis), ie. sun-jimi, sun-javamail, ... Aah, I saw that afterward. I use Tomcat on Gentoo, but I don't use portage to install

Re: tomcat w/o commercial crap

2006-12-05 Thread Owen Cumpson
I'll jump in here, I use Gentoo ~x86 (a bit racy, but hey) and Tomcat 5.5.20 installs without any non-free dependencies (that I could see). Looking in the Gentoo forums, a new ebuild for Tomcat had been released on 1st December to overcome a similar issue (maybe even the same as yours). Look

Re: compiled header filter on tomcat 5.5

2006-12-05 Thread Ian H
On 12/5/06, Caldarale, Charles R [EMAIL PROTECTED] wrote: SEVERE: Error filterStart What else is in the log? (The underlying cause usually appears _after_ the above somewhat misleading message.) Hi Chuck, Thank you for your quick reply! The whole stdout.log follows...(I see that for

Re: compiled header filter on tomcat 5.5

2006-12-05 Thread David Smith
I see the prob here -- your code was compiled for java version 1.5 and you are using an older jvm to run tomcat. Match up and build your code on the same java version your server is using. I typically have Netbeans build to 1.4 just to stay on the safe side (plus I'm not using any of the 1.5

RE: compiled header filter on tomcat 5.5

2006-12-05 Thread Caldarale, Charles R
From: Ian H [mailto:[EMAIL PROTECTED] Subject: Re: compiled header filter on tomcat 5.5 This seems to say simply that there's a version incompatibility (with the class version/libraries used to build it) -- is this correct? Correct - your ResponseHeaderFilter class was compiled with a 1.5

Re: compiled header filter on tomcat 5.5

2006-12-05 Thread Ian H
On 12/5/06, David Smith [EMAIL PROTECTED] wrote: I see the prob here -- your code was compiled for java version 1.5 and you are using an older jvm to run tomcat. Match up and build your code on the same java version your server is using. Thanks again for such quick responses! I had thought

Re: tomcat w/o commercial crap

2006-12-05 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Enrico, Enrico Weigelt wrote: * David Kerber [EMAIL PROTECTED] wrote: Nope. I have had tomcat running for a couple of years with nothing but freely-available packages. Of there might be some different functionality you want to use that

RE: tomcat w/o commercial crap

2006-12-05 Thread Nelson, Tracy
| -Original Message- | From: Christopher Schultz [mailto:[EMAIL PROTECTED] | Sent: Tuesday, 05 December, 2006 11:13 | | The blackdown JDK is one of the oldest non-Sun JDKs available for Linux. | I believe that it is completely open source. Someone mentioned that | blackdown was based on

Re: tomcat w/o commercial crap

2006-12-05 Thread Enrico Weigelt
* Owen Cumpson [EMAIL PROTECTED] wrote: I'll jump in here, I use Gentoo ~x86 (a bit racy, but hey) and Tomcat 5.5.20 installs without any non-free dependencies (that I could see). Looking in the Gentoo forums, a new ebuild for Tomcat had been released on 1st December to overcome a

Re: MemoryRealm problems!

2006-12-05 Thread Omar Adobati
On 12/5/06, Caldarale, Charles R [EMAIL PROTECTED] wrote: From: Omar Adobati [mailto:[EMAIL PROTECTED] Subject: MemoryRealm problems! I put it into the $MY_APP/META-INF directory, but it seems to be ignored. Does the file $(catalina.home)/conf/[engine]/[host]/Apps.xml exist? If so, it

Re: tomcat w/o commercial crap

2006-12-05 Thread Andrew Miehs
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 This however is a Gentoo packaging problem and not a user problem. If you want to get tomcat working as quickly as possible - download it directly from apache.org and IGNORE the gentoo packages. If you want it to work properly as a gentoo

Re: tomcat w/o commercial crap

2006-12-05 Thread Enrico Weigelt
* Christopher Schultz [EMAIL PROTECTED] wrote: snip Just in case it's not clear, Enrico is asking about Tomcat on Gentoo specifically, and it looks like he'd prefer to use the package manager which is called portage. ACK. I've now spent the second day with trying to get it running. Seems

Re: tomcat w/o commercial crap

2006-12-05 Thread Owen Cumpson
Agreed. Ultimately a download/install gives you the most control and without more info I would say the same. It very much depends on your set-up, which versions of Java Tomcat that you wish to use, is it released or testing code?, etc. But still, installing Tomcat on Gentoo ~x86 (testing in

RE: Webapp with Adminstrative Console

2006-12-05 Thread Caldarale, Charles R
From: chuanjiang lo [mailto:[EMAIL PROTECTED] Subject: Re: Webapp with Adminstrative Console Is there any articles i can look at to implement the servlet watch for changes to the .ini file? You can set a WatchedResource tag inside the Context element for your webapp; changing the target of

Re: compiled header filter on tomcat 5.5

2006-12-05 Thread Ian H
Charles, David, thank you both very much! Bingo, compiled, and working :) - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Webapp with Adminstrative Console

2006-12-05 Thread chuanjiang lo
On 12/6/06, Caldarale, Charles R [EMAIL PROTECTED] wrote: Rather than restarting Tomcat, why don't you have the servlet watch for changes to the .ini file and reload it as needed? Seems a bit of overkill to take the whole server down for just that. You could also just redeploy the app when

Re: tomcat w/o commercial crap

2006-12-05 Thread Leon Rosenberg
On 12/5/06, Christopher Schultz [EMAIL PROTECTED] wrote: Apparently, very few responders realized what you were asking. Just in case it's not clear, Enrico is asking about Tomcat on Gentoo specifically, and it looks like he'd prefer to use the package manager which is called portage. - -chris

Webapp with Adminstrative Console

2006-12-05 Thread chuanjiang lo
I am having a web application that have some config files(.ini) that contains some settings so that during runtime the servlet would take the settings from the config file and perform some action. Together with the web application, there is an adminstrator console that allows user to change the

Re: tomcat w/o commercial crap

2006-12-05 Thread Jon Miller
Sounds like you might want to switch to Windows. Maybe that's more your speed. Jon - Original Message - From: Enrico Weigelt [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Tuesday, December 05, 2006 12:33 PM Subject: Re: tomcat w/o commercial crap *

RE: Webapp with Adminstrative Console

2006-12-05 Thread Caldarale, Charles R
From: chuanjiang lo [mailto:[EMAIL PROTECTED] Subject: Webapp with Adminstrative Console I realize that if the config file is changed, i would need to restart Tomcat as such my servlet would read in the changed settings. Rather than restarting Tomcat, why don't you have the servlet watch

RE: tomcat w/o commercial crap

2006-12-05 Thread Caldarale, Charles R
From: Jon Miller [mailto:[EMAIL PROTECTED] Subject: Re: tomcat w/o commercial crap Sounds like you might want to switch to Windows. Maybe that's more your speed. Insert knife, twist... - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is

JSP pre-compilation at start-up

2006-12-05 Thread Pierre Goupil
Hello all ! I think that Tomcat pre-compiles its webapps' JSPs the first time they are asked. Or at least, it somehow manages to serve the pages faster once they've been asked a first time. My question : is there a way to do this so-called pre-compilation, not the first time the page is asked

Re: Webapp with Adminstrative Console

2006-12-05 Thread Mikolaj Rydzewski
chuanjiang lo wrote: I am having a web application that have some config files(.ini) that contains some settings so that during runtime the servlet would take the settings from the config file and perform some action. Together with the web application, there is an adminstrator console that

RE: How to create global resources on the fly?

2006-12-05 Thread Tim Lucia
My project's ant build.xml takes a 'master context' file and customizes by build type -- dev, production, qa, etc., by taking a list of datasources (properties) and applying it to the master context using the replace ... task. target name=create-context-descriptor

RE: JSP pre-compilation at start-up

2006-12-05 Thread Nelson, Tracy
The IDEs I've used (Eclipse, NetBeans) usually offer this as part of the packaging step. I don't know if Tomcat can/will do that on deployment. --- Tracy Nelson / Nelnet Business Solutions 402 / 617-9449 | From: Pierre Goupil [mailto:[EMAIL PROTECTED] | Sent: Tuesday, 05 December, 2006 16:01 |

RE: tomcat w/o commercial crap

2006-12-05 Thread Nelson, Tracy
| From: Owen Cumpson [mailto:[EMAIL PROTECTED] | Sent: Tuesday, 05 December, 2006 13:11 | | 1. Download and install yourself | or | 2. Use the Gentoo forums to find out the Gentoo installation is pulling | in those deps. FWIW, the Gentoo Tomcat Guide has a note that says Tomcat 5.x versions

Re: JSP pre-compilation at start-up

2006-12-05 Thread Pierre Goupil
Really ? Eclipse does that ? How do you have it doing so, please tell me ? Regards, Pierre 2006/12/5, Nelson, Tracy [EMAIL PROTECTED]: The IDEs I've used (Eclipse, NetBeans) usually offer this as part of the packaging step. I don't know if Tomcat can/will do that on deployment. ---

Re: tomcat w/o commercial crap

2006-12-05 Thread michael
On Tue, Dec 05, 2006 at 09:06:43PM +0100, Leon Rosenberg wrote: On 12/5/06, Christopher Schultz [EMAIL PROTECTED] wrote: Apparently, very few responders realized what you were asking. Just in case it's not clear, Enrico is asking about Tomcat on Gentoo specifically, and it looks like he'd

RE: JSP pre-compilation at start-up

2006-12-05 Thread Nelson, Tracy
Hmmm, I actually don't use Eclipse any more, so I can't check. It might have been part of the MyEclipse set of tools. There's a WebTools plugin available that looks like it might do it (actually, it's kind of hard to tell *what* it does). Easiest thing to do would just be to set up an Ant

Re: JSP pre-compilation at start-up

2006-12-05 Thread Pierre Goupil
2006/12/6, Nelson, Tracy [EMAIL PROTECTED]: Hmmm, I actually don't use Eclipse any more, so I can't check. It might have been part of the MyEclipse set of tools. There's a WebTools plugin available that looks like it might do it (actually, it's kind of hard to tell *what* it does). Yes, I

Re: JSP pre-compilation at start-up

2006-12-05 Thread Rashmi Rubdi
I would like to add a few things to what Tracy mentioned. You'll need the Jasper ant task. It's very easy to set-up all instructions are here at the bottom of this http://tomcat.apache.org/tomcat-4.1-doc/jasper-howto.html When you use this Ant task, it first creates Java files of all JSPs and

Re: JSP pre-compilation at start-up

2006-12-05 Thread Pierre Goupil
Thank you ! It helps, too ! 2006/12/6, Rashmi Rubdi [EMAIL PROTECTED]: I would like to add a few things to what Tracy mentioned. You'll need the Jasper ant task. It's very easy to set-up all instructions are here at the bottom of this http://tomcat.apache.org/tomcat-4.1-doc/jasper-howto.html

Minimum requirement to run/test the Tomcat Cluster

2006-12-05 Thread JiaDong Huang
Hi, I would like to have a run/test with the Tomcat Cluster. Is that possible to setup the Tomcat Cluster without changing the DNS server, for the DNS Round Robin feature? I am wondering the functionality like load balancing and URL redirect within Tomcat itself might be able to

Re: Redirect in Tomcat 5.5 Not Working

2006-12-05 Thread Bill Barker
Latesha Williams [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] We are running Tomcat 5.5.20 as a standalone web server for a third-party's web and servlet applications. On this server (Linux), Iptables is redirecting ports 80 to 8080 and 443 to 8443 (to run Tomcat as regular

Re: Webapp with Adminstrative Console

2006-12-05 Thread chuanjiang lo
On 12/6/06, Mikolaj Rydzewski [EMAIL PROTECTED] wrote: You could also use JMX to change configuration at runtime. Spring has nice JMX support. Looks like the WatchedResource tag is the easiest solution of all but JMX seems interesting and i can learn something new but is it possible to do

RE: Webapp with Adminstrative Console

2006-12-05 Thread Caldarale, Charles R
From: chuanjiang lo [mailto:[EMAIL PROTECTED] Subject: Re: Webapp with Adminstrative Console Looks like the WatchedResource tag is the easiest solution of all but JMX seems interesting and i can learn something new but is it possible to do without Spring? Yes, Tomcat uses JMX internally

Re: Catching startup errors with jsvc

2006-12-05 Thread Cyber Dog
Anyone? On 10/24/06, Cyber Dog [EMAIL PROTECTED] wrote: I'm running Tomcat 5.5.20 with JSVC on Redhat, and I'm having trouble catching startup errors. Say I have an invalid server.xml. If I run catalina directly, it throws errors and immediately dies, as expected. The problem is when I run

Re: Why can the JSESSIONID name not be changed?

2006-12-05 Thread brycenesbitt
Christopher Schultz-2 wrote: And why only in MSIE? Stefan also needs to understand that these cookies also have paths encoded into them, so that that do not interfere (as long as the paths themselves do not interfere). - -chris MSIE processes the paths differently than Gecko based