You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by "Akhthar Parvez. K" <ak...@carmatec.com> on 2004/11/10 12:58:33 UTC

jsps are not working

Hi All,

I am unable to see the jsp webpages. All I could see that the default page.
My server contains more than 100 websites and for none of them it's working. 
I have installed it through cPanel. I have enabled tomcat for some websites 
already. Please let me know what I am missing:)

-- 
With Regards,

Akhthar Parvez.K
Carmatec Solutions

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org


RE: jsps are not working

Posted by Steve Kirk <to...@web-startup.co.uk>.
Quick guess: check that you have the default JSP servlet and mapping
enabled.  by default this is generally found in two separate chunks within
the web.xml of your tomcat's conf directory and looks a bit like this: 

    <servlet>
        <servlet-name>jsp</servlet-name>
        <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
    </servlet>

    <!-- The mapping for the JSP servlet -->
    <servlet-mapping>
        <servlet-name>jsp</servlet-name>
        <url-pattern>*.jsp</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>jsp</servlet-name>
        <url-pattern>*.jspx</url-pattern>
    </servlet-mapping>

> -----Original Message-----
> From: David Stevenson [mailto:hoagy@ytfc.com] 
> Sent: Wednesday 10 November 2004 12:06
> To: Tomcat Users List
> Subject: Re: jsps are not working
> 
> 
> On 10/11/04 11:58, "Akhthar Parvez. K" <ak...@carmatec.com> wrote:
> 
> > Please let me know what I am missing
> 
> Sufficient detail in your question.
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: tomcat-user-help@jakarta.apache.org
> 
> 



---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org


Re: jsps are not working

Posted by David Stevenson <ho...@ytfc.com>.
On 10/11/04 11:58, "Akhthar Parvez. K" <ak...@carmatec.com> wrote:

> Please let me know what I am missing

Sufficient detail in your question.


---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org