1. Call to EJB method from a remote jboss server(servlet) stackoverflow.comcase 1: I'm having war in one jboss server and ejb jar in another jboss server. I want to call my ejb from my servlet which is present in another server. How to ... |
2. |
3. Using dynamic keys with bean:message tag coderanch.com |
4. Help in Message Driven bean coderanch.comHello Folks, I am very new at EJB3.0.I am trying to run a small message driven java bean but i am getting exceptions.I am unable to figure it out.By the way i am using jboss4.2.3,jdk1.6. My client is a just a simple program which send just a simple text message to the server and the server is taking the message and ... |
5. MESSAGE DRIVEN BEAN LISTENING TO A REMOTE QUEUE. coderanch.com |
6. Session / Message Driven Beans load sequence coderanch.com |
7. Message Driven Bean reading multiple times from a jms queue coderanch.comHi, I am facing a strange problem with my message driven bean. Its configured to read message from a jms queue. But sometimes it read the same message multiple times from the jms queue. We are using weblogic server 8.1 sp5. Please find below our descriptor files. ejb-jar.xml ------------- |
8. Need to stop getting the messages from the Message driven Bean coderanch.comHi, I am facing the following issue. I have a Message driven bean, which accepts messages of type TextMessage. However, just for testing, i wrote some Client which posts the msg in the queue being listened to by the MDB, and i posted MapMessage from that client. Now, it fails with a class cast exception but the problem is that the ... |
9. accessing local session bean from a message driven bean coderanch.com@Stateless(mappedName = "CalculateOrderValue") public class CalculateOrderValueBean implements IServicesLocal { /// implementation goes here } @MessageDriven(mappedName = "queue/PluginTest", activationConfig = { @ActivationConfigProperty(propertyName = "acknowledgeMode", propertyValue = "Auto-acknowledge"), @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue") }) public class ProcessQueueListener implements MessageListener { public void onMessage(Message message) { // message will have the mapped name of that local interface(ex: CalculateOrderValue) // here i need to ... |
11. Transactions in Message Driven Beans (newbie doubt) HELP! coderanch.com |
12. How to know which beans(entity,session,message) are used in project coderanch.com |
13. Force delay in message driven beans. Is it possible? coderanch.com |
14. Need to Parse XML Message from my Message Driven Bean coderanch.com |
15. can Session beans allow us to send JMS messages coderanch.com |
16. Message driven bean instance pool and concurrent proceesing coderanch.com |
17. Error initializing Message Driven Bean coderanch.com |
18. Message Driven Bean Topic coderanch.com |
19. Multiple Entries in sun-ejb-jar.xml for Message Driven Bean? coderanch.com |
20. Message-Driven Bean and Transaction coderanch.com |
21. bean:message key and bean:write not working coderanch.comI have this string in my .java file. String str = " |
23. Message Drive Bean doesn't load with JMS/SecurityConfig coderanch.comI created a queue in destinations-service.xml from jboss like: |
24. message driven beans java-forums.org |
25. need help for |