[JBoss-user] [EJB/JBoss] - Re: TransactionRolledbackException: null

2006-05-31 Thread drabbit
the configuration we did we specific for mvc persistance manager from persistance soft. If you are actually using that, I can tell you. dirk View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3947963#3947963 Reply to the post :

[JBoss-user] [EJB/JBoss] - Re: TransactionRolledbackException: null

2006-05-30 Thread drabbit
I've had this exception too, but probably in a different setup than you have. We were using mvc from persistance soft to enable ejb2.1 in jboss 2.4.x (also worked with later jboss version). This persistance mechanism had the default behaviour to only set Transaction to rollbackonly and NOT

[JBoss-user] [EJB/JBoss] - Re: Maintaining TX across EJBs and POJOs using JDBC, notifyi

2006-05-30 Thread drabbit
I don't fully understand what you are doing, but concerning the necessity to have it all in one transaction: if your datasources are configured in *-ds.xml files and obtained via jndi lookup, then this will all happen in one server transaction. If you are using different datasources, all but

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Is this a Java Or JBoss bug?

2006-05-30 Thread drabbit
It's neither a bug in java or jboss, you shouldn't alternate a collection while running over it with an iterator. dirk View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3947613#3947613 Reply to the post :

[JBoss-user] [EJB/JBoss] - Re: How to know if a bean instance is accessed by a local or

2006-05-22 Thread drabbit
This is an interesting question, but I doubt there is a solution to it. You might want to go one step back and post what you need to know this information for. If it is merely for logging and to check if calls are local or remote, you could just write an interceptor that logs the invocation

[JBoss-user] [EJB/JBoss] - Re: RequiredNew transaction type

2006-05-22 Thread drabbit
methodC should run in a separate transaction and commit upon completion. Your post doesn't show how you called methodB and methodC, so let me make sure: Did you call those methods over the local interface or just inside the bean implementation? The new Transaction is of course only started if

[JBoss-user] [EJB/JBoss] - Re: TransactionRolledbackException: null

2006-05-22 Thread drabbit
I'd check if there are some constraints on your database that doesn't let the server save the data. Like uniqueness constraints of not-null constraints. dirk View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945391#3945391 Reply to the post :

[JBoss-user] [EJB/JBoss] - Re: how to ensure the deployed sequence of different Jars wh

2006-05-10 Thread drabbit
http://www.jboss.org/wiki/Wiki.jsp?page=URLComparator that should do it. dirk View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3942422#3942422 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3942422

[JBoss-user] [EJB/JBoss] - Question on Invocation Payload

2006-05-03 Thread drabbit
Hi, I'm using jboss 4.0.2 and in an attempt to measure the time needed for rmi calls and serialization, I implemented a client side and a server side interceptor that would put different timestamps as Long values into the invocation payload (AS_IS). What happened is that the payload set on the