Re: Tomcat 7 and Jakarta Mailer Taglib

2011-07-12 Thread mraible
Konstantin Kolinko wrote: > > 2011/7/12 mraible : >> I'm experiencing a strange issue trying to upgrade to Tomcat 7 on >> raibledesigns.com (Linux 2.4.37.9). When I hit my contact page and try to >> send a message, I get the following stack trace: >> >&

Tomcat 7 and Jakarta Mailer Taglib

2011-07-12 Thread mraible
Hello, I'm experiencing a strange issue trying to upgrade to Tomcat 7 on raibledesigns.com (Linux 2.4.37.9). When I hit my contact page and try to send a message, I get the following stack trace: SEVERE: Servlet.service() for servlet [jsp] in context with path [] threw exception [The absolute ur

How hard would it be to customize Jasper to allow loading JSPs from outside the webapp?

2007-12-19 Thread mraible
I'm working on a project where my company has a custom JSP compiler that they've written and maintained for the last 5 years. It works extremely well for them and has some unique features - like being able to load JSPs from remote locations using Spring's Resources API. In other words, they can lo

Annotations (specifically @PostConstruct) doesn't work in 6.0.14

2007-08-27 Thread mraible
Do I have to do anything special to get Tomcat to recognize @PostConstruct when using 6.0.14 out-of-the-box? I'm trying to get it to work with JSF's RI. Works fine on GlassFish. Environment: OS X, JDK 5 Thanks, Matt -- View this message in context: http://www.nabble.com/Annotations-%28specifi

Re: Mixing Apache's mod_rewrite with mod_proxy

2007-04-18 Thread mraible
I got this working with mod_jk and the following configuration for mod_rewrite: RewriteEngine On # http://domain/?v=1 --> http://domain/app1/?v=1 RewriteCond %{QUERY_STRING} v=([^&]+) RewriteRule ^(.*)$ /app%1/$1 [L] # http://domain --> http://domain/app (default ROOT i

Mixing Apache's mod_rewrite with mod_proxy

2007-04-16 Thread mraible
I want to configure Apache to front a Tomcat installation. I've done this in the past with mod_jk. I've got that setup and working. I also configured mod_proxy and got that working thanks to Graham King's excellent instructions[1]. I don't know which one is a better solution, but I have them both