Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a remote tomcat 6.0.24 server on which there is a web-app. Now when I type in a specific url ( website/wordbank/xmldictionaryservice ) that is mapped on the server I get the following:

HTTP Status 404 - Servlet xmldictionaryserviceservlet is not available

type: Status report

message: Servlet xmldictionaryserviceservlet is not available

description: The requested resource (Servlet xmldictionaryserviceservlet is not available) is not available.

...where I'm expecting a tiny form with a file selector and a submit button.

The relevant part of the web.xml is here:

<web-app>
...
    <servlet>
        <servlet-name>xmldictionaryserviceservlet</servlet-name>
        <servlet-class>wordbank.servlets.XMLDictionaryServiceServlet</servlet-class>
    </servlet>
...
    <servlet-mapping>
        <servlet-name>xmldictionaryserviceservlet</servlet-name>
        <url-pattern>/xmldictionaryservice</url-pattern>
    </servlet-mapping>
...
</web-app>

The contents of the xmldictionaryservice.jsp:

<html>
<body>

<form action="xmldictionaryservice" method="post" enctype="multipart/form-data">
<input name="xmlfile" type="file">
<input name="send" type="submit">
</form>

</body>
</html>

The directory tree is:

webapps
 |
 ...
 +-wordbank
    |
    ...
    +-xmldictionaryservice.jsp
    +-WEB-INF
       |
       +-web.xml
       +-classes
          |
          +-wordbank
             |
             ...
             +-servlets
                |
                ...
                +-XMLDictionaryServiceServlet.class

I have checked the various similar threads, but they haven't helped me. Does anyone have an idea of what is wrong here?

share|improve this question
how are you accessing the jsp? what is the url? – Ramesh PVK Jun 21 '12 at 10:32
Could be anything. Did you check your logs? Are you actually including the context in your form's action and not showing it here? – Dave Newton Jun 21 '12 at 10:46
RameshPVK the url is websitename.TLD/wordbank/xmldictionaryservice @DaveNewton I'm not hiding anything in the form. The logs show this: Jun 19, 2012 1:42:48 PM org.apache.catalina.core.StandardWrapperValve invoke INFO: Servlet xmldictionaryserviceservlet is currently unavailable – Litir Jun 21 '12 at 11:31

4 Answers

Servlet xmldictionaryserviceservlet is not available

This particular Tomcat-specific message means that the following has under Tomcat's covers failed during webapp's startup:

String servletClass = "wordbank.servlets.XMLDictionaryServiceServlet";
String servletUrlPattern = "/xmldictionaryservice";

Servlet servlet = (Servlet) Class.forName(servletClass).newInstance();
servlet.init(servletConfig);
servlets.put(servletUrlPattern, servlet);

So, the possible causes are at least that the servlet class cannot be found, or that the servlet's default constructor does not exist or threw an exception, or that the init() method threw an exception, or that the class does not implement Servlet (read: extend HttpServlet) at all.

Information about this problem should be available early in the server log, during the startup. Read your server log once again to find the real exception and stacktrace and fix the servlet class accordingly.

share|improve this answer

I had the wrong idea. As posted by BalusC, Tomcat has recognized the resource as a Servlet. So the URL is correct.

share|improve this answer
This would rather have resulted in a "404: the requested resource is not found", not a "404: the servlet is not available" which indicates that Tomcat is fully aware that there should be a servlet behind the URL. Besides, you should not be recommending using old fashioned scriptlets these days. Rather recommend using EL. – BalusC Jun 21 '12 at 16:01
@BalusC I tested on Tomcat 5.5, 6, and 7. When I try to browse to a non-existent resource, Tomcat responds with HTTP Status 404 description The requested resource (/gibberish) is not available. Also I did not use a scriptlet. I used a JSP expression. – rickz Jun 21 '12 at 17:10
Exactly. You got "the requested resource is not available", not "the servlet is not available". Thus in OP's case the problem is not the wrong URL as your answer implies. As to JSP expressions, it falls in the same scriptlets category. – BalusC Jun 21 '12 at 17:12
@BalusC Thanks for taking the time to explain my error. – rickz Jun 22 '12 at 1:07

Tomcat is recognizing the URL and hence trying to load the XMLDictionaryServiceServlet to create the instance. It seems that there is problem in loading the class XMLDictionaryServiceServlet double check whether the class(XMLDictionaryServiceServlet) is following servlet convention or not.

Can you please paste the source code of XMLDictionaryServiceServlet.java

share|improve this answer

Restarting the environment would do the job. Its too frequent in eclipse

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.