Send & Receive JMS Messages using @Endpoint and WSDL
Hi Experts,
My requirements as follows :
1. We have WSDL with portype ,operation & input methods defined .
2. I have created @Endpoint class with
@ServiceActivator // for listening the MQ
@PayloadRoot(namespace = NAMESPACE_URI, localPart = "METHODNAME")
// Methodparm - XXXXRequestType - JMS Message from Queue
public void processJMSMessage( XXXXRequestType xxxxRequestType) {
// JMS
}
How to receive JMS message using WSDL and listen it via @Endpoint class to process. I have knowledge on configuring jms endpoint in spring jms / spring integration jms. But i do not have idea on how to get jms receive via wsdl.
Your inputs on this much appreciated!!!!