RE: Struts in Servlet 2.4

2007-04-17 Thread Dave Newton
I don't know what, if anything, WL provides; you may still need the jstl/standard libs, just a later version. --- "Slattery, Tim - BLS" <[EMAIL PROTECTED]> wrote: > > > > <%@ taglib uri="http://java.sun.com/jstl/core"; > > > prefix="c" %> > > > <%@ taglib uri="http://java.sun.com/jstl/fmt"; > >

RE: Struts in Servlet 2.4

2007-04-17 Thread Slattery, Tim - BLS
> > <%@ taglib uri="http://java.sun.com/jstl/core"; > > prefix="c" %> > > <%@ taglib uri="http://java.sun.com/jstl/fmt"; > > prefix="fmt" %> > > > > I get this message for both tags: > > > > No tag library could be found with this URI. > > Possible causes could be > > that the URI is incorrect,

RE: Struts in Servlet 2.4

2007-04-17 Thread Dave Newton
--- "Slattery, Tim - BLS" <[EMAIL PROTECTED]> wrote: > I switched that directive to <% page session="true" > %>, and it finds Contact in Session context! Zounds. > <%@ taglib uri="http://java.sun.com/jstl/core"; > prefix="c" %> > <%@ taglib uri="http://java.sun.com/jstl/fmt"; > prefix="fmt" %> >

RE: Struts in Servlet 2.4

2007-04-17 Thread Rod Bollinger
, Tim - BLS [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 17, 2007 10:55 To: Struts Users Mailing List Subject: RE: Struts in Servlet 2.4 > I'd still try it without it, because that's just the way I am ;) > I mean, it's obviously there if you're enumerating over it... I

RE: Struts in Servlet 2.4

2007-04-17 Thread Slattery, Tim - BLS
> I'd still try it without it, because that's just the way I am ;) > I mean, it's obviously there if you're enumerating over it... I switched that directive to <% page session="true" %>, and it finds Contact in Session context! Apparently, specifying "true" makes "the session implicit variable"

Re: Struts in Servlet 2.4

2007-04-16 Thread Dave Newton
I'd still try it without it, because that's just the way I am ;) I mean, it's obviously there if you're enumerating over it... - Original Message From: "Slattery, Tim - BLS" <[EMAIL PROTECTED]> To: Struts Users Mailing List Sent: Monday, April 16, 20

Re: Struts in Servlet 2.4

2007-04-16 Thread Martin Gainty
3:29 PM Subject: RE: Struts in Servlet 2.4 -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Monday, April 16, 2007 3:20 PM To: Struts Users Mailing List Subject: Re: Struts in Servlet 2.4 Tim-- I dont understand why looping would help when your webserver cant find

RE: Struts in Servlet 2.4

2007-04-16 Thread Slattery, Tim - BLS
> > <%@ page session="false"%> > > Whoa. > > "session="true | false" > > Whether the client must join an HTTP session in order to use > the JSP page. If the value is true, the session object refers > to the current or new session. > > If the value is false, you cannot use the session object

RE: Struts in Servlet 2.4

2007-04-16 Thread Slattery, Tim - BLS
> From: Martin Gainty <[EMAIL PROTECTED]> > >I dont understand why looping would help when your webserver > cant find a page whicgh is misconfigured or missing??? > > The problem doesn't have anything to do with a missing page, > the problem is that even though a bean is in scope and works > o

Re: Struts in Servlet 2.4

2007-04-16 Thread Dave Newton
From: "Slattery, Tim - BLS" <[EMAIL PROTECTED]> > <%@ page session="false"%> Whoa. "session="true | false" Whether the client must join an HTTP session in order to use the JSP page. If the value is true, the session object refers to the current or new session. If the value is false, you can

Re: Struts in Servlet 2.4

2007-04-16 Thread Dave Newton
From: Martin Gainty <[EMAIL PROTECTED]> >I dont understand why looping would help when your webserver cant find a >page whicgh is misconfigured or missing??? The problem doesn't have anything to do with a missing page, the problem is that even though a bean is in scope and works on one version o

RE: Struts in Servlet 2.4

