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;
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
__
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
|
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
"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
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.
"#{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
__
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
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