Questions tagged [jboss-mdb]

99 questions
0
votes
1 answer

Deploy MDB with EJB 3 and JBoss AS 6

I'm a newbie about EJB 3 and I'd like deploy as simple EAR, which uses a MDB, on JBoss AS 6. But, when I deploy my ear the following exception occurs: 16:53:37,500 ERROR [org.jboss.kernel.plugins.dependency.AbstractKernelController] Error installing…
Rosanero4Ever
  • 482
  • 1
  • 7
  • 19
0
votes
1 answer

JBoss 4.0.5 MDB Configuration

This one is beating me, and I have not been able to figure it out ... So here it goes. I want to add a Message Drive Bean to my app which is packaged as a .ear file Following the documentation I've created a jboss.xml and a ejb-jar.xml, which I…
webclimber
  • 2,630
  • 4
  • 26
  • 36
0
votes
1 answer

Java Message Driven Bean Override

I have an MDB that I cannot modify, it is declared with annotations, not within xml file. Can I somehow override it's implementation, specifically onMessage behaviour? I tried modyfing xml files to point MDB to different class or just simply…
EyeMaze
  • 143
  • 2
  • 9
0
votes
1 answer

ResourceAdapter already set | JBoss 5.2 with Active MQ

We have JBoss 5 integrated with TIBCO Queue and MDB queue listener and its working as expected more over calling stop() and then start() methods in the JBoss JMX console is working fine. Now we replaced TIBCO with ActiveMQ. All functionalities are…
veeras
  • 61
  • 1
  • 4
  • 11
0
votes
1 answer

Facing issue while Configuring MDB and MQ in jboss 7.1

I was using jboss 6.4 before now i am migrating to jboss 7.1 and MQ 8, We have used jboss-ejb3.xml to configure MDBs and MQs, But after migrating to jboss 7.1 i am getting following error can some one please help me to resolve this…
0
votes
1 answer

MessageListener stops listening to HornetQ Queue

The following issue is impairing my production system. So i have multiple MDB's packaged as EAR, WAR applications and are deployed in JBOSS. When there is considerable amount of traffic in my website then these MDB's stop listening to messages being…
0
votes
1 answer

Where to configure the org.jboss.ejb3.mdb.MdbDelegateWrapper

I need to reduce the pool size of an MDB to 5 because it connect to an external resource that is limited in terms of connections. If I have 15 messages in my JMS queue, then only 5 msg are process successfully and the other 10 are waist because of…
Alain
  • 237
  • 1
  • 4
  • 13
0
votes
1 answer

In Wildfly 10, can the MDB lookup properties be specified in the standalone-full.xml rather than be bound at compile time in the Java source code?

In Wildfly 10, I'd like to move some of the annotations of an MDB to the associated resource adapter. According to Connect a pooled-connection-factory to a Remote Artemis Server one could annotate the MDB as follows (copied here from the referenced…
inor
  • 2,781
  • 2
  • 32
  • 42
0
votes
1 answer

MessageDrivenBean isnt handle messages [Wildfly]

Im trying to develop a "Message Driven Bean" to handle all the local ActiveMQ messages, but it's the first time that i try to do something like this. The most part of the material that i found explain how to write a MDB using JBOSS server, in this…
Cleiton Ribeiro
  • 359
  • 2
  • 5
  • 16
0
votes
1 answer

MDB onMessage fails with closed JDBC connection

Running an app on JBoss eap 7.0. I have an MDB that also references a XA data source (oracle) to persist data. After a long time span of no use (several hours), next onMessage invocation that does to write to DB, gets error below …
OldProgrammer
  • 12,050
  • 4
  • 24
  • 45
0
votes
0 answers

Mdb with oracle AQ in jboss jboss-eap-7

We are upgrading some ejb based application from Oc4j to jboss eap 7 and one need to connect to oracle AQ created in oracle database but unable to deploy mdb. I have been following this link and used generic jms ra but unable to connect to the…
0
votes
2 answers

how to make serial process using MDB and activemq in java

i am working on ejb mdb using activemq, could you please help me, iam read the message from queue and save the data into database, i am able to save the data into database but it mdb takes the message from the queue, one message is partially save…
Naresh
  • 21
  • 2
0
votes
1 answer

Set maxsession for MDB through ejb-jar.xml in JBoss

I want to configure maxsession for MDB So there is a below annotation on the MDB class @ActivationConfigProperty(propertyName="maxSession",propertyValue="6") Snippet @MessageDriven (activationConfig = { …
happy
  • 2,550
  • 17
  • 64
  • 109
0
votes
1 answer

JMS communication between WAS 6 and JBOSS EAP 6.1

I have an application deployed in Websphere which should push a message in a queue implemented in JBoss using HornetQ. That message will then be consumed by an MDB within another application (on JBoss). Is that even possible? In summary: WAS…
Ema
  • 104
  • 11
0
votes
1 answer

Can't deploy MDB connected to RA using JBOSS 6.4.2 GA

I have a problem deploying a MDB connected to a Tibco RV Resource Adapter, but while the RA is correctly deployed, the MDB is raising issues that I could not solve despite several attempts. This is what I have tried to make my MDB deployed in…