AW: Urgent: urgent jstl foreach tag is not working

2005-08-26 Thread Eickvonder Bjoern
. August 2005 20:27 An: 'Tag Libraries Users List' Betreff: RE: Urgent: urgent jstl foreach tag is not working Hi Martin, Thanks for the response. I defined my Usebean for the class I am trying to access jsp:useBean id=pmt class=scinsurers.server.interfaces.Payment / .But still I

RE: Urgent: urgent jstl foreach tag is not working

2005-08-26 Thread Kurakula, Suneetha (HCF)
List Subject: Re: Urgent: urgent jstl foreach tag is not working Please make sure that your web.xml file is web-app version 2.4. It means it should start with : web-app version=2.4 xmlns=http://java.sun.com/xml/ns/j2ee; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance

Urgent: urgent jstl foreach tag is not working

2005-08-25 Thread Kurakula, Suneetha (HCF)
Hello All, I would like to thank you all who answered my question . I have jakarta-taglibs-standard-1.1.2 jars and tlds copied onto my webserver. But still I am getting error when I run my jsp As you all suggested I fixed my jsp syntactical errors and tag errors. Here is my updated

Re: Urgent: urgent jstl foreach tag is not working

2005-08-25 Thread Martin Cooper
You need to define getters for the properties you want to access via JSTL. -- Martin Cooper On 8/25/05, Kurakula, Suneetha (HCF) [EMAIL PROTECTED] wrote: Hello All, I would like to thank you all who answered my question . I have jakarta-taglibs-standard-1.1.2 jars and tlds copied onto

RE: Urgent: urgent jstl foreach tag is not working

2005-08-25 Thread Kurakula, Suneetha (HCF)
) org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.ja va:81) Thanks, Suneetha. -Original Message- From: Martin Cooper [mailto:[EMAIL PROTECTED] Sent: Thursday, August 25, 2005 2:18 PM To: Tag Libraries Users List Subject: Re: Urgent: urgent jstl foreach tag

Re: Urgent: urgent jstl foreach tag is not working

2005-08-25 Thread Martin Cooper
. -Original Message- From: Martin Cooper [mailto:[EMAIL PROTECTED] Sent: Thursday, August 25, 2005 2:18 PM To: Tag Libraries Users List Subject: Re: Urgent: urgent jstl foreach tag is not working You need to define getters for the properties you want to access via JSTL. -- Martin

Re: Urgent: urgent jstl foreach tag is not working

2005-08-25 Thread ::SammyRulez::
Subject: Re: Urgent: urgent jstl foreach tag is not working You need to define getters for the properties you want to access via JSTL. -- Martin Cooper On 8/25/05, Kurakula, Suneetha (HCF) [EMAIL PROTECTED] wrote: Hello All, I would like to thank you all who answered

RE: Urgent: urgent jstl foreach tag is not working

2005-08-25 Thread Kurakula, Suneetha (HCF)
] Sent: Thursday, August 25, 2005 2:32 PM To: Tag Libraries Users List Subject: Re: Urgent: urgent jstl foreach tag is not working On 8/25/05, Kurakula, Suneetha (HCF) [EMAIL PROTECTED] wrote: Hi Martin, Thanks for the response. I defined my Usebean for the class I am trying to access You

Re: Urgent: urgent jstl foreach tag is not working

2005-08-25 Thread rw
:32 PM To: Tag Libraries Users List Subject: Re: Urgent: urgent jstl foreach tag is not working On 8/25/05, Kurakula, Suneetha (HCF) [EMAIL PROTECTED] wrote: Hi Martin, Thanks for the response. I defined my Usebean for the class I am trying to access You don't need that. As I said, what you

RE: Urgent: urgent jstl foreach tag is not working

2005-08-25 Thread Kurakula, Suneetha (HCF)
: Urgent: urgent jstl foreach tag is not working Kurakula, Suneetha (HCF) wrote: I have one more problem. My core tags are working in the same page but function tags values are not printing %@ taglib uri=http://java.sun.com/jstl/core; prefix=c% %@ taglib uri=http://java.sun.com/jstl/functions

Re: Urgent: urgent jstl foreach tag is not working

2005-08-25 Thread Martin Cooper
, August 25, 2005 2:32 PM To: Tag Libraries Users List Subject: Re: Urgent: urgent jstl foreach tag is not working On 8/25/05, Kurakula, Suneetha (HCF) [EMAIL PROTECTED] wrote: Hi Martin, Thanks for the response. I defined my Usebean for the class I am trying to access You don't

Re: Urgent: urgent jstl foreach tag is not working

2005-08-25 Thread Dima Gutzeit
:[EMAIL PROTECTED] Sent: Thursday, August 25, 2005 3:29 PM To: Tag Libraries Users List Subject: Re: Urgent: urgent jstl foreach tag is not working On 8/25/05, Kurakula, Suneetha (HCF) [EMAIL PROTECTED] wrote: Hi All, Great. Thank you very much . I got it resolved by adding getters method to my

Re: Urgent: urgent jstl foreach tag is not working

2005-08-25 Thread Dima Gutzeit
Actually it will work outside of c:out/ since it is EL expression. - Original Message - From: Long, Robert [EMAIL PROTECTED] To: Tag Libraries Users List taglibs-user@jakarta.apache.org Sent: Thursday, August 25, 2005 9:56 PM Subject: RE: Urgent: urgent jstl foreach tag is not working

Re: Urgent: urgent jstl foreach tag is not working

2005-08-25 Thread Martin Cooper
is not using a JSP 2.0 container, hence the problems. -- Martin Cooper - Original Message - From: Long, Robert [EMAIL PROTECTED] To: Tag Libraries Users List taglibs-user@jakarta.apache.org Sent: Thursday, August 25, 2005 9:56 PM Subject: RE: Urgent: urgent jstl foreach tag is not working

Re: Urgent: urgent jstl foreach tag is not working

2005-08-25 Thread Rahul Akolkar
On 8/25/05, Martin Cooper [EMAIL PROTECTED] wrote: On 8/25/05, Dima Gutzeit [EMAIL PROTECTED] wrote: Actually it will work outside of c:out/ since it is EL expression. Assuming a JSP 2.0 container, yes. Not on JSP 1.2, though (and of course functions won't work in an earlier container,