During my authentication steps of my recording, I am getting the following error:
"logo NeoLoad recording
An error occurred when playing request to the server: java.net.SocketException: Connection reset"
The authentication is claims based through the browser, however the form based authentication also causes the same error.
Here is the detail from the log file
2014/12/03 13:00:56 WARN - neoload.Network: [TunneledSocket-127.0.0.1:63990-to-127.0.0.1:63985]Tunnel data transfert error java.net.SocketException: socket closed
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:152)
at java.net.SocketInputStream.read(SocketInputStream.java:122)
at java.net.SocketInputStream.read(SocketInputStream.java:108)
at com.neotys.l.f.t.run(t.java:30)
There could be a variety of reasons this could be happening for you. In my case, the environment required the SNI flag to be set to true to work.
That is:
-Djsse.enableSNIExtension=true
in the agent.properties and NeoLoadGUI.vmoptions files.