[JBoss-user] [Messaging, JMS & JBossMQ] - Re: EJB Create on MDB

2005-08-04 Thread Nandhu
That worked , thanks a lot. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3888438#3888438 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3888438 --- SF.Net email is S

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: EJB Create on MDB

2005-08-04 Thread jaikiran
Hi, I think the probelm may be because of some jar file present in the classpath, which contains your old .class file of the MDB. Delete the .class file of the MDB from your jar file and restart the jboss. If you get the same exception, then there is a wrong .class file in your classpath for t

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: EJB Create on MDB

2005-08-04 Thread Nandhu
Still the same problem... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3888419#3888419 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3888419 --- SF.Net email is Spo

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: EJB Create on MDB

2005-08-03 Thread jaikiran
Try out the following: /** | * | * @throws EJBException | */ | public void ejbCreate() throws EJBException { | | } View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3888363#3888363 Reply to the post : http://www.jboss.org/inde

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: EJB Create on MDB

2005-08-03 Thread schrouf
Drop last post (realized posted source a little bit too late) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3888355#3888355 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3888355 ---

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: EJB Create on MDB

2005-08-03 Thread schrouf
Post your ejbCreate() source code Regards Ulf View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3888354#3888354 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3888354 -

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: EJB Create on MDB

2005-08-03 Thread Nandhu
All Here is the code snippet package com.birch.mdb; import java.io.ByteArrayOutputStream; import javax.ejb.EJBException; import javax.ejb.MessageDrivenBean; import javax.ejb.MessageDrivenContext; import javax.jms.Message; import javax.jms.MessageListener; import javax.xml.transform.Transformer;

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: EJB Create on MDB

2005-08-03 Thread Nandhu
I did change my method without throwing createException , still same result. Is there anything to do with Spec 2.1 ? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3888280#3888280 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=r

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: EJB Create on MDB

2005-08-03 Thread [EMAIL PROTECTED]
I've sort of added this question to the FAQ: http://wiki.jboss.org/wiki/Wiki.jsp?page=WhyDoesntCreateExceptionRollbackTheTransaction View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3888277#3888277 Reply to the post : http://www.jboss.org/index.html?module=bb&op

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: EJB Create on MDB

2005-08-03 Thread darranl
The ejbCreate method of a message driven bean is not allowed to throw the CreateException. The error message you have posted is because you have deployed a message driven bean that is declared as throwing the CreateException from the ejbCreate method. What message is displayed if you deploy you