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

Re: Tomcat 7 and Jakarta Mailer Taglib

2011-07-12 Thread mraible
Konstantin Kolinko wrote: 2011/7/12 mraible m...@raibledesigns.com: 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

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

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:

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 in