Bug 21487 - Infocenter: servlet classes not found.
Summary: Infocenter: servlet classes not found.
Status: RESOLVED FIXED
Alias: None
Product: Platform
Classification: Eclipse Project
Component: User Assistance (show other bugs)
Version: 2.0   Edit
Hardware: All All
: P2 major (vote)
Target Milestone: 2.0.1   Edit
Assignee: Konrad Kolosowski CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: 21419
  Show dependency tree
 
Reported: 2002-07-11 10:57 EDT by Konrad Kolosowski CLA
Modified: 2002-08-07 09:52 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Konrad Kolosowski CLA 2002-07-11 10:57:47 EDT
Help webapp calls servlets using 
format /servlet/org.eclipse.help.servlet.InitServlet without it being mapped to 
a specific servlet.  The resolution of this path is defined by default in 
Tomcat but does not work on other platform (WAS for example).
Comment 1 Konrad Kolosowski CLA 2002-07-11 11:24:23 EDT
Fixed. Added following mappings to all web.xml files in the help.webapp project.

      <servlet-mapping>
         <servlet-name>content</servlet-name>
         <url-pattern>/servlet/org.eclipse.help.servlet.ContentServlet</url-
pattern>
      </servlet-mapping>
      <servlet-mapping>
         <servlet-name>init</servlet-name>
         <url-pattern>/servlet/org.eclipse.help.servlet.InitServlet</url-
pattern>
      </servlet-mapping>
      <servlet-mapping>
         <servlet-name>livehelp</servlet-name>
         <url-pattern>/servlet/org.eclipse.help.servlet.LiveHelpServlet</url-
pattern>
      </servlet-mapping>