Servlet not found (jsp include)

Trying to include a servlet from a jsp. Put the servlet under the default_web_app\web-inf\classes\<package dir structure>\<servlet class name>, and included it with "<jsp:include page="servlet.package.hierarchy.ServletName" flush="true"/>
That I could think of. OC4J is serving jsps fine through Apache, but OC4J can't find the servlet. Ideas?

<BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Robert Cote ([email protected]):
Added "/servlet/" to the start of the include name -- that fixed it. Now, however, I can't seem to get oc4j to find my beans (located in the same hierarchy). Using <jsp:usebean...> syntax, the usebean statment seems to get processed, but accessing the bean through it's id yields:
Syntax error in source
/mapsis/contacts4_mockup.jsp.java:30: Undefined variable or class name: <bean id>
I'll try messing w/ the syntax, but thanks in advance for any ideas.<HR></BLOCKQUOTE>
Is your bean part of a package ?
Here is an example
<%@ page import="java.sql.* , oracle.jsp.dbutil.*" %>
<jsp:useBean id="cbean" class="oracle.jsp.dbutil.ConnBean" scope="session">
<jsp:setProperty name="cbean" property="User" value="scott"/>
<jsp:setProperty name="cbean" property="Password" value="tiger"/>
<jsp:setProperty name="cbean" property="URL" value="jdbc:oracle:thin:@dlsun:1521:P817"/>
<jsp:setProperty name="cbean" property="PreFetch" value="5"/>
<jsp:setProperty name="cbean" property="StmtCacheSize" value="2"/>
</jsp:useBean>
Hope this helps.. sorry for the delay in replying..

