Hello,
I have successfully exposed my bean for JMX using default RMI support. But how to accomplish this using SOAP? Section SOAP in Spring's JMX documentation is not very helpfull.
I've added such bean section to my working xml conf:
<bean id="serverConnector" class="org.springframework.jmx.support.ConnectorSe rverFactoryBean">
<property name="objectName" value="connector:name=soap"/>
<property name="serviceUrl" value="service:jmx:soap://localhost:18888/axis/services"/>
</bean>
But I got such error:java.net.MalformedURLException: Unsupported protocol: soap.
What should I do to be able to use Spring JMX support to expose my mbeans using SOAP?


.
Reply With Quote