[jboss-user] [EJB 3.0] - Re: Ejb3 - MDB

2009-01-29 Thread rudreshtcs
Hi, I did the following after which it started working a)no change in build.xml b) i was having two datasources, oracle-ds and derby-ds. I deleted the oracle-ds, and put the hsqldb-ds.xml(provided by jboss by default). c)deleted all ejb jar in deploy folder d)deleted tmp and work folder and rest

[jboss-user] [EJB 3.0] - Re: Ejb3 - MDB

2009-01-28 Thread jaikiran
I see that you have made some changes to the build script (for ex: the src.dir). Can you post the entire console logs on the server? While posting logs or xml content or code, please remember to wrap it in a code block by using the Code button in the message editor window. Please use the Previe

[jboss-user] [EJB 3.0] - Re: Ejb3 - MDB

2009-01-28 Thread rudreshtcs
Hi, Thanks for the Input *** | | | | | | | | | | | | | | | | | | | | | | | | | |

[jboss-user] [EJB 3.0] - Re: Ejb3 - MDB

2009-01-28 Thread PeterJ
Yes, you can paste the XML. That is what the Code button (above the editor window) is for - select the text, click Code, then click Preview to ascertain the formatting is correct before clicking Submit. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4205332#42

[jboss-user] [EJB 3.0] - Re: Ejb3 - MDB

2009-01-28 Thread rudreshtcs
Hi, Seems like i cannot paste the xml. I have copied the build.xml from the below location http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/trunk/docs/tutorial/interceptor/build.xml Changed the jboss home and deploy folder to "all" Thanks View the original post : http://www.jboss.com/ind

[jboss-user] [EJB 3.0] - Re: Ejb3 - MDB

2009-01-28 Thread rudreshtcs
Hi, I have checked it is not part of the EJB jar but was present in the server/all/deploy (i have configured for "all') I have tried adding it to the jar also, but the errors are same. Thanks Following the build file that i am using ***

[jboss-user] [EJB 3.0] - Re: Ejb3 - MDB

2009-01-28 Thread jaikiran
Rudresh, Wolfgang is correct. You seem to be missing the queue-example-service.xml. Here's a part of the build script which does the deployment: | ... | | ... | Are you sure you are using the correct build script (and you followed the instructions on the wiki)? By th

[jboss-user] [EJB 3.0] - Re: Ejb3 - MDB

2009-01-28 Thread Wolfgang Knauf
Hi, does your EJB jar contain the file "queue-example-service.xml" (or similar) from the linked sample (in the "top level" of the JAR file)? This file declares the queue, and I think that on deploy the MDB cannot be bound to this queue, because it was not created by the server. Hope this helps

[jboss-user] [EJB 3.0] - Re: Ejb3 - MDB

2009-01-27 Thread rudreshtcs
Hi, I had build it using the Eclipse IDE, usually i do it with that (export as EJB project) This time i used the build scripts as given in the tutor. the errors are same Class:org.jboss.tutorial.interceptor.bean.EmailSystem 17:53:08,784 INFO [JBossASKernel] jndi:EmailSystemBean/remote-or

[jboss-user] [EJB 3.0] - Re: Ejb3 - MDB

2009-01-26 Thread jaikiran
anonymous wrote : I was trying one of the Interceptors example given below | http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/trunk/docs/tutorial/interceptor/ | Good to know someone has already started using the tutorials which we are going to publish soon. anonymous wrote : Added bea

[jboss-user] [EJB 3.0] - Re: EJB3 MDB Dynamic Destination

2008-11-03 Thread wconroy
Is it possible to set activation-config properties in a file that is not embedded within the ejb-jar? For example, is there a file you could put into the deploy directory of your server that could set this same property? View the original post : http://www.jboss.com/index.html?module=bb&op=vie

[jboss-user] [EJB 3.0] - Re: EJB3 MDB Dynamic Destination

2008-10-28 Thread PeterJ
In your NETA-INF/ejb-jar.xml, place: | | | ... | | | destination | queue/SomeQueueName | | | | | All of the @ActivationConfigProperty annotation values can be set this way. View the original pos

[jboss-user] [EJB 3.0] - Re: EJB3 MDB: Annotations for instancePool?

2008-09-23 Thread tharter
Just FYI, it should actually be: @ActivationConfigProperty(propertyName = "maxSessions", propertyValue = "1") (that is, "maxSessions" not "maxSession") I confirm this works for me on 4.2.2.GA using the 5.0.0 version of the ActiveMQ resource adapter. View the original post : http://www.jboss.c

[jboss-user] [EJB 3.0] - Re: EJB3 MDB One Implementation Multiple Deployments

2007-07-10 Thread marilenc
Thank you very much for this post. I was searching in vain to find a way to move quartz adnotations to ejb-jar.xml and your post was helpfull. | http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee |

[jboss-user] [EJB 3.0] - Re: EJB3 MDB One Implementation Multiple Deployments

2007-04-15 Thread jlowcock
So obvious when you take a step back from the problem. The deployment via the incomplete annotations is the problem. Thanks for the pointer. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4037352#4037352 Reply to the post : http://www.jboss.com/index.html?m

[jboss-user] [EJB 3.0] - Re: EJB3 MDB One Implementation Multiple Deployments

2007-04-13 Thread fhh
Just guessing here: Have you removed the annotations? Otherwise I think the MDB would get deployed thrice: Twice after the deployment descriptor and once by annoatations. The last one will fail then because the annotations are incomplete. Regards Felix View the original post : http://www.jbo

[jboss-user] [EJB 3.0] - Re: EJB3 MDB with JBoss Messaging

2006-11-06 Thread jasonc411
anyhow, sorry for the incomplete post. If that is the case, change your annotation from propertyName=durability to propertyName=subscriptionDurability I know this differes from the documentation, maybe something that should be submitted as a documentation bug. View the original post : ht

[jboss-user] [EJB 3.0] - Re: EJB3 MDB with JBoss Messaging

2006-11-06 Thread jasonc411
What does the first line of your exception say. Is it error for ActivationSpec class org.jboss and is there a nested throwable IntrospectionException? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3983541#3983541 Reply to the post : http://www.jboss.

[jboss-user] [EJB 3.0] - Re: ejb3 mdb without resource adaptor (container configurati

2006-09-13 Thread kapilanand
Sorry I forgot to mention. I am trying to do this on jboss 4.0.4 with the bundled ejb3 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3971284#3971284 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3971284 __