You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Ben Stover <bx...@yahoo.co.uk> on 2008/04/10 21:07:21 UTC

How to detect which version of Axis is currently running in TomCat ?

Assume I get to an already installed and running TomCat server.

How can I find out if Axis is already (successfully) installed on this server and if yes which version it is?

Ben







---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org


RE: How to detect which version of Axis is currently running in TomCat ?

Posted by "Caldarale, Charles R" <Ch...@unisys.com>.
> From: Ben Stover [mailto:bxstover@yahoo.co.uk] 
> Subject: How to detect which version of Axis is currently 
> running in TomCat ?
> 
> How can I find out if Axis is already (successfully) 
> installed on this server and if yes which version it is?

If you're doing this from a browser, use:
    http://[host][:port]/manager/html/list
to display deployed applications (assuming the manager webapp hasn't
been disabled).  If the Axis2 war is installed, it should show up as
axis2, assuming it hasn't been renamed.  Don't know what the older
version looks like.

If you want to do this programmatically over the network, use the
non-html flavor of the manager webapp instead:
    http://[host][:port]/manager/list
and parse the response.  

The manager webapp is usually secured, so you'll need to authenticate
before the response is returned.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org