Java.net.SocketException connection reset error in .net application

前端 未结 4 1409
天涯浪人
天涯浪人 2020-12-21 14:13

We have a n-tier (.net) web application where we have a Web tier -> App tier -> Database.

Everything worked fine until we went for load testing (using jmeter).

4条回答
  •  鱼传尺愫
    2020-12-21 15:00

    If I am performing a distributed testing, should I do the following steps on all my slave systems as well, not to get the "connection reset" error..?

    Add the next 2 lines to user.properties file (lives under /bin folder of your JMeter installation):

    httpclient4.retrycount=1
    hc.parameters.file=hc.parameters
    

    In hc.parameters file (same location - /bin folder of your JMeter installation) add the next line:

    http.connection.stalecheck$Boolean=true
    

提交回复
热议问题