with the following simple client i could produce this behaviour.
the client opens the url and ignores the response or does not read it complete
public class SlowClient
{
public static void main(String[] args) throws Exception {
for (int i = 0; i <200 ; i++)
{
HttpClient client = HttpClient.newBuilder()
.version(HttpClient.Version.HTTP_1_1)
.build();
HttpRequest request = HttpRequest.newBuilder()
.uri(new URI("
https://test-211/IO/state.jsp"))
.POST(HttpRequest.BodyPublishers.ofString("<xml>...</xml>"))
.build();
HttpResponse<InputStream> response =
client.send(request, HttpResponse.BodyHandlers.ofInputStream());
System.out.println("Response gestartet – ich lese NICHT weiter.");