-
Bug
-
Resolution: Done
-
Major
-
2.0.2.Final
-
None
In the Naming module, the HttpRootContext is a client side repesentation of the Context being accessed on the server. The HttpRootContext implements each Context method by creating an HTTP request, sending the request to the server, and processing the reply. This activity is encapsulated in the processInvocation(), performWithRetry() and peformOperation() methods.
As part of its request processing, performOperation() uses HttpTargetContext.sendRequest() to send the ClientRequest to the server. One variant of performOperation() takes an Object parameter, which is marshalled into the OutputStream using an HttpMarshhaller.
This output stream was being closed by calling output.close() and not safely by using IoUtils.safeClose(output). This was resulting in numerous and varied connection related errors during test execution.
- depends on
-
WEJBHTTP-120 Upgrade Undertow to 2.3.10.Final
- Resolved
- is related to
-
UNDERTOW-2292 Make HttpRequestConduit.processWrite thread safe with concurrent flush calls
- Resolved