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
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
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