Does WCFStorm support calling WCF services with JSON enabled?

We have WCF services with JSON enabled, and there are problems using WCFStorm that calls these services. If we disable JSON, we will not get errors. The error we get is below. We found something in common with WSHTTPBinding.

The reference to the object is not installed in the instance of the object.

We found that WcfStorm will not work because it does not support WebHttpBinding. http://www.wcfstorm.com/wcf/Forums/Thread.aspx?pageid=19&mid=26&ItemID=2&thread=59&pagenumber=1 .

Does anyone know how to make it work? How we like to use it.

Or are there suggestions from other tools that let you test SOAP and JSON, as well as test performance and save scripts?

thank

+3
source share
1 answer

A bit of a late update, but as this question pops up on google ...

WcfStorm does not support JSON, but WcfStorm REST does. http://www.wcfstorm.com/wcf/learn-more-rest.aspx

Like for Chrome plugins: Postman is a REST client. https://chrome.google.com/webstore/detail/fdmmgilgnpjigdojojpjoooidkmcomcm

SOAP UI does both SOAP and JSON / REST in the same application if you need it. http://www.soapui.org

As far as I know, they all support save scripts, not sure if WcfStorm REST or Postman supports load / stress testing, but SOAP UI does.

+1
source

Source: https://habr.com/ru/post/1786918/


All Articles