Re: Where is the guid lines for writing tags.

2004-01-26 Thread Antony Paul
I found it here. http://jakarta.apache.org/taglibs/guidelines.html I got the link from Tomcat bug database. If this link is not provided in any of the taglibs site documentation please include it. rgds Antony Paul - Original Message - From: Antony Paul [EMAIL PROTECTED] To: Tag Libraries

using scripting variable in JSTL standard 1.0 EL

2003-12-15 Thread Antony Paul
. Is this an inefficent method ?. I am working on JSTL standard 1.0 Tomcat 4.27. I have only 2 weeks knowledge in JSTL and EL. rgds Antony Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Result.getRowCount() in EL.

2003-12-15 Thread Antony Paul
Hi, How to access the method Result.getRowCount() in JSTL standard 1.0 EL. rgds Antony Paul. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Serialising javax.servlet.jsp.jstl.sql.ResultImpl

2003-12-15 Thread Antony Paul
RowSetDynaClass instead of Result. Is there any way to serialize it. I think Result is a map of Strings only. Antony Paul. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

c:out and default - question on code.

2003-12-08 Thread Antony Paul
Hi, I tried to write a tag handler class which have an attribute default. But javac wont compile it. Then how the c:out default works. How I could do the same ? rgds Antony Paul - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: c:out and default - question on code.

2003-12-08 Thread Antony Paul
Declaring a varible names default gives this error by javac. JspOutTag.java:12: identifier expected private String default; rgds Antony Paul. - Original Message - From: Martin van Dijken [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Monday, December 08, 2003 6

Re: c:out and default - question on code.

2003-12-08 Thread Antony Paul
So no need for the variable name be the same in tld descriptor and tag handler class. Thanks for the info. Antony Paul. - Original Message - From: Felipe Leme [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Monday, December 08, 2003 6:47 PM Subject: Re: c:out

Calling a bean method in c:out/

2003-12-05 Thread Antony Paul
to code like this List list = (List) request.getAttribute(list); Iterator it = list.iterator(); while(it.hasNext()){ DynaBean bean = (DynaBean) it.next(); out.print(bean.get(empno)); } How to do it using JSTL Standard 1.0. rgds Antony Paul

Re: Calling a bean method in c:out/

2003-12-05 Thread Antony Paul
Thank you for the reply. I am new to JSTL. I tried to use it like this in JSP c:forEach var=i items=${list} c:out value=${i.get(empno)}/br /c:forEach But it gives error org.apache.jasper.JasperException: /TestDB.jsp(48,29) equal symbol expected Antony Paul - Original Message - From

Re: Calling a bean method in c:out/

2003-12-05 Thread Antony Paul
Then any other way to do it using JSTL or Jakarta taglibs. This functionaly is very useful because most pages uses the same technique to display content. I think Struts is providing similar functionality. Antony Paul. - Original Message - From: Martin van Dijken [EMAIL PROTECTED] To: Tag

Re: Calling a bean method in c:out/

2003-12-05 Thread Antony Paul
,map); % c:forEach var=i items=${list} c:out value=${i[name]}/br /c:forEach rgds Antony Paul - Original Message - From: Antony Paul [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Friday, December 05, 2003 3:53 PM Subject: Re: Calling a bean method in c:out

RE: Calling a bean method in c:out/

2003-12-05 Thread Antony paul
Thanks for the reply. Antony Paul. From: Chris Harris [EMAIL PROTECTED] Reply-To: Tag Libraries Users List [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Subject: RE: Calling a bean method in c:out/ Date: Fri, 5 Dec 2003 12:00:33 - When iterating over a map, access the key

Re: Calling a bean method in c:out/

2003-12-05 Thread Antony Paul
Thanks a lot Kris. Now I will use JSTL only. Antony Paul - Original Message - From: Kris Schneider [EMAIL PROTECTED] To: Tag Libraries Users List [EMAIL PROTECTED] Sent: Friday, December 05, 2003 10:24 PM Subject: Re: Calling a bean method in c:out/ Coming in late, but personally, I'd