AS4_ERROR_MESSAGE_RECEIVED #97
Answered
by
phax
MakakWasTaken
asked this question in
Q&A
-
I am getting the error: I have also tried looking at the |
Beta Was this translation helpful? Give feedback.
Answered by
phax
Aug 30, 2022
Replies: 1 comment 4 replies
-
The "Error Message Received" error comes only when sending messages. So you can configure the sender builder with the following options:
hth |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
MakakWasTaken
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The "Error Message Received" error comes only when sending messages.
So you can configure the sender builder with the following options:
rawResponseConsumer
with a callback of the typeIAS4RawResponseConsumer
that will give you access to thebyte[]
content of the response received orsignalMsgConsumer
with a callback of the typeIAS4SignalMessageConsumer
that will give you access to the parsed EBMS3 SignalMessage (of typeEbms3SignalMessage
). Please consider that this method may not be called, if the receivedbyte[]
does not conform to the Signal Message layouthth