This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Tomcat and the fly likes How to get all the project path? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Products » Tomcat
Reply Bookmark "How to get all the project path?" Watch "How to get all the project path?" New topic
Author

How to get all the project path?

Edward Durai
Ranch Hand

Joined: Oct 09, 2004
Posts: 223
Hello to everyone,

Tomcat Manager contains all the project links. How can I get all the project paths with project name.

for e.g

application name --> student management
Path name --> c:/student/webapp

How can I get all these information. Please advise.

Thanking You.
Regards,
edi


Thank You<br />Edward
Pavel Cherkashin
Ranch Hand

Joined: Mar 04, 2005
Posts: 47
Three ways:
1. You can access via JMX then retrieve needed info.
2. Use Tomcat Manager list command via http
http://localhost:8080/manager/list
it will return plaintext response, which look like this:

Response can be parsed using regular expressions if needed.

3. write screen scrapper for Tomcat Manager's web GUI (use httpclient-it represents the dom tree of the html documet - easy to retrieve the information).
[ February 20, 2008: Message edited by: Pavel Cherkashin ]

Pavel Cherkashin - <br />SCJP, SCWCD, SCDJWS, SCBCD, SCEA, ...<br />www.linkedin.com/in/pcherkas
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: How to get all the project path?
 
Similar Threads
read the XML file
Primary key / Forign Key
Image Display problem
How to modify the XML Document?
Arraylist and for enchanced loop question