Reputation: 11
How can I enable ws reliable messaging in JMeter for web services. When I'm trying to send request in jmeter, I am getting error like mismatch endpoint but in SOAP UI tool it is working fine after enabling the ws reliable messaging option.
Upvotes: -1
Views: 205
Reputation: 11
Thanks for your suggestion,but I got some other easy solution.We can record SOAP UI request in fiddler and from their we can copy request (Request will change after enabling wsrm in soap ui) and we can use that as a final request and paste that in body of http request sampler.Parameterized required value That's it.It worked for me.
Upvotes: 0
Reputation: 34566
I think you'll need to code your own pre-processor based on this similar code:
Another option is to code in java/Groovy the call, example:
And use Groovy in JSR223 Sampler
Upvotes: -1