[jboss-user] [JBoss Seam] - Re: Starting Threads and Socket listeners

dcowan do-not-reply at jboss.com
Tue Nov 6 22:02:42 EST 2007


For anyone that stumbles upon this I solved this by using Lifecycle.beginCall within my callback method


Lifecycle.beginCall();
  | 
  | try {
  | 	IEventDataService eventDataService = (IEventDataService) Component.getInstance("eventDataService", true);
  |        eventDataService.createEventData(eventData.getDevice().getIdentifier(), eventData);
  | 	Lifecycle.endCall();
  | 
  | } catch (Exception ex) {
  | 	ex.printStackTrace();
  | }

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4102390#4102390

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4102390



More information about the jboss-user mailing list