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
set JAVA_OPTS=
with
set JAVA_OPTS=-Xbootclasspath/a:d:\eclipse\plugins\org.apache.xerces_4.0.3\xercesImpl.jar;d:\eclipse\plugins\org.apache.xerces_4.0.3\xmlParserAPIs.jar
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\.
The infocenter does not require the entire Eclipse Platform package.
It is possible to run the infocenter with the following plugins (located
in the eclipse\plugins directory):
org.apache.lucene
org.apache.xerces
org.eclipse.core.boot
org.eclipse.core.resources
org.eclipse.core.runtime
org.eclipse.help
org.eclipse.help.webapp
org.eclipse.update.core
In addition to these plugins, depending on the operating system or machine
architecture, you may need to also need to install the corresponding fragments
for the above plugins (when they exist). For example, on Windows, you need
to add the following fragments (also located in the eclipse\plugins directory):
org.eclipse.core.resources.win32
org.eclipse.update.core.win32