Reputation: 384
I am doing some custom management programs with Websphere. I am using AdminClient to connect with WebSphere server.
However, being new to the WebSphere world. I am confused with few parts.
Currently, I am using JMX apis to manage application. I am using AppManagement to perform application related operations. That is working smoothly.
Where can I find it ? Any documentation is welcome.
If there are no API, is it a good idea to call WSAdmin scripts from java code ?
Also, is there any documentation available to map the WSAdmin script or jython code to Java code ?
It's really frustrating due to the lack of proper documentation in java. (May be I am unable to find at right places)
Upvotes: 0
Views: 419
Reputation: 7257
Stick to EAR, it has more info (e.g. context root) that is needed
chose wsadmin or java, not both
jython/jacl examples are well documented
See if these help
http://alvinabad.wordpress.com/2009/02/15/automating-websphere-using-jmx/
http://www.ibm.com/developerworks/websphere/library/samples/SampleScripts.html
http://www.ibm.com/developerworks/websphere/library/techarticles/1207_vansickel/1207_vansickel.html
Upvotes: 0