[jboss-user] [JBoss Seam] - Re: Transaction problem after upgrade

2007-02-05 Thread juangiovanolli
sorry for my very wide question, but, which are the possible things that i do wrong for get that error Thanks in advance View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4011581#4011581 Reply to the post : http://www.jboss.com/index.html?module=bb&op=postin

[jboss-user] [JBoss Seam] - Re: Transaction problem after upgrade

2007-01-31 Thread [EMAIL PROTECTED]
The bug is fixed. You have a different problem, probably you need a transaction and you don't have one. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009129#4009129 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=400912

[jboss-user] [JBoss Seam] - Re: Transaction problem after upgrade

2007-01-31 Thread juangiovanolli
exactly, my problem is this: | javax.faces.el.EvaluationException: Cannot get value for expression '#{org.jboss.seam.core.jbpmContext}' | at org.apache.myfaces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:402) | at org.jboss.seam.core.Expressions$1.getValue(Expressions.java:

[jboss-user] [JBoss Seam] - Re: Transaction problem after upgrade

2007-01-31 Thread juangiovanolli
I have the same problem with seam 1.1 GA. is the bug fixed or i'm doing wrong some thing? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009004#4009004 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009004 ___

[jboss-user] [JBoss Seam] - Re: Transaction problem after upgrade

2006-10-10 Thread [EMAIL PROTECTED]
I don't have a full fix for this yet, but I do now have a quick workaround in CVS that will let you get past the exception. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3977394#3977394 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting

[jboss-user] [JBoss Seam] - Re: Transaction problem after upgrade

2006-10-10 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBSEAM-401 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3977338#3977338 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3977338 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Transaction problem after upgrade

2006-10-10 Thread [EMAIL PROTECTED]
OK, you said Seam CVS. So I think I found my breaking change. I'll add an issue to JIRA. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3977336#3977336 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3977336 _

[jboss-user] [JBoss Seam] - Re: Transaction problem after upgrade

2006-10-10 Thread [EMAIL PROTECTED]
Sticking @Transactional on ManagedJbpmContext is not going to help you, because it is declared @Intercept(NEVER) ;-) Is this in the CVS version of Seam, or Seam 1.0.1? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3977334#3977334 Reply to the post : http

[jboss-user] [JBoss Seam] - Re: Transaction problem after upgrade

2006-10-10 Thread blue_due
Thanks, I removed the @Begin and @End annotations but no joy. The stack trace is much the same. The exception is thrown when calling org.jboss.seam.core.ManagedJbpmContext.getJbpmContext(). I inserted breakpoints in org.jboss.seam.interceptors.TransactionInterceptor but found that the excepti

[jboss-user] [JBoss Seam] - Re: Transaction problem after upgrade

2006-10-09 Thread [EMAIL PROTECTED]
A "similar" problem? What is the stacktrace? Note that you don't use @End and @EndTask together. One or the other. Same with @Begin and @BeginTask. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3977032#3977032 Reply to the post : http://www.jboss.com/index

[jboss-user] [JBoss Seam] - Re: Transaction problem after upgrade

2006-10-09 Thread blue_due
Did you find a solution to this? I'm having a similar problem but I'm only getting the exception on the methods annotated @EndTask: | @Name("depositPermission") | @Scope(ScopeType.CONVERSATION) | @Transactional | public class DepositPermissionAction { | | private String note;