Nirav Kamani
Nirav Kamani

Reputation: 3272

How to call WCF Service using JMeter?

I have to test my WCF Service using JMeter.

Is it possible to call particular api method from WCF Service using JMeter?

If we can is there any demo available? I also need to pass parameters to method.

I already checked following resources.

Using JMeter to load test WCF POST REST Service In this example they are not specifying how to call particular Save method.

I am having soap WCF service. How can i call particular API and pass parameters?

Upvotes: 2

Views: 3786

Answers (1)

Dmitri T
Dmitri T

Reputation: 168122

In case of SOAP you can call this or that method using SOAPAction header. This header value along with Content-Type header can be specified via JMeter's HTTP Header Manager

See Building a SOAP WebService Test Plan JMeter User Manual chapter for more information.

Upvotes: 2

Related Questions