2007-04-16 Thread Slattery, Tim - BLS
> -Original Message- > From: Martin Gainty [mailto:[EMAIL PROTECTED] > Sent: Monday, April 16, 2007 3:20 PM > To: Struts Users Mailing List > Subject: Re: Struts in Servlet 2.4 > > Tim-- > > I dont understand why looping would help when your webserver &

Re: Struts in Servlet 2.4

2007-04-16 Thread Martin Gainty
To: "Struts Users Mailing List" Sent: Monday, April 16, 2007 1:25 PM Subject: RE: Struts in Servlet 2.4 tough to guess on what your configuration is without seeing your configuration files Please display web.xml and struts.xml for us Thanks, that's entirely reasonable. I'

RE: Struts in Servlet 2.4

2007-04-16 Thread Slattery, Tim - BLS
> tough to guess on what your configuration is without seeing > your configuration files > > Please display web.xml and struts.xml for us Thanks, that's entirely reasonable. I've followed Laurie Harper's advice, and put a loop into the JSP page immediately before it fails. That loop calls requ

Re: Struts in Servlet 2.4

2007-04-16 Thread Martin Gainty
s Mailing List" Sent: Monday, April 16, 2007 8:30 AM Subject: RE: Struts in Servlet 2.4 Sounds as if your ejb compiler didnt generate and compile the necessary interfaces for what its worth here is a sample of a build for my wl env Eh?? Who said anything about EJBs? This is an exploded direct

RE: Struts in Servlet 2.4

2007-04-16 Thread Slattery, Tim - BLS
> Sounds as if your ejb compiler didnt generate and compile the > necessary interfaces for what its worth here is a sample of a > build for my wl env Eh?? Who said anything about EJBs? This is an exploded directory that will become a WAR file. The bean that can't be found is a plain old Java bea

Re: Struts in Servlet 2.4

2007-04-14 Thread Laurie Harper
Slattery, Tim - BLS wrote: I found this to be a great tutorial http://www.exadel.com/tutorial/struts/5.2/guess/strutstutorial.html Create your formbean with public Accessors/Mutators for each private attribute and also create methods for reset method validateMethod and of course public no arg

Re: Struts in Servlet 2.4

2007-04-13 Thread Martin Gainty
sers Mailing List" <[EMAIL PROTECTED]> Sent: Friday, April 13, 2007 1:31 PM Subject: RE: Struts in Servlet 2.4 Andit points to "items" and gives this message: This attribute does not support request time values. Well, I've made some progress, I guess. I removed the

RE: Struts in Servlet 2.4

2007-04-13 Thread Slattery, Tim - BLS
> I found this to be a great tutorial > http://www.exadel.com/tutorial/struts/5.2/guess/strutstutorial.html > > Create your formbean with public Accessors/Mutators for each > private attribute and also create methods for reset method > validateMethod and of course public no arg constructor for b

Re: Struts in Servlet 2.4

2007-04-13 Thread Martin Gainty
: Friday, April 13, 2007 1:31 PM Subject: RE: Struts in Servlet 2.4 Andit points to "items" and gives this message: This attribute does not support request time values. Well, I've made some progress, I guess. I removed the jstl.jar and standard.jar that came with the Struts distr

RE: Struts in Servlet 2.4

2007-04-13 Thread Slattery, Tim - BLS
> > > Andit points to "items" and gives this message: > > This attribute does not support request time values. Well, I've made some progress, I guess. I removed the jstl.jar and standard.jar that came with the Struts distribution. I deleted the tags for c: and fmt: in web.xml. And I got rid of

RE: Struts in Servlet 2.4

2007-04-12 Thread Slattery, Tim - BLS
> -Original Message- > From: Frank Russo [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 12, 2007 2:40 PM > To: Struts Users Mailing List > Subject: RE: Struts in Servlet 2.4 > Did you change the version of your jstl jars? I forget which > version you need, but

RE: Struts in Servlet 2.4

2007-04-12 Thread Slattery, Tim - BLS
> --- "Slattery, Tim - BLS" <[EMAIL PROTECTED]> > wrote: > > > > > > Andit points to "items" and gives this message: > > > > This attribute does not support request time values. > > I don't recall, but did the TLD URIs change between 2.3/2.4? > > (I don't even know if it would matter if they

Re: Struts in Servlet 2.4

2007-04-12 Thread Musachy Barroso
From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Thursday, April 12, 2007 2:21 PM To: Struts Users Mailing List Subject: Re: Struts in Servlet 2.4 --- "Slattery, Tim - BLS" <[EMAIL PROTECTED]> wrote: > > > Andit points to "items" and gives this message: > >

RE: Struts in Servlet 2.4

2007-04-12 Thread Frank Russo
rsday, April 12, 2007 2:21 PM To: Struts Users Mailing List Subject: Re: Struts in Servlet 2.4 --- "Slattery, Tim - BLS" <[EMAIL PROTECTED]> wrote: > > > Andit points to "items" and gives this message: > > This attribute does not support request time values

Re: Struts in Servlet 2.4

2007-04-12 Thread Dave Newton
--- "Slattery, Tim - BLS" <[EMAIL PROTECTED]> wrote: > > > Andit points to "items" and gives this message: > > This attribute does not support request time values. I don't recall, but did the TLD URIs change between 2.3/2.4? (I don't even know if it would matter if they did, actually, I guess

Struts in Servlet 2.4

2007-04-12 Thread Slattery, Tim - BLS
I'm still trying to move Struts apps from WL 8 (servlet 2.3 environment) to WL 9 (servlet 2.4 environment). I've change the top line in my web.xml to the long, complicated string that specifies 2.4. The app runs the first Action module, then forwards to a jsp page. In that page are both JSTL and St