0
votes

I am trying to performance test the salesforce application using JMeter. All the requests has X-SFDC-Request-Id in the request headers. I couldn't correlate those header values from any of the previous request response. Is there any logic to implement the same using JMeter, as Salesforce does? Please assist

Thanks in advance, Anto

1

1 Answers

1
votes

Looking into What is the X-REQUEST-ID http header is seems that you need to pass some random value, it will allow the server to identify the failing request or for load balancing or whatever else reason.

So my expectation is that you can send something random or unique using __RandomString() or __UUID() functions as this is not something you should be correlating.

enter image description here

Check out Apache JMeter Functions - An Introduction article to learn more about JMeter Functions concept