[jboss-user] [JBoss Seam] - Re: where is going?

2006-08-03 Thread dbatcn
It was left over from when I thought my SFSB could biject a value visible to JSF. I've removed it and the code now reads: | @In(required=false) | public void setQuux(Quux quux) { | log.debug("BQManagerBean.setQuux(): called with arg:"+quux); | this.quux = quux;

[jboss-user] [JBoss Seam] - Re: where is going?

2006-08-02 Thread [EMAIL PROTECTED]
Why do you have @In/@Out on the nameForNewBaz property? get rid of them. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3962698#3962698 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3962698 __

[jboss-user] [JBoss Seam] - Re: where is going?

2006-08-02 Thread dbatcn
And, if it makes a difference, here's a bit more configuration faces-config.xml snippet: | | com.sun.facelets.FaceletViewHandler | org.jboss.seam.jsf.SeamNavigationHandler | org.jboss.seam.jsf.SeamStateManager | org.jboss.seam.jsf.SeamVariableResolver |

[jboss-user] [JBoss Seam] - Re: where is going?

2006-08-02 Thread dbatcn
Gavin's responses came in while I was composing mine. Thank you for pointing out my JSF error: "[EMAIL PROTECTED]" wrote : "#{foo}" is not a valid value-binding expression in JSF. You need to use "#{foo.someProperty}". I changed my interface BQManager to include: | public void setNameF

[jboss-user] [JBoss Seam] - Re: where is going?

2006-08-02 Thread dbatcn
"peteroyle" wrote : 1: Will it help to add create=true to your @In annotation on the BQManagerBean.quux property? Adding "create=true" causes: anonymous wrote : | javax.ejb.EJBException: Application Error: no concurrent calls on stateful beans | at org.jboss.ejb3.stateful.StatefulInst

[jboss-user] [JBoss Seam] - Re: where is going?

2006-08-02 Thread [EMAIL PROTECTED]
anonymous wrote : As far as I know there's a mistake in the documentation. The default scope is not Conversation but Event -> http://www.jboss.com/index.html?module=bb&op=viewtopic&t=86491 - but I'm not sure if this only concerns normal JavaBeans (as shown in that topic's title) or also EJBs.

[jboss-user] [JBoss Seam] - Re: where is going?

2006-08-02 Thread [EMAIL PROTECTED]
"#{foo}" is not a valid value-binding expression in JSF. You need to use "#{foo.someProperty}". View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3962553#3962553 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3962553 __

[jboss-user] [JBoss Seam] - Re: where is going?

2006-08-02 Thread bfo81
As far as I know there's a mistake in the documentation. The default scope is not Conversation but Event -> http://www.jboss.com/index.html?module=bb&op=viewtopic&t=86491 - but I'm not sure if this only concerns normal JavaBeans (as shown in that topic's title) or also EJBs. View the original

[jboss-user] [JBoss Seam] - Re: where is going?

2006-08-02 Thread peteroyle
Hi dbatcn, Some quick questions. If these don't help I'll try having a closer look: 1: Will it help to add create=true to your @In annotation on the BQManagerBean.quux property? 2: Have you tried changing #{namefornewbaz} to #{nameForNewBaz} in bqmgr.xhtml to better match the name of the prope