Questions tagged [jboss-mdb]

99 questions
0
votes
2 answers

JBoss Error in ejb-jar.xml for Message Driven Bean TextMDB: expected one res-ref-name tag

I've copied and pasted the example ejb-jar.xml and jboss.xml file from http://docs.jboss.org/jbossas/jboss4guide/r4/html/ch6.chapt.html#ch6.mdbejbjar.ex and I'm receiving the following error when JBoss attempts to deploy it: ERROR [ScannerThread]…
brianegge
  • 29,240
  • 13
  • 74
  • 99
0
votes
3 answers

J2EE - JPA - EJB3 - Transactions in MDB methods

I have resource local datasource (Oracle9i) deployed at JBoss 5.1.0: OracleDS jdbc:oracle:thin:@IP_ADDRESS:1521:inv9i
igor.beslic
  • 954
  • 2
  • 9
  • 16
0
votes
1 answer

JBoss6 MDB failing to deploy but deploys fine in JBoss4.0.4

I'm trying to deploy a jar that I have in my JBoss-4.0.4.GA environment to a JBoss-6.0.0.Final environment. I have hit an issue that I'm not sure about. I am getting this error when starting JBoss: 17:45:27,719 INFO [EjbDeployer] installing bean:…
user265330
  • 2,533
  • 6
  • 31
  • 42
0
votes
2 answers

Possible to stop MDB in Weblogic 8.x?

Is it possible to programatically stop an MDB from listening to a queue in Weblogic 8.1? I know this can be done in JBoss and later versions of Weblogic but I wasn't sure if it's possible in 8.x.
Marcus Leon
  • 55,199
  • 118
  • 297
  • 429
0
votes
2 answers

JBoss EJB3 MDB config

I am trying to understand some EJB 3 code running in JBoss 4.3. We've got an ejb3-interceptors-aop.xml file configured in JBoss with some MDB configuration and then we've got the MDB Java class. What I'd like to understand is when and how does the…
Marcus Leon
  • 55,199
  • 118
  • 297
  • 429
0
votes
1 answer

Client ack with MDB

As far as I know there is only AUTO_ACKNOWLEDGE and DUPS_OK_ACKNOWLEDGE possible with MDB. I would like to have something like CLIENT_ACKNOWLEDGE to avoid XA transactions. Basically what I want: get a message --> start local transaction --> perform…
androdevo
  • 752
  • 1
  • 8
  • 17
0
votes
2 answers

Scheduling a MDB

I'm looking for a way to schedule a MDB. My requirement is that the MDB is set to feed a system from the company. This system goes out for maintenance every night, but the other systems don't know about it and may keep trying to feed it. A…
Rwanou
  • 431
  • 5
  • 24
0
votes
2 answers

How to set many unique MDB's instances

I am using Spring 3.1 I have configured HornetQ and MDB which listening to it. My target is to inject to those MDBS a propertyclass which will have unique properties. Each MDB will have it's own properties as soon as I try it I get exception. Thats…
rayman
  • 20,786
  • 45
  • 148
  • 246
0
votes
3 answers

Configuring an MDB in JBOSS

How maxMessages property affects the MDB? For example: @ActivationConfigProperty(propertyName = "maxMessages", propertyValue="5"). How would this value affect if maxSessions is 10?
Rodi
1 2 3 4 5 6
7