Comment #1 on issue 113 by [email protected]: fireEvent() should return false when inside Exception
https://code.google.com/p/jain-slee/issues/detail?id=113

I think we need to replace
try
{ sleeEndpoint.fireEvent(handle, eventID, event, address, null, flags); }
catch (UnrecognizedActivityHandleException e)
{ this.tracer.severe("Error while firing event", e); } catch (IllegalEventException e) { this.tracer.severe("Error while firing event", e); }
catch (ActivityIsEndingException e)
{ this.tracer.severe("Error while firing event", e); } catch (NullPointerException e) { this.tracer.severe("Error while firing event", e); }
catch (SLEEException e)
{ this.tracer.severe("Error while firing event", e); } catch (FireEventException e) { this.tracer.severe("Error while firing event", e); }
return true;
with
} else {
try
{ sleeEndpoint.fireEvent(handle, eventID, event, address, null, flags); return true; }
catch (UnrecognizedActivityHandleException e)
{ this.tracer.severe("Error while firing event", e); } catch (IllegalEventException e) { this.tracer.severe("Error while firing event", e); }
catch (ActivityIsEndingException e)
{ this.tracer.severe("Error while firing event", e); } catch (NullPointerException e) { this.tracer.severe("Error while firing event", e); }
catch (SLEEException e)
{ this.tracer.severe("Error while firing event", e); } catch (FireEventException e) { this.tracer.severe("Error while firing event", e); }
return false;
}

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--

--- You received this message because you are subscribed to the Google Groups "mobicents-all-issues-changes" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to