Java - multiple requests from two WebContainer threads

We test the subsystem timeout for 150 seconds. Therefore, in my application, the first SOAP request is sent. Then after 60 seconds, another request is sent. My question is where the other request comes from. This is a new thread yet, but client code does not have a retry mechanism. This works on WebSphere 6. These are snippets from the logs:

2011-01-18 16:16:32.696 EST [WebContainer : 0] DEBUG content  <> << "<?xml version="1.0" encoding="UTF-8"?>[\n]"

2011-01-18 16:17:32.591 EST [WebContainer : 2] DEBUG content  <> << "<?xml version="1.0" encoding="UTF-8"?>[\n]"

As you can see, the same request is called from another WebContainer for almost one minute. How can I find where the second request comes from? What should I check in WebSphere for debugging?

+3
source share
1 answer

. HTTP- WebSphere - 60 . - 60 , ( , HTTP-, ). , WebContainer .

150 , . ServerIOTimeout " " - WebSphere. 0 .

WAS6.1, WAS7, , , WAS6.

+4

Source: https://habr.com/ru/post/1786787/


All Articles