XML Service SOAP Name Space

Hello,

We created a Service SOAP based on a 3rd parties WSDL but we are getting an incorrect Namespace is anyone able to help with how to alter namespaces?

What we are outputting as per below

<soap:Envelope xmlns:soap=“http://schemas.xmlsoap.org/soap/envelope/” xmlns:soapenc=“http://schemas.xmlsoap.org/soap/encoding/” xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance” xmlns:xsd=“XML Schema”>
soap:Body
<ns2:ReceiveOrderUpdateResponse xmlns:ns1=“ANONYMIZED” xmlns:ns2=“ANONYMIZED”>
ns1:CreateOrderObjectResponse
ns1:Status
ns1:ReturnCode0</ns1:ReturnCode>
ns1:ReturnErrorSuccess</ns1:ReturnError>
ns1:ReturnReasonSuccess</ns1:ReturnReason>
</ns1:Status>
</ns1:CreateOrderObjectResponse>
</ns2:ReceiveOrderUpdateResponse>
</soap:Body>
</soap:Envelope>

Should be as per below;

<SOAP-ENV:Envelope xmlns:SOAP-ENV=“http://schemas.xmlsoap.org/soap/envelope/” xmlns:SOAP-ENC=“http://schemas.xmlsoap.org/soap/encoding/” xmlns:xsd=“XML Schema” xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance” xmlns:tns2=“ANONYMIZED” xmlns:tns=“ANONYMIZED”>
SOAP-ENV:Body
tns:ReceiveOrderUpdateResponse
tns2:CreateOrderObjectResponse
tns2:Status
tns2:ReturnCode0</tns2:ReturnCode>
tns2:ReturnErrorSuccess</tns2:ReturnError>
tns2:ReturnReasonSuccess</tns2:ReturnReason>
</tns2:Status>
</tns2:CreateOrderObjectResponse>
</tns:ReceiveOrderUpdateResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Hello,

This was resolved by manually entering the XML response to the service.

Kind regards

Liam