runner-

org.apache.turbine.Turbine

In case you are wondering why, the answer is in the web.xml file:

<web-app>
    <servlet>
        <servlet-name>
           newapp
        </servlet-name>
        <servlet-class>
            org.apache.turbine.Turbine
        </servlet-class>

 ...

so to break down the URL: 

http://localhost:8080/newapp           gets you to the newapp context,
                            /servlet      is tells tomcat to call a servlet
                                    /newapp   is the servlet name that is 
                                              mapped to
                                              org.apache.turbine.Turbine in
                                              web.xml

On Thu, 21 Mar 2002 18:06:17 +0800
runner <[EMAIL PROTECTED]> wrote:

> Hey,there.
> I am a newbie in the user group, I am trying to study
> the framework of Turbine.
> Is there any one can help me what object Turbines Servelet invokes next when
> I input the URL
> http://localhost:8080/newapp/servlet/newapp ??
> 
> 
> --
> 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