Re: c:if - testing for request parameter value

2002-03-14 Thread Shawn Bayern
On Thu, 14 Mar 2002, Matt Raible wrote: I'm trying to use JSTL do check for values of certain variables. For instance, I want to find out if the action parameter (passed in via URL) is equal to Edit. However, my code below is not working: c:if test=${request:action == 'Edit'}

JSTL tag forEach context question

2002-03-14 Thread RAYMOND Romain
hello, I am trying to use jakrata taglib JSTL, particulary forEach taglib. I look at the given examples and I don't understand how to initialize collection on which the forEach applies ; or getting iteraot variable without accessing pageContext of my JSP. used tld is c-rt an I do the JSP import

Problems by Compling JSP's

2002-03-14 Thread Andreas Metz
Hi, i'm new in working with taglibs. Now i have a problem, which i cannot solve. I hope someone can help me. I have made a simple taglib example. Now i try to start it. In the case that i have a .class file and a .tld it works fine. If i packed these file to a .jar and try it again it will

Re: Problems by Compling JSP's

2002-03-14 Thread Mike Hulse
Hi Andreas, There is a very good FAQ on this at http://www.netbeans.org/articles/faqs/web_apps.html#FAQ_9 It covers netbeans and ffj. Mike -Original Message- From: Andreas Metz [EMAIL PROTECTED] To: 'Tag Libraries Users List' (E-Mail) [EMAIL PROTECTED] Date: Thursday, March 14, 2002

Re: JSTL tag forEach context question

2002-03-14 Thread Shawn Bayern
On Thu, 14 Mar 2002, RAYMOND Romain wrote: I initilize my collections using beans : % Collection serialNos = datamodule.getAllApplicableSerialNos(HAP); % and I must use pageContext.getAttribute to get back iterators values : c:forEach var=serial items=%=

RE: JSTL: Nightly build crashes

2002-03-14 Thread Shawn Bayern
On Thu, 14 Mar 2002 [EMAIL PROTECTED] wrote: - For I18N, the Parametric Replacement and Date example gives me javax.servlet.ServletException: Unparseable date: I'll let Jan answer this if he gets a chance, since he's more qualified to answer I18N-related questions than I am. - Also, for

x:transform syntax

2002-03-14 Thread Brian J. Sletten
Greetings, I'm new to the JSTL and am excited about where it is going but I'm a little confused by the syntax for the x:transform tag. I've seem different syntax specifications in the JSTL spec, the online documentation and the taglib definition. Just for argument's sake I have a page scop

Re: JSTL: Nightly build crashes

2002-03-14 Thread Hans Bergsten
Shawn Bayern wrote: [...] I've also seen reports that a recent version of Tomcat had some trouble with the HttpServletResponse.encodeURL() method, which would also cause problems for c:url. But I don't know offhand the version where it's problematic. It's Tomcat 4.0.4 Beta 1, but it's

RE: Problems by Compling JSP's

2002-03-14 Thread Bala Gurram
i think you dont have the following class in your classpath (netscape/ldap/LDAPException), the erros says (netscape/ldap/LDAPException is not found but it tries do some thing with that class in ite.fokBeans.fokDB at line 25. i hope if you can provide netscape/ldap/LDAPException)in your classpath

Re: x:transform and nightly build

2002-03-14 Thread Shawn Bayern
I think the problem is just that you need to specify ${xsl} instead of $xsl as the attribute value for xsltText. The latter is now interpreted as a string literal. I've slowly been coming to the realization that allowing $foo as a string literal leads to errors that are hard to track down; I'm

RE: x:transform and nightly build

2002-03-14 Thread Matt Raible
That did it - thanks! Matt -Original Message- From: Shawn Bayern [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 3:15 PM To: Matt Raible Cc: [EMAIL PROTECTED] Subject: Re: x:transform and nightly build I think the problem is just that you need to specify ${xsl}

RE: JSTL: Nightly build crashes

2002-03-14 Thread Jan Luehe
Hi Eric: Ok, I now reinstalled Tomcat (4.0.3, full version) and the nightly JSTL build (everything as binaries). Now it works, but not everything... - For I18N, the Parametric Replacement and Date example gives me javax.servlet.ServletException: Unparseable date: I managed to reproduce