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-17 Thread Rod Bollinger
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 switched that directive to % page session=true %, and it finds Contact in Session context

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 % I get this message for

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, or that there were errors

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; prefix=fmt % I

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 bean,

Re: Struts in Servlet 2.4

2007-04-16 Thread Martin Gainty
@struts.apache.org 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 directory

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

Re: Struts in Servlet 2.4

2007-04-16 Thread Martin Gainty
, Tim - BLS [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org 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

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 cant find a page whicgh

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 of

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 cannot use the

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 on one

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 or a

Re: Struts in Servlet 2.4

2007-04-16 Thread Martin Gainty
. - Original Message - From: Slattery, Tim - BLS [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org Sent: Monday, April 16, 2007 3:29 PM Subject: RE: Struts in Servlet 2.4 -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Monday, April 16

Re: Struts in Servlet 2.4

2007-04-16 Thread Dave Newton
Subject: RE: Struts in Servlet 2.4 %@ 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

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 Slattery, Tim - BLS
c:forEach items=${RespData} var=resp 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 taglib tags for c:

Re: Struts in Servlet 2.4

2007-04-13 Thread Martin Gainty
without making a copy. Thank you. - Original Message - From: Slattery, Tim - BLS [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, April 13, 2007 1:31 PM Subject: RE: Struts in Servlet 2.4 c:forEach items=${RespData} var=resp Andit points to items

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 bean

Re: Struts in Servlet 2.4

2007-04-13 Thread Martin Gainty
PROTECTED] Sent: Friday, April 13, 2007 1:31 PM Subject: RE: Struts in Servlet 2.4 c:forEach items=${RespData} var=resp 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

Re: Struts in Servlet 2.4

2007-04-12 Thread Dave Newton
--- Slattery, Tim - BLS [EMAIL PROTECTED] wrote: c:forEach items=${RespData} var=resp 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

RE: Struts in Servlet 2.4

2007-04-12 Thread Frank Russo
, April 12, 2007 2:21 PM To: Struts Users Mailing List Subject: Re: Struts in Servlet 2.4 --- Slattery, Tim - BLS [EMAIL PROTECTED] wrote: c:forEach items=${RespData} var=resp Andit points to items and gives this message: This attribute does not support request time values. I don't recall

Re: Struts in Servlet 2.4

2007-04-12 Thread Musachy Barroso
: 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: c:forEach items=${RespData} var=resp Andit points to items and gives this message: This attribute does not support request time values. I don't

RE: Struts in Servlet 2.4

2007-04-12 Thread Slattery, Tim - BLS
--- Slattery, Tim - BLS [EMAIL PROTECTED] wrote: c:forEach items=${RespData} var=resp 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

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 I think jstl 1.0 was 2.3