Similar Messages

  • Package javax.servlet not found error

    package javax.servlet not found error. how it can be solved.
    plz help this is my first servlet program.
    vipin

    You need a jar file that has in it the javax.servlet.* classes
    It should be distributed with your servlet/jsp server.
    It can normally be found in a /lib directory under the installation.
    Some examples:
    Tomcat4: install_dir\common\lib\servlet.jar
    Tomcat5: install_dir\common\lib\servlet-api.jar; install_dir\common\lib\jsp-api.jar
    J2sdkee: install_dir/lib/j2ee.jar
    You need to include this jar file in your classpath when you compile any servlet.

  • In WAS Form Based Authentication : Exception Servlet Not Found: FormLoginSe

    Hi,
    I am using form bases athentivation in WebSpahe Application Server.
    When I am send the login.jsp then this exception is comming
    com.ibm.ws.webcontainer.servlet.exception.ServletNotFoundException: Servlet Not Found: FormLoginServlet
    with regards
    Siddharth
    ([email protected])

    Hi,
    I am using form bases athentivation in WebSpahe Application Server.
    When I am send the login.jsp then this exception is comming
    com.ibm.ws.webcontainer.servlet.exception.ServletNotFoundException: Servlet Not Found: FormLoginServlet
    with regards
    Siddharth
    ([email protected])

  • Why i get servlet exception/login servlet not found exception  with .ear ?

    I am able to deploy my war and after that generating the ear from that. both works fine in local system.
    But when i run (Jboss as service[Java Service Wrapper]) it takes war without any problem.But with ear file i am getting servlet not found exception.I can't understand where this problem is coming from.
    Even if i take my JSPWIki ear which is running well in production server, this also gives same error.
    One more thing, the files, what i am running well in local system i.e. war and ear working fine. (can't test in production server so testing in same kind of testing server) there also getting login servlet not found exception. Even in same location other files which are deployed are working fine.out of 4 at least one is working fine.
    I don't undersatnd where this whole problem is .
    Please guiide me where sholud i concentrate to solve this problem.
    thnaks
    Vijendra

    I took the source code including the dll files already added to the project from here:
    spazzarama/Direct3DHook
    The solution include two projects the one name Capture is class library type and the dll that make the exception is in this project.
    I tried now to use the program Dependency Walker on this dll file and it found error/s:
    This is the log:
    Error: At least one required implicit or forwarded dependency was not found.
    Error: At least one module has an unresolved import due to a missing export function in an implicitly dependent module.
    Error: Modules with different CPU types were found.
    Warning: At least one delay-load dependency module was not found.
    Screenshot:
    It happen only when using/detecting Direct3D 11 . So far only in Direct3D 11, When i use it with a game that run Direct3D 9 it's working fine.
    The question is how can i solve this dll problem ? Any site/place to download this dll from ?

  • Servlet not found(404) in linux

    i have java1.4,tomcat3.3.1 and apache2. i want to connect tomat and apache using mod_jk in debian Linux. when i create a Test apllication in webapps called "TestApplication" with a class TestServlet.class.(this is just a Servlet class to print Hello Servlet)
    when i request
    http://localhost:8080/TestApplication/servlet/TestServlet
    http://localhost:8080/TestApplication/servlet/TestServlet
    i am getting servlet not found 404.
    and also in the tomcat i am getting the following messages
    -Ctx(/TestApplication)Class NotFound:TestServlet
    -Ctx(/TestApplication)Status Code:404 request(TestApplication+/servlet+null) msg: null
    JAVA_HOME=/opt/java
    PATH=/opt/java/bin
    TOMCAT_HOME=/opt/tomcat
    and this is my web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    <web-app>
    <servlet>
    <servlet-name>Servlet_TestServlet</servlet-name>
    <display-name>Servlet TestServlet</display-name>
    <description>Default configuration created for Servlet.</description>
    <servlet-class>TestServlet</servlet-class>
    </servlet>
    <servlet-name>Servlet_TestServlet</servlet-name>
    <url-pattern>/servlet/TestServlet</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>
    30
    </session-timeout>
    </session-config>
    </web-app>
    and this is my mod_jk.conf file
    <IfModule !mod_jk.c>
    LoadModule jk_module /usr/lib/apache/1.3/mod_jk.so
    </IfModule>
    JkWorkersFile "/opt/tomcat/conf/jk/workers.properties"
    JkLogFile "/opt/tomcat/logs/mod_jk.log"
    JkLogLevel emerg
    JkMount /admin ajp13
    JkMount /admin/* ajp13
    JkMount /examples ajp13
    JkMount /examples/* ajp13
    JkMount /TestApplication ajp13
    JkMount /TestApplication/* ajp13
    when i run tomcat it is showing this application as mounted.
    i think i made everythig fine but i am getting not found 404 message.
    can any one help me..

    Servlets belong to the web-inf/classes dir.
    In web-inf a web.xml file should be saved:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
        PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
        "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
      <display-name>Welcome to Tomcat</display-name>
      <description>
         Welcome to Tomcat
      </description>
        <servlet-mapping>
            <servlet-name>invoker</servlet-name>
            <url-pattern>/servlet/*</url-pattern>
        </servlet-mapping>
    </web-app>Andreas

  • On make: variable not found in include file (it's in including page)

    JDeveloper 10.1.2.1.0 build 1913
    I'm new to JDeveloper and finally have things set up correctly but when I try to make/run my app (java/beans/jsp) I get the "variable not found" error;
    Error(25,16): variable subActionName not found in class includes.vendorSubsidiaries
    since the variable is defined in the including page.
    I found this thread from 2 years ago:
    JSP Static Include in JDeveloper
    that was exactly the same....but had no resolution.
    Hopefully over the last 2 years someone knows the answer to this dilemna.
    thanks.

    Hi,
    I was able to make xerces.jar available in OC4J 9.0.3 but now I got problem with JMS.
    I got the following exception:
    java.lang.ClassCastException: com.evermind.util.CharString
    at com.evermind.server.jms.JMSExpressionParser.processParts(JMSExpressionParser.java:49)
    at com.evermind.parser.ExpressionParser.parseParts(ExpressionParser.java:449)
    at com.evermind.parser.ExpressionParser.parse(ExpressionParser.java:121)
    at com.evermind.server.jms.MessageSelector.<init>(MessageSelector.java:23)
    at com.evermind.server.jms.MessageSelector.getSelector(MessageSelector.java:54)
    at com.evermind.server.jms.LocalQueueConnection.receive(LocalQueueConnection.java:56)
    at com.evermind.server.jms.EvermindQueueSession.receive(EvermindQueueSession.java:241)
    at com.evermind.server.jms.EvermindQueueReceiver.receiveNoWait(EvermindQueueReceiver.java:85)
    at com.nrx.job.JobManager.receive(JobManager.java:167)
    at com.nrx.repository.appServer.SearchServlet.service(SearchServlet.java:120)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:721)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
    at java.lang.Thread.run(Unknown Source)
    I don't get this exception if I use Oracle XML parsing classes. They use crimson.jar.
    Thanks a lot,
    Andrei.

  • 404 Not Found : Servlet not found on this server

    I have been trying to run a simple servlet from a JSP page. For some reason I keep getting an error informing me that the servlet in question cannot be found on the server. I have incuded some code from my project in the hope that it may provide a clue to the problem. I would appreciate any help.
    from the web.xml file
    <servlet>
    <servlet-name>MapTestServlet</servlet-name>
    <servlet-class>Common.MapTestServlet</servlet-class>
    </servlet>
    from the JSP page
    <FORM ACTION="\PATSCoreROC\classes\Common.MapTestServlet" METHOD="post">
    <INPUT TYPE="SUBMIT" NAME="Test" VALUE="Test Servlet">
    </FORM>
    Clicking the Test Servlet button produces the following 404 error in the browser
    404 Not Found
    Resource /PATSCoreROC/classes/Common.MapTestServlet not found on this server

    After a little work and some coffee I tried the following and it resolved my problem.
    <FORM ACTION="servlet\Common.MapTestServlet" METHOD="post">
    <INPUT TYPE="SUBMIT" NAME="Test" VALUE="Test Servlet">
    </FORM>
    I should have included 'servlet\' in the ACTION property.

  • Servlet not found !

    Hi all,
    I have a war file to deploy under Sun ONE 7Update 4, when i deploy it i call a jsp page in it and it is displyed.
    When from this page i call a servlet as :
    http://localhost/test/servlet/db
    I got an error 404 that the resource /test/servlet/db is not found, but in the web.xml the servlet is mapped like :
    <servlet>
    <servlet-name>db</servlet-name>
    <servlet-class>org.test.db</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>db</servlet-name>
    <url-pattern>/db</url-pattern>
    </servlet-mapping>
    Any suggestion ?
    Cheers.
    Stefano

    Try http://localhost/test/db

  • How To Configure JRun Classpath--Servlets Not Found

    How do I get JRun to pick up my classes in Unix? I have a WAR
    application that works fine in Windows on a local copy of JRun4. If
    I deploy it to Unix (making sure I haven't introduced any issues
    such as ^M characters, of course), I find that my JSPs can be
    picked up but the first time I attempt to access a servlet, it
    turns up not found. The Servlet .class file is located in the
    correct package in the WEB-INF/classes/ directory. Although I
    should have been able to access it by mapping the URL in the
    web.xml (which doesn't work even on the Windows copy, subject of
    another question), even when I give the explicit name of the
    servlet, i.e. /servlet/com.myco.myservlet.MyServlet, it is not
    found.
    Please explain to me what I have to do to permit my Servlets
    to be picked up. I have tried putting an explicit classpath in the
    startup script, i.e.: -cp
    ./.../servers/default/mywar/WEB-INF/classes/ but it does not make a
    whit of difference. What gives? What must I do so that my classes
    are picked up?
    Thank you.

    Hi, Guenther:
    You can use <error-page> element of web.xml. Add an element to your web.xml like
    <error-page>
    <error-code>404</error-code>
    <location>/404.jsp</location>
    </error-page>
    or
    <error-page>
    <exception-type>java.io.IOException</exception-type>
    <location>/myException.html</location>
    </error-page>
    Both of them work when I try 10.1.2. This mechanism is a j2ee standard. You might want to search the web for "error-page" and "web.xml" or look at the j2ee specfication. Hope this helps you.

  • Driver class 'org.gjt.mm.mysql.Driver' not Found JSP

    OS ->Windows XP Pro
    Tomcat version ->4.0.1
    jdk version -> 1.3.1
    database -> mysql
    Classpath = .;C:\jakarta-tomcat-4.0.1\common\lib\servlet.jar;C:\jakarta-tomcat-4.0.1\common\lib\mm.mysql.jdbc-1.2c\mysql_uncomp.jar;
    I am trying to run a function in a javabean to startup up a connection to a database. Code as follows...
    public void connect() throws ClassNotFoundException,
    SQLException,
    Exception {
    try {
    Class.forName("org.gjt.mm.mysql.Driver").newInstance();
    con = DriverManager.getConnection(
    "jdbc:mysql://localhost/Wrox ?user=root&password=lunchbox ");
    } catch (ClassNotFoundException cnfe) {
    error = "ClassNotFoundException: Could not locate DB driver.";
    throw new ClassNotFoundException(error);
    } catch (SQLException cnfe) {
    error = "SQLException: Could not connect to database.";
    throw new SQLException(error);
    } catch (Exception e) {
    error = "Exception: An unknown error occurred while connecting " +
    "to database.";
    throw new Exception(error);
    I call it from my jsp page code as follows.. connect in bold
    <%@ page language="java"
    import="java.sql.*, java.io.*, java.util.*, com.wrox.databases.*"
    errorPage="error.jsp" %>
    <jsp:useBean id="book" class="com.wrox.databases.Books" />
    <html>
    <head>
    <title> Wrox Press Ltd. </title>
    </head>
    <body>
    <h1> Wrox Press Ltd.</h1>
    <h2> List of Books </h2>
    <b>Add More Books</b>
    <form action="delete.jsp" method="post">
    <table border="1">
    <tr>
    <td><b>ID:</b></td>
    <td><B>Title:</b></td>
    <td><B>Price:</b></td>
    </tr>
    <%
    book.connect();
    ResultSet rs = book.viewBooks();
    while (rs.next()) {
    %>
    <tr>
    <td>
    <input type="checkbox" name="pkey"
    value="<%= rs.getString("Title_ID") %>" />
    </td>
    <td><%= rs.getString("Title") %></td>
    <td><%= rs.getString("Price") %></td>
    </tr>
    <%
    %>
    </table>
    Check books for deletion.<BR>
    <input type="submit" value="Delete All Checked Books">
    </form>
    <% book.disconnect(); %>
    </body>
    </html>
    The name of the bean is correct and so is the package it is stored under. I tried it in the bean and got "ClassNotFoundException" Could not locate DB driver". I tried it with DBtags and got
    Driver class 'org.gjt.mm.mysql.Driver' not Found
    any help would be really appreciated.

    When using any 3rd party library with tomcat. the jar file of that library has to be put in the WEB-INF/lib directory of your application. Then only tomcat will find it.
    So the my-sql driver would have come in a jar file. just put that jar file in the WEB-INF/lib directory.
    After that things should work. If they don't please post again.
    hope this helps.
    regards,
    Abhishek.

  • Javax.servlets not found

    when i try to import the javax.servlet's, it is not found... any idea where i can go toget that? i downloaded the seperate elipse for J2EE and tried it on there, and i also tried it on the eclipse for regular java developers.
    thanks
    update: it turns out that eclipse has a # of requirements that it needs to get the WTP, i'll appreciate any assistance in directing me toward the files.
    Edited by: ixxalnxxi on Jun 17, 2008 3:30 AM

    No, you need to specify the application server in the eclipse project. Then it will take its libraries in the build path.
    You may find this tutorial useful, you can just skip the JSF part if you aren't planning to use it: [http://balusc.blogspot.com/2008/01/jsf-tutorial-with-eclipse-and-tomcat.html].

  • Class not found - JSP

     

    So, you have your NewLoginValidator class under:
              \weblogic\myserver\servletclasses\example\input\validate\NewLoginValidator.c
              lass
              Right?
              Try giving the full package name of the class. If it still doesn't find it,
              then it's clearly not in that package and does not exist. Make sure that you
              have "\weblogic\myserver\servletclasses" in your weblogic.class.path command
              line env variable.
              "Mark Sellers" <[email protected]> wrote in message
              news:[email protected]...
              > I tried it and still get the error. Any other ideas?
              >
              > Thx,
              > Mark
              >
              > "Wei Guan" <[email protected]> wrote in message
              > news:[email protected]...
              > > Put your support class under c:\weblogic\myserver\serverclasses and give
              a
              > > try.
              > >
              > > --
              > > Cheers - Wei
              > > Mark Sellers <[email protected]> wrote in message
              > > news:[email protected]...
              > > > I'm trying to get this JSP page to work, it references multiple
              > JavaBeans.
              > > > The JSP looks like this:
              > > > <%@ page import="example.input.*, example.input.validate.*" %>
              > > > <%@ page import "com.onvia.sitemap.*" %>
              > > >
              > > > <jsp:useBean id="newLogin" scope="page"
              class="example.input.NewLogin"/>
              > > > <jsp:setProperty name="newLogin" property="*"/>
              > > >
              > > > <%
              > > > NewLoginValidator validator = new NewLoginValidator();
              > > >
              > > > try {
              > > > validator.validate(newLogin);
              > > > } catch(InputValidationException e) {
              > > > out.println("<html><pre>EXCEPTION:\n" + e.getMessage() +
              > > > "</pre></html>");
              > > > return;
              > > > }
              > > >
              > > > %>
              > > >
              > > > <html>
              > > > <body>
              > > > Account for <%= newLogin.getUserName() %> created.
              > > > </body>
              > > > </html>
              > > >
              > > > I've got the classes in a folder structure that matches the package:
              > > > example/input/validate under the c:\weblogic\myserver\classfiles\
              > folder.
              > > >
              > > > When I try and run the JSP page, I get:
              > > > Compilation of
              > > > 'C:\weblogic\myserver\classfiles\jsp_servlet\_jsp\_newlogin.java'
              > failed:
              > > >
              > >
              >
              > --------------------------------------------------------------------------
              > > --
              > > > ----
              > > >
              > > > C:\weblogic\myserver\classfiles\jsp_servlet\_jsp\_newlogin.java:118:
              > Class
              > > > jsp_servlet._jsp.NewLoginValidator not found.
              > > > probably occurred due to an error in /jsp/NewLogin.jsp line 9:
              > > > NewLoginValidator validator = new NewLoginValidator();
              > > >
              > > > C:\weblogic\myserver\classfiles\jsp_servlet\_jsp\_newlogin.java:118:
              > Class
              > > > jsp_servlet._jsp.NewLoginValidator not found.
              > > > probably occurred due to an error in /jsp/NewLogin.jsp line 9:
              > > > NewLoginValidator validator = new NewLoginValidator();
              > > >
              > > > C:\weblogic\myserver\classfiles\jsp_servlet\_jsp\_newlogin.java:122:
              > Class
              > > > jsp_servlet._jsp.InputValidationException not found.
              > > > probably occurred due to an error in /jsp/NewLogin.jsp line 13:
              > > > } catch(InputValidationException e) {
              > > >
              > > > What am I missing/doing wrong? I can get a simple JSP page with one
              > > > JavaBean to work, but not this!?!
              > > >
              > > > TIA,
              > > > Mark Sellers
              > > >
              > > >
              > >
              > >
              >
              >
              

  • Servlet not found error

    Hi everyone,
    i am trying to write a chat application using applet,servlet and RMI.
    so i have my servlet and aaplets accordingly...
    but when i put my servlet and applets in their respective folder of tomcat,i am getting and error..which is as follows....
    Resource not found: http://10.0.2.65:8080/servlet/ChatServlet
    The configuration that i am using is:
    1)win XP
    2)Tomcat5.1
    3)JDK 1.5
    my servlet file is 'ChatServlet.class',which is placed in a package(or folder) called 'servlet'...
    so i have place the whole package(servlet) in WEB-INF...
    and the mapping that i have given in web.xml is as follows:
    <servlet>
    <servlet-name>ChatServlet</servlet-name>
    <servlet-class>ChatServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>ChatServlet</servlet-name>
    <url-pattern>/ChatServlet</url-pattern>
    </servlet-mapping>
    NOW is that mapping correct??
    Do you find anything wrong in the way i have put my files in Tomcat??
    and also if possible please tell me for what is these mapping in web.xml used??
    thanx in advance

    thanx a lot for the reply...
    i did put the full class name of the servlet....but had no success....
    now my maaping is as follows:
    <servlet>
    <servlet-name>ChatServlet</servlet-name>
    <servlet-class>servlet/ChatServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>ChatServlet</servlet-name>
    <url-pattern>/ChatServlet</url-pattern>
    </servlet-mapping>

  • Servlet not found exception.

    I have deployed war file on weblogic server. when i try to fetch some
              servlet from web browser say, http://localhost:7001/myapp/myservlet ,
              sometimes i get the following error " /myapp/myservlet not found ".
              but on the other hand sometimes it does retrieves it properly. Does any body
              know how to solve this problem?
              Any help in this regard is appreciated.
              Thanks
              -Shree
              

    Hello
    More info is needed. What is the name of the application given in the descriptor file? what is the welcome file? How are you invoking it?
    Regards
    Alejandro

  • Why we need to restart server when we compile servlet (not for jsp)

    hi
    why we need to restart server/appln when we compile servlet .
    same thing is not true for jsp
    as jsp converts to servlets then also it need not require restart of server/appln.
    Danny

    Dear Friends
    I hope you guys are doing something with tomcat , So please help me.
    can anyone solve my problem.
    I am starting my tomcat using startup and the dos window just closes after opening . I don't know why?
    The errors generated are as:
    Using CATALINA_BASE: C:\TOMCAT 4_1_30\jakarta-tomcat-4.1.29
    Using CATALINA_HOME: C:\TOMCAT 4_1_30\jakarta-tomcat-4.1.29
    Using CATALINA_TMPDIR: C:\TOMCAT 4_1_30\jakarta-tomcat-4.1.29\temp
    Using JAVA_HOME: C:\jdk1.3.0_02
    Catalina.start: java.util.MissingResourceException: Can't find bundle for base name org.apache.coyote.tomcat4.LocalStrings, locale en_US
    java.util.MissingResourceException: Can't find bundle for base name org.apache.coyote.tomcat4.LocalStrings, locale en_US
         at org.apache.commons.digester.Digester.createSAXException(Digester.java:2540)
         at org.apache.commons.digester.Digester.createSAXException(Digester.java:2566)
         at org.apache.commons.digester.Digester.startElement(Digester.java:1276)
         at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
         at org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at org.apache.commons.digester.Digester.parse(Digester.java:1548)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:449)
         at org.apache.catalina.startup.Catalina.execute(Catalina.java:400)
         at org.apache.catalina.startup.Catalina.process(Catalina.java:180)
         at java.lang.reflect.Method.invoke(Native Method)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)
    Using CATALINA_BASE: C:\TOMCAT 4_1_30\jakarta-tomcat-4.1.29
    Using CATALINA_HOME: C:\TOMCAT 4_1_30\jakarta-tomcat-4.1.29
    Using CATALINA_TMPDIR: C:\TOMCAT 4_1_30\jakarta-tomcat-4.1.29\temp
    Using JAVA_HOME: C:\jdk1.3.0_02
    Catalina.start: java.util.MissingResourceException: Can't find bundle for base name org.apache.coyote.tomcat4.LocalStrings, locale en_US
    java.util.MissingResourceException: Can't find bundle for base name org.apache.coyote.tomcat4.LocalStrings, locale en_US
         at org.apache.commons.digester.Digester.createSAXException(Digester.java:2540)
         at org.apache.commons.digester.Digester.createSAXException(Digester.java:2566)
         at org.apache.commons.digester.Digester.startElement(Digester.java:1276)
         at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
         at org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at org.apache.commons.digester.Digester.parse(Digester.java:1548)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:449)
         at org.apache.catalina.startup.Catalina.execute(Catalina.java:400)
         at org.apache.catalina.startup.Catalina.process(Catalina.java:180)
         at java.lang.reflect.Method.invoke(Native Method)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)
    i need your help desperately.
    I hope you will respond soon.
    thanks
    vishal

Maybe you are looking for