Re: Bug

2007-04-30 Thread Rashmi Rubdi
Hi reshmi, That s right. To use the grid am not using JSTL. Am using EL. For now its ok. But am sure the problem will arise in the future. You can create multiple projects with the same instance of Tomcat. Each project can have it's own web.xml with separate Servlet

Re: Bug

2007-04-29 Thread Rashmi Rubdi
I just wanted to be clear, this is the web.xml located under your project--- /WEB-INF/web.xml -Rashmi On 4/29/07, Rashmi Rubdi [EMAIL PROTECTED] wrote: Since you are using Tomcat 5.5.x please make sure the web-app node web.xml is exactly as follows: ?xml version=1.0 web-app version=2.4

Re: Bug

2007-04-29 Thread venu madhav
Rashmi Rubdi wrote: On 4/29/07, Martin Cooper [EMAIL PROTECTED] wrote: Like I said before, make sure your web.xml file is referencing Servlets 2.4or later. You can have all the latest software, but if your web.xml file is referencing an earlier version of the spec, it won't make any

Re: Bug

2007-04-29 Thread Rashmi Rubdi
On 4/29/07, venu madhav [EMAIL PROTECTED] wrote: Rashmi, I understood what you are saying. I want to make clear that there is no wrong in my web.xml . Hi Venu, Just to be clear, please elaborate on what you mean by there is no wrong in my web.xml , it would be helpful if you

Re: Bug

2007-04-29 Thread venu madhav
Rashmi Rubdi wrote: On 4/29/07, venu madhav [EMAIL PROTECTED] wrote: Rashmi, I understood what you are saying. I want to make clear that there is no wrong in my web.xml . Hi Venu, Just to be clear, please elaborate on what you mean by there is no wrong in my web.xml , it

Re: Bug

2007-04-29 Thread Rashmi Rubdi
Hi Venu, I was able to solve this error, please see the explanation below. I too got this error: org.apache.jasper.JasperException: /p/datagrid/index.jsp(475,0) According to TLD or attribute directive in tag file, attribute items does not accept any expressions when I tried example1.jsp from

Re: Bug

2007-04-29 Thread venu madhav
Rashmi Rubdi wrote: Hi Venu, I was able to solve this error, please see the explanation below. I too got this error: org.apache.jasper.JasperException: /p/datagrid/index.jsp(475,0) According to TLD or attribute directive in tag file, attribute items does not accept any expressions when I

Re: Bug

2007-04-29 Thread Rashmi Rubdi
On 4/29/07, venu madhav [EMAIL PROTECTED] wrote: Hi Rashmi, Thank you very much for providing me the solution. So , we can conclude that the taglib was written using old spec and it was not updated isn't it. Any way thanks once again for solving my problem. Have a nice day.

Re: Bug

2007-04-29 Thread venu madhav
Rashmi Rubdi wrote: On 4/29/07, venu madhav [EMAIL PROTECTED] wrote: Hi Rashmi, Thank you very much for providing me the solution. So , we can conclude that the taglib was written using old spec and it was not updated isn't it. Any way thanks once again for solving my

Re: Bug

2007-04-28 Thread Venu Madhav.Yelamanchili
Rashmi Rubdi wrote: Hi Venu, What version of JSTL are you using? This might be a configuration issue, according to the documentation here: http://jakarta.apache.org/taglibs/sandbox/doc/datagrid-doc/index.html#requirements This custom tag library requires a servlet container that supports

Re: Bug

2007-04-28 Thread Venu Madhav.Yelamanchili
Rashmi Rubdi wrote: Again, what version of JSTL ? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] Am using JSTL1.1 -- Regards, Venu madhav.Yelamanchili Software Trainee

Re: Bug

2007-04-28 Thread Rashmi Rubdi
It appears to me that Datagrid requires JSTL 1.0 and JSP 1.2 from reading the thread below. This means that unless you can patch Datagrid yourself or wait for the bug to be patched , you'll have to downgrade a few things like JSTL jar file, Web Container that supports JSP 1.2.

Re: Bug

2007-04-28 Thread Martin Cooper
On 4/28/07, Venu Madhav.Yelamanchili [EMAIL PROTECTED] wrote: Rashmi Rubdi wrote: Hi Venu, What version of JSTL are you using? This might be a configuration issue, according to the documentation here: http://jakarta.apache.org/taglibs/sandbox/doc/datagrid-doc/index.html#requirements

Re: Bug

2007-04-28 Thread Rashmi Rubdi
I'm sorry for mentioning a conflicting configuration of JSP, JSTL in my post above. The latest nightly release of DataGrid was on 20060829, which is much more recent than the thread I referred to above which was dated on 2004. So, please ignore my replies above. With very limited information of

Re: Bug

2007-04-28 Thread Martin Cooper
Like I said before, make sure your web.xml file is referencing Servlets 2.4or later. You can have all the latest software, but if your web.xml file is referencing an earlier version of the spec, it won't make any difference. -- Martin Cooper On 4/28/07, Venu Madhav.Yelamanchili [EMAIL

Re: bug in jstl 1.1 c:set?

2004-02-25 Thread Felipe Leme
Aadi, Which version of Tomcat 5 are you running it? I just ran the code below on Tomcat 5.0.16 (and JSTL 1.1.0) and it worked fine: %@ taglib prefix=c uri=http://java.sun.com/jsp/jstl/core; % % request.setAttribute( pqParams, new java.util.HashMap(3) ); % c:set target=${requestScope.pqParams}

Re: bug in jstl 1.1 c:set?

2004-02-25 Thread Aadi Deshpande
Thanks Felipe, It turned out to be a timing issue between 2 machines and code never recompiled. I blew away the work directory and started anew and it was all good. -a Felipe Leme wrote: Aadi, Which version of Tomcat 5 are you running it? I just ran the code below on Tomcat 5.0.16 (and JSTL