Re: How to pass parameters to method in c:if

2002-03-19 Thread Mark Diggory
Shawn Bayern wrote: On Mon, 18 Mar 2002, Dave Newton wrote: On Monday 18 March 2002 02:43 pm, you wrote: c:if test=${securityBean.check(request, response) } The JSTL expression language does not support method invocations on objects. You'll currently need to use a custom tag library or

Re: How to pass parameters to method in c:if

2002-03-19 Thread Mark Diggory
Sorry, the last response was an error. -M. Mark Diggory wrote: Shawn Bayern wrote: On Mon, 18 Mar 2002, Dave Newton wrote: On Monday 18 March 2002 02:43 pm, you wrote: c:if test=${securityBean.check(request, response) } The JSTL expression language does not support method

How to pass parameters to method in c:if

2002-03-18 Thread Trogrlic Zeljko
Hello, I'm writing a presentation of the latest JSTL, but I have a problem with one example. In JSP, I need something like c:if test=${securityBean.check(request, response) } but it doesn't work. How can I pass parameters? All examples use only simple getters. If someone knows the answer

Re: How to pass parameters to method in c:if

2002-03-18 Thread Shawn Bayern
On Mon, 18 Mar 2002, Trogrlic Zeljko wrote: Hello, I'm writing a presentation of the latest JSTL, but I have a problem with one example. In JSP, I need something like c:if test=${securityBean.check(request, response) } but it doesn't work. How can I pass parameters? All examples

Re: How to pass parameters to method in c:if

2002-03-18 Thread Dave Newton
On Monday 18 March 2002 02:43 pm, you wrote: c:if test=${securityBean.check(request, response) } The JSTL expression language does not support method invocations on objects. You'll currently need to use a custom tag library or scriptlet code (with the former being recommended over the

Re: How to pass parameters to method in c:if

2002-03-18 Thread Shawn Bayern
On Mon, 18 Mar 2002, Dave Newton wrote: On Monday 18 March 2002 02:43 pm, you wrote: c:if test=${securityBean.check(request, response) } The JSTL expression language does not support method invocations on objects. You'll currently need to use a custom tag library or scriptlet code