Reputation: 6445
My goal is to build a custom application which serves a web page that shows information about multiple WAS instances. An example requirement is to list the deployed applications with each WAS instance. My preference is to build this application in Node.js. My challenge is how to inspect/query the WAS instances to retrieve the information that I will display on the web page. Technical options appear to be:
Is there another/better way, ideally I was hoping for a HTTP REST or SOAP Admin API, that I could invoke from anywhere and point at the WAS instance to get the data I am after.
Upvotes: 0
Views: 427
Reputation: 430
Both shell wsadmin script and Web Administrative Console are connecting to DMGR by API ( SOAP or RMI).
If you are building your own Node.js app, maybe you will do a native connection to DMGR via JMX
Upvotes: 1