Below are the steps required to allow soapUI to consume a WCF service which is using wsHttpBinding.
- By default Message Security is turned on for wsHttpBinding, which isn't supported by soapUI. So the security mode for the binding needs to be set to None:
<bindings>
<wsHttpBinding>
<binding>
<security mode="None">
</security>
</binding>
</wsHttpBinding>
</bindings> - After creating the new soapUI project, the only update that is required is to select the 'Add default wsa:To' check box (as WS-Addressing is part of the wsHttpBinding). Enable/Disable WS-A addressing should already be selected, along with the appropriate SOAP action. The below options are available when you click the WS-A button, available as part of the Request window.
Are you using the latest version of SOAPUI (4.0)? Is this the same issue in 4.0?
ReplyDeleteThat worked perfectly. Thanks!
ReplyDeleteIt worked great. Thanks.
ReplyDeleteThanks!
ReplyDeleteWhere to get the first step done?
ReplyDeleteWhere to change the binding? where is the binding file located?
in the web.config of your service
DeleteThanks for the nice post. It worked to me.
ReplyDelete