Hi,
I’m trying to understand how I can configure a WSD provider and services so my SOAP response can be consistent in terms of namespace prefixes.
This is the type of result I get :
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ser-root:serviceResponse xmlns:ser-root="webmethods.namespace" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<tns:idClientCLM xmlns:tns="webmethods.namespace">999</tns:idClientCLM>
<tns:soldePoints xmlns:tns="webmethods.namespace">50</tns:soldePoints>
<tns:soldePointsDollars xmlns:tns="webmethods.namespace">0.05</tns:soldePointsDollars>
<tns:codeRetour xmlns:tns="webmethods.namespace">32</tns:codeRetour>
<tns:messageRetour xmlns:tns="webmethods.namespace">La carte saisie est inactive. Veuillez balayer une carte différente ou inviter le client à contacter le CRC . Statut carte =</tns:messageRetour>
</ser-root:serviceResponse>
</soapenv:Body>
</soapenv:Envelope>
Is there a way to make it this way ? :
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ser-root:serviceResponse xmlns:ser-root="webmethods.namespace" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ser-root:idClientCLM>999</ser-root:idClientCLM>
<ser-root:soldePoints>50</ser-root:soldePoints>
<ser-root:soldePointsDollars>0.05</ser-root:soldePointsDollars>
<ser-root:codeRetour>32</ser-root:codeRetour>
<ser-root:messageRetour>La carte saisie est inactive. Veuillez balayer une carte différente ou inviter le client à contacter le CRC . Statut carte =</ser-root:messageRetour>
</ser-root:serviceResponse>
</soapenv:Body>
</soapenv:Envelope>