Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.7.8
-
None
-
Unknown
Description
The message retransmission code in WS-RM is currently directly closing the output stream associated associated with the retried message after its successful retransmission.
As the normal transmission case uses condui't prepare(Message) to start transmission and ends with close(Message), which closes the output stream associated with the retried message.
To provide a consistent behavior, the WS-RM's retransmission should also use conduit's close(Message) method to close the output stream.
Note that this is not an issue for the normal HTTPConduit as its close(Message) method does not contain any special logic but simply closes the output stream associated with the message.