Yuval was right, all I had to do was make the whole argument in a variable and it works!
On Thu, May 1, 2008 at 7:25 PM, Hassan Schroeder <[EMAIL PROTECTED]>
wrote:
> On Thu, May 1, 2008 at 1:20 PM, Jonathan Mast
> <[EMAIL PROTECTED]> wrote:
> > Will JSTL work with Tomcat 5.5? And if so is it
On Thu, May 1, 2008 at 1:20 PM, Jonathan Mast
<[EMAIL PROTECTED]> wrote:
> Will JSTL work with Tomcat 5.5? And if so is it a lot of work to set up or
> do I just drop a jar file in the classpath?
Yes, no, and yes respectively :-)
Just drop jstl.jar and standard.jar in your webapp's lib director
Will JSTL work with Tomcat 5.5? And if so is it a lot of work to set up or
do I just drop a jar file in the classpath?
On Thu, May 1, 2008 at 7:10 PM, Hassan Schroeder <[EMAIL PROTECTED]>
wrote:
> On Thu, May 1, 2008 at 12:35 PM, Jonathan Mast
> <[EMAIL PROTECTED]> wrote:
>
> > Dynamically incl
Actually, I just checked some of our code and this:
">jsp:include>
works...
I think the problem is that you are do mix a string and a runtime
expression in a tag. These are not html tags - the variables are
passed to a function - it's all or nothing.
Try:
<% String path = "directory/"+fi
On Thu, May 1, 2008 at 12:35 PM, Jonathan Mast
<[EMAIL PROTECTED]> wrote:
> Dynamically include a file where the file name is dynamic. Neither of the
> following lines of code work:
>
>
with JSTL:
(assuming that fileName is in a JSTL scope, of course)
HTH
---
Hassan Schroeder --
Thanks Yuval, but the jsp file that fileName is pointing to is not being
evaluated. And there aren't any errors printing out to the page. How do I
"look" into what is happening here?
On Thu, May 1, 2008 at 6:47 PM, Yuval Perlov <[EMAIL PROTECTED]> wrote:
> <%
> getServletContext().getRequestDis
<%
getServletContext().getRequestDispatcher(fileName).include(req,resp);
%>
On May 1, 2008, at 10:35 PM, Jonathan Mast wrote:
I know this not exactly a Tomcat issue, but thought someone could help.
Here is what I'm trying to do:
Dynamically include a file where the file name is dynamic. Neither
I know this not exactly a Tomcat issue, but thought someone could help.
Here is what I'm trying to do:
Dynamically include a file where the file name is dynamic. Neither of the
following lines of code work:
<%@ include file="directory/<%=fileName%>" %>
The <%=fileName%> is not getting