Reputation: 13
I am working on WSSE Security Service and trying to apply load on the load using JMeter.
Followed the below steps:
Can someone please help me on the above that how can I work with WSSE Security Service in JMeter
Upvotes: 0
Views: 178
Reputation: 168002
Most probably you're not sending the same request as SoapUI does, i.e. protocol, host or path mismatch.
You can inspect the raw requests originated from:
And JMeter, you will need to increase JMeter logging verbosity for HttpCompoments by adding the next line to log4j2.xml file:
<Logger name="org.apache.http" level="debug" />
you will be able to see full network communication in jmeter.log file
Once you figure out what are the differences and amend JMeter configuration to send the same request as SoapUI does the error should go away.
Upvotes: 0