Getting AddressFilter mismatch at the EndpointDispatcher in SOAPUI request Getting AddressFilter mismatch at the EndpointDispatcher in SOAPUI request xml xml

Getting AddressFilter mismatch at the EndpointDispatcher in SOAPUI request


Issue is because the Request message is missing a To header. On the Message Editor, just below the request message window click on button WS-A. Then select the checkbox Add default wsa:To

Now run your request and the service will run just fine.

Hope that helps.

Please mark it as the answer if it did resolve your issue.


You will also need to set WS-ReliableMessaging to true.


Same problem occured to me in biztalk server 2013 r2. this worked for me. I think we need to inform biztalk about the endpoint location to send back the result. A test script run in soapui should be like below:

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:cal="http://CallExec.PO">   <soap:Header>    <To soap:mustUnderstand="1" xmlns="http://www.w3.org/2005/08/addressing">http://biztalktbtk/CallOrchestration/Service1.svc</To>   </soap:Header>   <soap:Body>      <cal:PO>         <PO_Num>1</PO_Num>         <Weight>1</Weight>         <shipmentPrice>1</shipmentPrice>      </cal:PO>   </soap:Body></soap:Envelope>