Previously, my web.xml file read as follows:

<servlet>
    <servlet-name>jetspeed</servlet-name>
    <servlet-class>Turbine</servlet-class>
    <init-param>
        <param-name>properties</param-name>
        <param-value>/WEB-INF/TurbineResources.properties</param-value>
    </init-param>
</servlet>

I recently rebuilt Turbine (today) and wanted to integrate the changes in
with Jetspeed but when I replaced the turbine-2.0.jar file with the latest
build, Tomcat complained that it could not find the class Turbine to load.

Checking the two, I see that Turbine.class is now a member of
org.apache.turbine so I modified the servlet class as follows:
<servlet>
    <servlet-name>jetspeed</servlet-name>
    <servlet-class>org.apache.turbine.Turbine</servlet-class>
    <init-param>
        <param-name>properties</param-name>
        <param-value/WEB-INF/TurbineResources.properties</param-value>
    </init-param>
</servlet>

This loads correctly and at least gets me back to the home/login page.

I am wondering if the Turbine docs should be updated to reflect this class
name change, and if not, why was I unable to locate the class without making
it explicit as noted above?

Thanks

David Ramsey

==============================================================
"Always listen to experts. They'll tell you what can't be
done, and why. Then do it."
-- Lazarus Long, in Robert Heinlein's Time Enough for Love
==============================================================




------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Search: <http://www.mail-archive.com/turbine%40list.working-dogs.com/>
Problems?:           [EMAIL PROTECTED]

Reply via email to