<< LaCie d2 | Home | Upgraded >>
Twitter RSS feed for Simon Brown [Twitter] simonbrown: wondering whether Adobe's commercial approach to Flex Builder will limit adoption of Flex ... which will be a shame, because I quite like it

Coding the Architecture RSS feed for Simon Brown [Coding the Architecture] As mentioned before, we were speakers at, and community sponsors of the Software Architect 2008 conference (3rd-5th June 2008, London). This is the first dedicated software architecture conference that I've been to and the majority of the ...

Disabling fast JSTL on Resin 3.0.x

If you're having problems running Pebble on Resin and getting error messages like "too many includes", you'll need to disable Resin's "fast" JSTL implementation. The following snippet shows how to do this if you're deploying Pebble via a web-app element in the RESIN_HOME/conf/resin.conf file.

<web-app id='blog' document-directory='/Users/simon/pebble'> 
  <jsp fast-jstl='false'/> 
  <authenticator> 
    <type>com.caucho.server.security.XmlAuthenticator</type> 
    <init> 
      <user>someuser:password:blog-owner,blog-contributor</user> 
      <password-digest>none</password-digest> 
    </init> 
  </authenticator> 
</web-app>

I'll update the Pebble docs to reflect this.



Re: Disabling fast JSTL on Resin 3.0.x

i still have the same error on resin 3.0.22. i tried your solution but it still does not work. any hints?

Add a comment Send a TrackBack