Updates:
Owner: [email protected]
Cc: [email protected] [email protected] [email protected]
Labels: Version-1.0.0.BETA2
Comment #2 on issue 123 by [email protected]: Sending UAbort w/o
UserInformation
http://code.google.com/p/jss7/issues/detail?id=123
Hello!
According your request I can say that you use Mobicents TCAP and do not use
other Mobicents protocols like MAP/CAP. Is it correct?
Mobicents MAP / CAP stacks itself do not send TCUserAbortRequest without
UserUnformation.
About the problem. We can not remove the "if()" operator from line 704
because this is made to support TCAP V1:
if (event.getUserInformation() != null) { // User information can be absent
in TCAP V1
But I guess we can replace it with:
if (event.getUserInformation() != null ||
event.getDialogServiceUserType() != null) { // User information can be
absent in TCAP V1
This must cover your case. Can you please comment this solution?