Re: Releases and Maven 2 support

2007-03-26 Thread Antonio Petrelli
2007/3/24, Rashmi Rubdi [EMAIL PROTECTED]: I don't think xtags is released. Do you have an option to consider JSTL1.1.x or JSTL 1.2 tags ? The features are different by the results might be the same in some cases depending on what you implement. I've used XTags only a little, I was trying to

Re: Releases and Maven 2 support

2007-03-26 Thread Rashmi Rubdi
You're welcome. Anyway, if you are interested in transforming XML with XSLT inside a JSP , it just takes about 3 lines of code with JSTL1.1.x FYI. -Rashmi - Original Message From: Antonio Petrelli [EMAIL PROTECTED] To: Tag Libraries Users List taglibs-user@jakarta.apache.org

Re: Releases and Maven 2 support

2007-03-26 Thread Antonio Petrelli
2007/3/26, Rashmi Rubdi [EMAIL PROTECTED]: You're welcome. Anyway, if you are interested in transforming XML with XSLT inside a JSP , it just takes about 3 lines of code with JSTL1.1.x FYI. How stupid I am, thanks a lot! I have found those 3 lines. Thanks again for the advice. Antonio

Strange JSTL1.0 problem

2007-03-26 Thread neeraj bhusare
Friends, I am experience a strange problem using *JSTL1.0.* Please find my problem description below. I have a ArrayList of objects (Java beans with some getter /setters), which are to be rendered in a JSP page. I tried using struts tag library by I didn't find it much helpful so I

Re: Strange JSTL1.0 problem

2007-03-26 Thread Rashmi Rubdi
Name the loop item different from the name of the ArrayList So instead of c:forEach var=RecordList items=${RecordList} , rewrite it something like this: c:forEach var=recordListItem items=${RecordList} Then try: c:out value=${recordListItem.axField} / inside the c:forEach loop. I hope