> Does this work in the Windows installations as well? I thought this was a
> function of the startup.sh. I don't see the same code in startup.bat. It
> sure would simplify my Jetspeed life if this worked on my Windows system.
>
> Steve B.

It sure does! These are the steps I followed (for Tomcat standalone on
Windows 98/NT):

* Create "/turbine" context in tomcat
* Put TurbineResources.properties into tomcat's webapps\turbine\conf
* Specify "properties" as "conf\TurbineResources.properties" in web.xml
* Here's my web.xml from webapps\turbine\WEB-INF\

<web-app>
  <servlet>
    <servlet-name>s_turbine</servlet-name>
    <servlet-class>Turbine</servlet-class>
    <init-param>
      <param-name>properties</param-name>
      <param-value>conf\TurbineResources.properties</param-value>
    </init-param>
  </servlet>
  <servlet-mapping>
    <servlet-name>
      s_turbine
    </servlet-name>
    <url-pattern>
      /test/*
    </url-pattern>
  </servlet-mapping>
</web-app>

* I then also put all the jar's in webapps\turbine\WEB-INF\lib
* That's it (I think) - access with "/turbine/test
* The "/test/*" url-pattern could probably also be just "/" to make the
access "/turbine"

Let me know if I missed any details.

Frank Conradie
Opticode Software, South Africa



--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html>
Problems?:           [EMAIL PROTECTED]

Reply via email to