BizTalk Exception: Calling web services with Mixed One-Way and Solicit-Response Operations
There was a failure executing the response(receive) pipeline:
"Microsoft.BizTalk.DefaultPipelines.XMLReceive, Microsoft.BizTalk.DefaultPipelines, Version=
Send Port:
"ShippingMessageProcess_
URI: "http://swsmis009/ShippingWebServicesApp/ShippingWebServicesApp.asmx"
Reason: The body part is NULL.
***
Generally, after deploying the project, a solicit-response send port will be created and bound to the orchestration. In this case, the above exception will occur when consuming the one-way web methods via a solicit-response physical web port.
You have to split the web services into two pieces, one web service only contains one-way web methods, and another web service only contains two-way (request / response) web methods. Then you can create two different ports in your orchestration and bind them to two different physical send ports, one that is one-way and one that is two-way.