Hi all.
In my web app, I'm using JavaHelp.
Thus, there's a JSP with this line
<jh:validate helpBroker="<%= helpBroker %>" helpSetName="<%= AppName/help/HelpMain.hs %>"/>
(where "AppName" is the name of my web app).
If I deploy my web app on an Apache-Tomcat configuration, with Apache and Tomcat installed on two different machines, I have an IOException, due to the fact that the URL built from the helpSetName contains the Apache's address instead of the Tomcat's address.
An idea to solve this could be setting the helpSetName as an absolute path instead of as an URL, but I don't know if this is possible.
Has anyone been involved in the same issue?
Any help will be very appreciated!!