[jboss-user] [JBoss jBPM] - Re: Couldn't find process definition

2008-01-14 Thread wilson.almeida
Hi, edit in the file jboss/server/default/conf/jbossjta-properties.xml, addint property com.arjuna.ats.jta.allowMultipleLastResources and set value true: properties depends=arjuna name=jta | property name=com.arjuna.ats.jta.allowMultipleLastResources value=true/ | | !-- ... other

[jboss-user] [JBoss Seam] - Re: Why don't instance RenderManager in Seam?

2007-02-09 Thread wilson.almeida
You would take your bean and implements the renderable intercafe. In rendermanager set this bean for requestRender(); I tried this way, and I didn't have success. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4013811#4013811 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Why don't instance RenderManager in Seam?

2007-01-31 Thread wilson.almeida
Now, it's work fine. Solution in components.xml |component name=renderManager class=com.icesoft.faces.async.render.RenderManager scope=APPLICATION/ | |component name=manter scope=SESSION | property name=renderManager#{renderManager}/property |/component | Thank