is there any way to display messages on the JMS Queue to the client JSP ?
so if any message inserted into the Queue (MessageDrivenBean) , it will shows to the client (browser) ,,
thank you ..
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
u cannot sent the message to a jsp directly. means u will have no idea when the message will come right so it is async way of communication. In a jsp u can have a ajax component wherein we can poll to the backend system and get populate the messages recieved in a given point of time in intervals.