Monitoring WebSphere MBeans?
Hi
How can i get AdminClient from websphere with spring using JMX,
i would like to do something like this in spring:
Properties conProps = new Properties();
conProps.setProperty( AdminClient.CONNECTOR_HOST, "localhost");
conProps.setProperty( AdminClient.CONNECTOR_PORT, "8879" );
conProps.setProperty (AdminClient.CONNECTION_PROTOCOL, "SOAP");
AdminClient ac = AdminClientFactory.createAdminClient(conProps);
How can i use Spring to change this code?
Which classes or package should i use?