You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I have a use case where one of our services need to propagate PossDupFlag and OrigSendingTime to a third party. Using Session.send makes this impossible as these fields are removed from the message header.
Describe the solution you'd like
It will be great to have an overloaded method that will allow sending the message as-is without removing any field. Something like:
public boolean send(Message message, boolean sendRaw);
Describe alternatives you've considered
Alternatively, sendRaw method can be made public in Session. At the moment I have to use reflection to invoke sendRaw which is pretty hacky:
Is your feature request related to a problem? Please describe.
I have a use case where one of our services need to propagate
PossDupFlag
andOrigSendingTime
to a third party. UsingSession.send
makes this impossible as these fields are removed from the message header.Describe the solution you'd like
It will be great to have an overloaded method that will allow sending the message as-is without removing any field. Something like:
Describe alternatives you've considered
Alternatively,
sendRaw
method can be made public inSession
. At the moment I have to use reflection to invokesendRaw
which is pretty hacky:Or fork the project and maintain a patch version in our dependency management server.
The text was updated successfully, but these errors were encountered: