Web Access: supported under Tomcat?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mgilly
    Junior Member
    • Mar 2007
    • 15

    #1

    Web Access: supported under Tomcat?

    Hi. We're running all our local web apps using Apache Tomcat 5.5.23. I installed TestLog's web access files into the right directory, and Tomcat says that TestLog is running, but I can't access it. Is Tomcat supported for this purpose?
  • Tim (PassMark)
    Senior Member
    • Mar 2005
    • 1723

    #2
    Tomcat isn't supported as such for TestLog.

    There is some information here on setting up Tomcat to run CGI files, http://www.wellho.net/solutions/java...he-tomcat.html, however this didn't work for TestLog as it tries to interpret it as Perl CGI so it will not run correctly (as TestLog is a compiled windows executable).

    You need to add

    Code:
    <init-param>
              <param-name>executable</param-name>
              <param-value></param-value>
    </init-param>
    to the web.xml CGI servlet section. This allowed it to run for me, though some of the redirection does not seem to work that well (for example after logging in and saving an item).

    Comment

    Working...