[jboss-user] [JBoss jBPM] - calling seam component from an action that was started from

2007-07-12 Thread bdeen
Is there a way to call a seam component from an action in a process if that process was started in a non-seam web app. The seam component lives an ejb layer and I have both seam/non-seam front ends using the component. I can get the component if I do Component.getInstance("xyz",ScopeType.EVENT

[jboss-user] [EJB 3.0] - ConsumerContainer

2007-02-16 Thread bdeen
Is there an easy way to get the ConsumerContainer of the JBoss enhanced Message Driven POJO's? I have a need which indicates that messages are added to a Queue all day long but are only processed during a certain time for a certain duration. I was thinking it would be nice to turn the Consumer

[jboss-user] [EJB 3.0] - Re: Can I use @Ejb in an MBean?

2007-02-15 Thread bdeen
Have you put a dependency on the EJBDeployer within your @Service? Try something like @Service (objectName="trail:service=calculator") @Management(Calculator.class) @Depends( "jboss.ejb3:service=EJB3Deployer" ) public class CalculatorMBean implements Calculator { @Ejb TheBean myBean; that way