RE: Internal Servlet Error using Taglibs-image on Tomcat 3.2.3 andj2sdk1.4.1_06

2004-03-17 Thread qwerty7890q
thank you guys for your time. I'll try to upgrade to Tomcat 4 or 5. -Original Message- From: Martin Cooper [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 1:43 AM To: Tag Libraries Users List Subject: RE: Internal Servlet Error using Taglibs-image on Tomcat 3.2.3 andj2sdk1.4.1_

Re: Using ExpressionEvaluatorManager in a Struts Action execute()

2004-03-17 Thread f.
Guys, Many thanks for your time. Finally it works the way I described initially ... I feel a bit confused. It seems there is no way to do that a more simple way without using JSP 2.0. One day we will move to 2.0 and I will change that. Denis. Hello Marc, That seems great but I think we won't use

Re: Lucene Taglib

2004-03-17 Thread Serge Knystautas
Iskandar Salim wrote: Yes, I'm planning to add it to the Jakarta Taglib Sandbox and have read through the documents on submitting a new taglib. However, I think the taglib is still too basic in it's functions and Lucene is a huge API. I am still learning Lucene and Java, for that matter. I would gl

Re: Using ExpressionEvaluatorManager in a Struts Action execute()

2004-03-17 Thread f.
Hello Marc, That seems great but I think we won't use JSP 2.0 cos we need Jetty Stable release. Somebody told me about commons-jexl maybe this would be the best solution. Thanks for your help. Denis. Marc Guillemot wrote: What about using directly a org.apache.commons.el.ExpressionEvaluat

Re: Using ExpressionEvaluatorManager in a Struts Action execute()

2004-03-17 Thread Marc Guillemot
What about using directly a org.apache.commons.el.ExpressionEvaluatorImpl? No PageContext is needed. You just have to provide a javax.servlet.jsp.el.VariableResolver and I think you should write it carefully to avoid generating a security hole as your EL comes from the request. Marc. f. wrote: H

RE: Using ExpressionEvaluatorManager in a Struts Action execute()

2004-03-17 Thread Martin van Dijken
Clearer, I hope you're aware that the approach you're on ties your programming to the jakarta api for JSTL which might not be a good idea in the first place. I'm thinking there might be some better way to do what you need, but can't evaluate that fully until you describe what it is you're trying t

Re: Using ExpressionEvaluatorManager in a Struts Action execute()

2004-03-17 Thread f.
Martin, First thanks for your reactivity. I sent message to struts-user list before I post here . The evaluation of the expression can not be done during jsp processing because 1- custom tags are processed defining a datatable 2- table is then sent to browser 3- click each cell in the same column

RE: Using ExpressionEvaluatorManager in a Struts Action execute()

2004-03-17 Thread Martin van Dijken
Hey Denis, - first of all, this is really the list for non-struts taglibraries, for struts issues please refer to [EMAIL PROTECTED] - second, I'm not that sure what you mean, but can't you use the struts-el taglibraries to create the param at the time the link is created? I think the el-taglibs ar

Using ExpressionEvaluatorManager in a Struts Action execute()

2004-03-17 Thread f.
Hi, The idea is an hyperlink on HTML Page calling a Struts Action and with an URI ending with like myAction.do?elexpression="sessionScope['mylist'][param.row]" So I need the ELanguage power in my Action.execute( ) method. I tryed to get a PageContext( ) from JSPFactory.DefaultFactory( ) (using