I have been using Turbine with WebLogic 6.1. I have included my web.xml and
config.xml files...

Here is my web.xml file
-------------------------

<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application
1.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd";>

<web-app>
    <servlet>
        <servlet-name>
           jekyll
        </servlet-name>
        <servlet-class>
            org.apache.turbine.Turbine
        </servlet-class>
        <init-param>
            <param-name>properties</param-name>
            <!-- This is relative to the docBase -->
            <param-value>
                /WEB-INF/conf/TurbineResources.properties
            </param-value>
        </init-param>
    </servlet>
    <servlet-mapping>
      <servlet-name>jekyll</servlet-name>
      <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>

-------------------

Here is the config.xml file snippet -

    <Application Deployed="true" Name="jekyll"
Path=".\config\GhxDomain\applications">
        <WebAppComponent Name="jekyll" SessionMonitoringEnabled="true"
            Targets="GhxServer" URI="jekyll"/>
    </Application>



-----Original Message-----
From: Daniel Rall [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 06, 2001 11:27 AM
To: Turbine Users List
Cc: 'Samanth Athrey'
Subject: Re: turbine & weblogic


"Gareth Coltman" <[EMAIL PROTECTED]> writes:

> servlet mapping is not part of the servlet element. it is an
> independent element: put it outside the servlet element.

And in Catalina, be sure that all servlet-mapping entries occur in
your web.xml *after* all servlet entries.

--
To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to