Hi,
   You may use the following config..

<servlet>
     <servlet-name>myFoo</servlet-name>
     <jsp-file>myJSPfile.jsp</jsp-file>
</servlet>

<servlet-mapping>
     <servlet-name>myFoo</servlet-name>
     <url-pattern>/main</url-pattern>
</servlet-mapping>

 Or do a redirection from one of your servlets to the JSP.... Hope this
helps.!!





2009/8/30 Dhwani Patel <swami.learningj...@gmail.com>

> Hello all,
>
> I need your help to figure out the problem for my first basic Web
> application.
>
> My web.xml file contains,
>
> <?xml version="1.0" encoding="UTF-8"?>
> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee";
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="
> http://java.sun.com/xml/ns/javaee
> http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd";>
>
>    <servlet>
>         <servlet-name>MyOwnServlet</servlet-name>
>         <servlet-class>myownpackage.MyOwnServlet</servlet-class>
>
>         </servlet>
>     <servlet>
>         <servlet-name>MyOwnServlet2</servlet-name>
>         <servlet-class>MyOwnServlet2</servlet-class>
>     </servlet>
>     <servlet-mapping>
>         <servlet-name>MyOwnServlet</servlet-name>
>         <url-pattern>/MyOwnServlet</url-pattern>
>     </servlet-mapping>
>     <servlet-mapping>
>         <servlet-name>MyOwnServlet2</servlet-name>
>         <url-pattern>/MyOwnServlet2</url-pattern>
>     </servlet-mapping>
>     <session-config>
>         <session-timeout>
>             30
>         </session-timeout>
>     </session-config>
>      <welcome-file-list>
>         <welcome-file>MyOwnJSP2.jsp</welcome-file>
>         </welcome-file-list>
>
>     </web-app>
> Evenif i am setting MyOwnJSP2.jsp as welcome file when i run my project it
> leads me to MyOwnservlet instead of jsp page.
>
> Can any1 tell me what could be the solution for this ? and why its
> happening ?
>
> I appreciate your time and response,
> Thanks,
>
> --
> Dhwani Patel
>
> >
>


-- 
Sangram

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Java EE (J2EE) Programming with Passion!" group.
To post to this group, send email to
java-ee-j2ee-programming-with-passion@googlegroups.com
To unsubscribe from this group, send email to
java-ee-j2ee-programming-with-passion+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/java-ee-j2ee-programming-with-passion?hl=en?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to