Hi,
I tried to expose my WS through JMS (activeMQ).
However, we are using the XFIRE in embedded mode. That means, no setting in
spring or whatsoever.
Is there any docu or working code sample where I can expose my service to jms
programmatically?
So far, I'm able to register my JMSTransport into the xfire:
XFire xfire = XFireFactory.newInstance().getXFire();
JMSTransport jt = new JMSTransport(
xfire, getConnectionFactory());
xfire.getTransportManager().register(jt);
But now, I'm confuse with the things that I need to do for my service. In
AXIS2, I don't have to say anything at all....it will automatically expose my
service as JMS.
Thanks,
Aries