that did the trick, thanks Gregory! well...at least a little. When I delete the 
java and class files, it works exactly one time, then I have to delete them 
again, so it seems that Catalina doesn't reload the web app automatically if 
any changes are detected. If I got that right, that setting gets handled by the 
development setting in tomcat/conf/web.xml
[code]
    <servlet>
        <servlet-name>jsp</servlet-name>
        <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
        <init-param>
            <param-name>fork</param-name>
            <param-value>false</param-value>
        </init-param>
        <init-param>
            <param-name>development</param-name>
            <param-value>true</param-value>
        </init-param>
        <init-param>
            <param-name>xpoweredBy</param-name>
            <param-value>false</param-value>
        </init-param>
        <load-on-startup>3</load-on-startup>
    </servlet>[/code]

But as you can see this is already set to true, so Catalina should monitor for 
changes, right?

-- 
Context is everything: 
http://forum.magnolia-cms.com/forum/thread.html?threadId=2aa77716-16aa-4478-8d5d-115da1583712


----------------------------------------------------------------
For list details, see http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: <[email protected]>
----------------------------------------------------------------

Reply via email to