Re: EL not being evaluated?

2004-02-06 Thread Kris Schneider
Personally, I'd keep JSTL/Standard in WEB-INF/lib and Xerces/Xalan in endorsed. Unless I needed an app-specific version of the XML libs, in which case I'd need them in WEB-INF/lib. I wouldn't recommend dumping everything in endorsed, or some other directory that a shared classloader can access,

xml parsing difference 1.1 vs 1.0

2004-02-06 Thread Wim Goossens
When I use the 1.1 standard and jstl jars, it takes ages to complete an xml parsing. With standard 1.0 I get an immediate result (for 300 records, for 20 records there is no problem). What could i be doing wrong ? (i am using tomcat 5.0.18 , j2sdk1.4.2_03) This is my jsp code : %@ taglib

Re: xml parsing difference 1.1 vs 1.0

2004-02-06 Thread Kris Schneider
The taglib URIs are not the same for 1.0 and 1.1. JSTL 1.0: http://java.sun.com/jstl/core http://java.sun.com/jstl/xml JSTL 1.1: http://java.sun.com/jsp/jstl/core http://java.sun.com/jsp/jstl/xml AFAIK, 1.0 and 1.1 parse XML the same way. What may have changed is the way x:forEach is handled.

Re: POST vs GET

2004-02-06 Thread James Mitchell
Did you forget to set gibberish=false in your web.xml? ;) -- James Mitchell Software Engineer / Struts Evangelist http://www.struts-atlanta.org 678.910.8017 (cell) AIM: jmitchtx MSN: [EMAIL PROTECTED] - Original Message - From: Evgeny Gesin [EMAIL PROTECTED] To: Tag Libraries Users

Re: POST vs GET

2004-02-06 Thread Evgeny Gesin
Here is my JSP for your review :) html head script language=HebrewHello World!/script titleCreate Once Debug Everywhere/title meta http-equiv=content-type content=wrong/un-clear; charset=ANY script language=Russian src=/cgi-bin/ru/Lenin.js/script /head body bgcolor=RED ... etc... --- James

Re: Problems with JSTL 1.1 and Tomcat 5 : UnresolvableException: $prefix:javax.servlet.include.query_string

2004-02-06 Thread Aadi Deshpande
The latest build of Tomcat still has this problem, if anyone was following along. Thanks again for the help ; I'll try grepping the tomcat-users mailing list for some help. -a Aadi Deshpande wrote: See, I _knew_ I was overlooking something ( like a basic understanding of Bugzilla) !

Re: Problems with JSTL 1.1 and Tomcat 5 : UnresolvableException: $prefix:javax.servlet.include.query_string

2004-02-06 Thread Kris Schneider
Can you post a small example of a JSP that fails? Quoting Aadi Deshpande [EMAIL PROTECTED]: The latest build of Tomcat still has this problem, if anyone was following along. Thanks again for the help ; I'll try grepping the tomcat-users mailing list for some help. -a Aadi Deshpande

Re: JSTL: POST vs GET

2004-02-06 Thread Kris Schneider
Can you post a little more detail on what you mean by adding JSTL? Which tags are you using? Quoting Evgeny Gesin [EMAIL PROTECTED]: After adding JSTL to UTF-8 encoded JSP pages all form data sent via GET are gibberish. The POST does work. What can be the problem? Evgeny /Javadesk/ --

Re: JSTL: POST vs GET

2004-02-06 Thread Evgeny Gesin
Hi, I will provide a little more information, may be that will be important. 1. I use an in-house developed Tiles, similar to Struts, so each page is make up of of dinamically included pages, for example, header, content and footer JSPs. 2. I use only i18n from JSTL package, so web.xml have a

Re: JSTL: POST vs GET

2004-02-06 Thread Hans Bergsten
Evgeny Gesin wrote: Hi, I will provide a little more information, may be that will be important. 1. I use an in-house developed Tiles, similar to Struts, so each page is make up of of dinamically included pages, for example, header, content and footer JSPs. 2. I use only i18n from JSTL package, so