[jboss-user] [JBoss Seam] - Re: remoting error in 2.0.0.B1 (No application context activ

2007-07-03 Thread [EMAIL PROTECTED]
I've fixed this, the unmarshalling of the remote call was being done before the application (or any) context was created. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060205#4060205 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&m

[jboss-user] [JBoss Seam] - Re: remoting error in 2.0.0.B1 (No application context activ

2007-07-03 Thread zdaler
I forgot the "@WebRemote" in @WebRemote public void testOnly(TestObject test) { I reported this issue in JIRA : http://jira.jboss.org/jira/browse/JBSEAM-1599 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059959#4059959 Reply to the post : http://www.jboss.

[jboss-user] [JBoss Seam] - Re: remoting error in 2.0.0.B1 (No application context activ

2007-07-03 Thread zdaler
The problem seems to occur only when an argument of a "remote" procedure call is an instance of an entity created on the client side by : var customer = Seam.Component.newInstance("customer"); eg : the entity object : anonymous wrote : @Entity | @Name("testObject") | @Scope(CONVERSATION)