0

There are 2 different URLs in a script that I have recorded and each use a different version of SSL. There is a concurrent group inside the script which has requests with both the URLs. How do I set the SSL version for them without removing the concurrency part?

I have tried using WinInet mode for replay which solved the issue. But I need to measure the response time for each URL and I cannot achieve it using WinInet mode as it doesn't generate the Web Page Diagnostics graph.

I've also tried creating automatic transactions but I couldn't see any of them in the results summary.

2 Answers2

0

If you have access to the servers involved, then enable the time-taken HTTP log field. If you are running IIS, which is a good chance with WinInet, then the default log model for IIS will give you what you need.

At the conclusion of your tests, pull the logs. Use Microsoft logparser (staying with the Microsoft theme), to pull the min, max, avg time-taken values, grouped by request and filtered on the IP addresses of your load generators.

James Pulley
  • 5,606
  • 1
  • 14
  • 14
  • I currently do not have the access to the servers. But the respective teams are saying that the times recorded in the servers are not abnormal. So, need to know for sure from the LG point of view. – Shanmukha Sampath Kumar Aug 06 '18 at 08:08
  • Then for the one call you are interested in use strict URL mode with concurrent groups. Probably the easiest way to do this is to ensure that the label tags for automatic transactions are correct and then run a single user in a single group from the load generator where you are interested with the URL mode with concurrent group requests and time each request. – James Pulley Aug 06 '18 at 12:40
0

it would be interesting to know which SSL versions you have.

the following function let you set the SSL version before the URL call:

web_set_sockets_option("SSL_VERSION", "put your tls version here");

accepted are TLS1, TLS1.1, TLS1.2 and more. See the Help hitting F1 on the function to get more information.

twinge
  • 75
  • 1
  • 8