[Resin-interest] Fwd: Re: Security Manager

2007-08-09 Thread Daniel Lopez
If Resin/Your application is starting without problems and you have nothing granted in your policy file, then it is sure the policy is not being applied :). We have one of our nodes configured in a similar manner and you have, at the very minimum, to grant permissions to the Caucho classes to

[Resin-interest] class-loader/ in web-app/ fails after resin 3.0.18 for one jar

2007-08-09 Thread Anders 2
Hi all, I have a tricky case that someone might shed some light on or give me some hints. I have run out of ideas. My customer used to load dependency jars through class-loader/ tag in resin.conf. Something like this ... web-app id='/LDAPSoek'

Re: [Resin-interest] Servlet exception using c:out with EL

2007-08-09 Thread Hans Loeblich
Am I the only one that has this problem? Hans Hans Loeblich wrote: I am getting the following error when trying to use the JSTL c:out on a page: EL expression '${app.main_category}' is only allowed for attributes with rtexprvalue='true'. I checked the tld, and rtexprvalue is indeed set to

Re: [Resin-interest] Servlet exception using c:out with EL

2007-08-09 Thread Serge Knystautas
Hans Loeblich wrote: Am I the only one that has this problem? You might want to Google upgrading from JSP 1.1 to JSP 2.0. The rtexprvalue to true was the older way of doing things in JSP 1.1 when the JSP itself did not handle EL. With JSP 2.0 (which Resin 3 implements) you would want

Re: [Resin-interest] Servlet exception using c:out with EL

2007-08-09 Thread Mike Wynholds
I *think* that with JSP 2.0 you want your taglib declaration to look like this: %@ taglib prefix=c uri=http://java.sun.com/jsp/jstl/core; % the old way was this: %@ taglib prefix=c uri=http://java.sun.com/jstl/core; % the different is the /jsp in there that is added. I am not 100% sure about