plaidshirt
plaidshirt

Reputation: 5671

WSDL file import in JMeter 3

I try to execute SOAP requests in JMeter, but I can't find possibility to import WSDL files. I found, that it was present as SOAP/XML-RPC Request in JMeter 2.X with an URL field, but it is deprecated in JMeter 3.X. There is no such field in current HTTP Request Sampler.

Upvotes: 1

Views: 4293

Answers (1)

UBIK LOAD PACK
UBIK LOAD PACK

Reputation: 34526

SOAP/XML-RPC Request was removed for performance reasons.

There is now a Template called Building a SOAP Webservice Test Plan that shows how to test SOAP WS:

SOAP Template

When you need to create a test from a WSDL, you should use SOAP UI and then convert your SOAP WS Test to JMeter through the following procedure:

  • Start JMeter , select Template Recording , go to HTTP(s) Test Script Recorder and start it
  • Start SOAP UI and configure JMeter as a proxy in Soap UI
  • Run your Soap UI Webservice
  • It will appear in JMeter, you can then variabilize what you want in JMeter and run your test

Upvotes: 2

Related Questions