Ok, is this a problem in the CVS version of org.jboss.seam.framework.EntityHome, or is it just me?
In the seam-gen created [entity]Home.java class, if I do this:
| log.info("Entity name: " + super.getEntityName());
| log.info("persist result: " + super.persist());
| log.info("remove result: " + super.remove());
|
I get the correct entity name, "persisted" is returned from the persist method, but then the above-reference exception when it gets to the remove().
I don't see any Hibernate commands on the log when calling persist, so maybe that is not working? The "Hibernate: delete ... " is written right before the exception.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075359#4075359
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075359
Alright. I'd indeed avoid these problems running BPEL and the ESB on two different server instances, by the way, but I thought I'd go for the merge attempt for simplicity (but you're right in that it might make it more work, I've come to see that now.)
I might've misunderstood the point you were trying to make in that last sentence though. do you mean it's more of a requirement that jBoss ESB supports BPEL because it is an ESB?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075345#4075345
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075345
In case someone hit this topic looking for answer. There is an attribute that I think is missing in documentation but is used in examples:
conversation-required="true" (thanks to Gavin for pointing this!). When it is combined with no-conversation-view-id it gives effect desired by me. So my example should be as follows:
| <page view-id="/page2.xhtml" no-conversation-view-id="/invalidconversationerror.xhtml"
| conversation-required="true"/>
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075344#4075344
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4075344