Hi,
Right now we are using SessionBean to read response from third party vendor.
Client can recieve the required repsonse by calling corresponding remote method.
I am trying to implement Message Driven Bean to read response from third party vendor.
How does client will recive response from message driven bean?
MDB have only the following method:
public void onMessage(Message message) {
}
But this not returning any response.
I have the following method in the Session Bean.
public List getResult(
String str){
.............
return result;
}
Now client willl recive the reponse as List by calling getResult(String) method.
If I want to implement same thing using MDB bean how do I write MDB such that
client will recieve the response as List by calling MDB bean method.
Any help please...........
Thanks.