This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Tomcat issue
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
‎Jul 06, 2006
11:26 AM
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?
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?
(3) Replies
‎Jul 24, 2006
01:36 PM
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
[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
‎Jul 24, 2006
02:42 PM
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.
HKLM\System\CurrentControlSet\Services\Tomcat5
ImagePath
I chose this because in order for Tomcat to be running the service has to exist.