The Artima Developer Community
Sponsored Link

Java Buzz Forum
Disabling fast JSTL on Resin 3.0.x

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Simon Brown

Posts: 636
Nickname: simonbrown
Registered: Jun, 2003

Simon Brown is a Java developer, architect and author.
Disabling fast JSTL on Resin 3.0.x Posted: Jun 20, 2005 8:59 AM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Simon Brown.
Original Post: Disabling fast JSTL on Resin 3.0.x
Feed Title: Simon Brown's weblog
Feed URL: http://www.simongbrown.com/blog/feed.xml?flavor=rss20&category=java
Feed Description: My thoughts on Java, software development and technology.
Latest Java Buzz Posts
Latest Java Buzz Posts by Simon Brown
Latest Posts From Simon Brown's weblog

Advertisement

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.

Read: Disabling fast JSTL on Resin 3.0.x

Topic: Consolidated Health News for the week ending June 12, 2005 Previous Topic   Next Topic Topic: Understanding Context Aware Trackback Spamming: New Frontiers in Web Spamming

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use