RE: How can JSPs be part of an integrated component?

2006-12-30 Thread Caldarale, Charles R
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Subject: Re: How can JSPs be part of an integrated component? Sure, that works if you're banking on Tomcat as your deployment target, but the classes that you've compiled and hardwired (there many lines of hardwiring in the admin web.xml

Re: How can JSPs be part of an integrated component?

2006-12-30 Thread Lee Crawford
PROTECTED] Subject: Re: How can JSPs be part of an integrated component? Sure, that works if you're banking on Tomcat as your deployment target, but the classes that you've compiled and hardwired (there many lines of hardwiring in the admin web.xml) to Tomcat. None of what's in web.xml

RE: How can JSPs be part of an integrated component?

2006-12-30 Thread Caldarale, Charles R
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Subject: Re: How can JSPs be part of an integrated component? public final class banner_jsp extends org.apache.jasper.runtime.HttpJspBase implements org.apache.jasper.runtime.JspSourceDependent Jasper is not Tomcat-specific - it's

Re: How can JSPs be part of an integrated component?

2006-12-29 Thread Mikolaj Rydzewski
Lee Crawford wrote: To give more context, I have a framework that I'm using to build a web-app and the framework itself has JSPs to contribute to the application (admin pages). Obviously, I can just extract the files and copy it into the namespace of the web-app itself but was hoping to avoid

Re: How can JSPs be part of an integrated component?

2006-12-29 Thread Lee Crawford
Yeah, I'm trying to avoid using Velocity and make JSP a more appropriate templating language. The framework is doing all the processing and delegating to JSPs as templates. --lee On 12/29/06, Mikolaj Rydzewski [EMAIL PROTECTED] wrote: Lee Crawford wrote: To give more context, I have a

RE: How can JSPs be part of an integrated component?

2006-12-29 Thread Caldarale, Charles R
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Subject: How can JSPs be part of an integrated component? I'm trying to figure out how a servlet running in the Tomcat container can access jsp's that are included as part of a jar that has been installed in the WEB-INF/lib directory?

Re: How can JSPs be part of an integrated component?

2006-12-29 Thread Lee Crawford
Charles, Sure, that works if you're banking on Tomcat as your deployment target, but the classes that you've compiled and hardwired (there many lines of hardwiring in the admin web.xml) to Tomcat. I'm still looking for something a bit more portable. Thanks for your answer, though. --lee On