cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Coder2006
Level 2

Tomcat issue

Hello,

I'm a newbie and I would like to check if tomcat is already installed and if it is the correct version. If it is not installed I would like to install it. How can I do this for all operating systems that installshield multiplatform supports?
Labels (1)
0 Kudos
(3) Replies
Coder2006
Level 2

anyone please help? 😞
0 Kudos
sithlord
Level 4

This is a tough one to answer because of how people install Tomcat. On Windows, if you're lucky you will get this information from the registry:

[HKEY_LOCAL_MACHINE\SOFTWARE\Apache Software Foundation\Tomcat\5.5]
"InstallPath"="C:\\Program Files\\Apache Software Foundation\\Tomcat 5.5"
"Version"="5.5.17"

On UNIX, good luck. You will have to ask for Tomcat's location.
/.Will
0 Kudos
Christopher_Pai
Level 16

It is always quite arbitrary when deciding what resource to key off for a system search. Personally I've keyed off of:

HKLM\System\CurrentControlSet\Services\Tomcat5
ImagePath

I chose this because in order for Tomcat to be running the service has to exist.
0 Kudos