I have tried multiple examples online to generate my soap client request to look like this
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:isw="http://tech.solhavensystems.com/customerenquiry/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<isw:CustomerEnquiry>
<isw:CustomerEnquiryRequest>
<isw:CustomerID>012345678</isw:CustomerID>
</isw:CustomerEnquiryRequest>
</isw:CustomerEnquiry>
</soap:Body>
</soap:Envelope>
I followed these examples:
and other options provided by SoapCore, yet I've been unable to get the right result.
I need help with a working process to generate the specific request on client side.