Re: Creating a valid web.xml version 2.4

2005-07-20 Thread Wendy Smoak
From: "Frasso, Anthony" <[EMAIL PROTECTED]> > <% String test = "This is a test String."; %> > > ${test} > > This should print out "This is a test String" twice, correct? No. Scripting variables and tags do not mix. > Do I have to place the String in the request? Yes. (Did you try it?) An

RE: Creating a valid web.xml version 2.4

2005-07-20 Thread Frasso, Anthony
> Frasso, Anthony wrote: > > >So then I can completely remove the tag from my > web.xml file, making it look like the following? > > > > > > > >http://java.sun.com/xml/ns/j2ee";; > > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";; > > xsi:schemaLocation="http://java.sun.c

Re: Creating a valid web.xml version 2.4

2005-07-20 Thread Dave Newton
Frasso, Anthony wrote: So then I can completely remove the tag from my web.xml file, making it look like the following? http://java.sun.com/xml/ns/j2ee";; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";; xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee ht

Re: Creating a valid web.xml version 2.4

2005-07-20 Thread Wendy Smoak
From: "Frasso, Anthony" <[EMAIL PROTECTED]> > There's nothing else I have to configure to use JSTL? No, just use the correct uri in the <%@ taglib> in the JSP. The tags in web.xml haven't been necessary since Servlet 2.3, but most examples (including the Struts example apps) still included them

RE: Creating a valid web.xml version 2.4

2005-07-20 Thread Frasso, Anthony
> On Jul 19, 2005, at 4:53 PM, Dave Newton wrote: > > >> I'm new to struts, and to web development in general, and after > >> tinkering with the struts tag libraries, I've decided to > switch to > >> using the JSTL tag library. This requires JSP 2.0 support, which > >> I should have, as I

Re: Creating a valid web.xml version 2.4

2005-07-20 Thread Dave Newton
Brian Lalor wrote: On Jul 19, 2005, at 4:53 PM, Dave Newton wrote: I'm new to struts, and to web development in general, and after tinkering with the struts tag libraries, I've decided to switch to using the JSTL tag library. This requires JSP 2.0 support, which I should have, as I am us

Re: Creating a valid web.xml version 2.4

2005-07-19 Thread Brian Lalor
On Jul 19, 2005, at 4:53 PM, Dave Newton wrote: I'm new to struts, and to web development in general, and after tinkering with the struts tag libraries, I've decided to switch to using the JSTL tag library. This requires JSP 2.0 support, which I should have, as I am using Tomcat 5.5. No

Re: Creating a valid web.xml version 2.4

2005-07-19 Thread Dave Newton
Frasso, Anthony wrote: I'm new to struts, and to web development in general, and after tinkering with the struts tag libraries, I've decided to switch to using the JSTL tag library. This requires JSP 2.0 support, which I should have, as I am using Tomcat 5.5. No it doesn't. Unfortunately,