You can allow your users to access the help system over the Internet or an intranet, by installing the stand-alone help system and the documentation plug-ins on a web server. The application accesses the documentation by calling a URL, and the help system is shown in their web browser. The infocenter help system can be used both for client applications and for web applications, either of which can have their help accessed remotely. All features except infopops and active help are supported.
In Tomcat this registration can be accomplished by adding the following lines to the tomcat\conf\server.xml file:
<Context path="/help" docBase="d:\eclipse\plugins\org.eclipse.help.webapp_2.0.0">
</Context>
In Tomcat 3 add the lines near end of the file, as the last element inside the ContextManager section. In Tomcat 4, add this section as the last element inside the Host section.
set CLASSPATH=%JAVA_HOME%\lib\tools.jar
insert the line:
set CLASSPATH=%CLASSPATH%;d:\eclipse\plugins\org.eclipse.help.webapp_2.0.0\infocenter\eclipseurl.jar.
Replace the xerces.jar file in tomcat\common\lib with xercesImpl.jar and xmlParserAPIs.jar from d:\eclipse\plugins\org.apache.xerces_4.0.3
Start the web server. Point a web browser to the path of the web application. On the machine the Tomcat is installed, this would be http://localhost:8080/help/.
The Eclipse platform comes with its own documentation, contained in the org.eclipse.platform.doc.user plug-in. It will be available in the infocenter by default. To have you own documentation show up, package the documentation as Eclipse documentation plug-ins. Install them to d:\eclipse\plugins\.
Note: It appears that, in F3 build, the infocenter support using Tomcat
4.0.3 only works with JDK1.4.
JDK1.3 can be used to setup an older infocenter, present in Eclipse M5 build,
later builds do not work with JDK1.3. New version of Xerces present in
the newest drivers seems to cause the problem when used with this JDK.
With JDK1.3.1 we were unable to start Tomcat 4.0.3 at all.