Skip to content

Instantly share code, notes, and snippets.

@pashagray
Created October 17, 2016 07:03
Show Gist options
  • Save pashagray/5e76cd650202acbf27b8b61ddaabdd79 to your computer and use it in GitHub Desktop.
Save pashagray/5e76cd650202acbf27b8b61ddaabdd79 to your computer and use it in GitHub Desktop.
<!-- ВЫВАЛИВАЕТСЯ В 500 ОШИБКУ -->
<?xml version="1.0" encoding="UTF-8"?>
<x:Envelope
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ns="http://kz.processing.cnp.merchant_ws/"
xmlns:x="http://www.w3.org/2003/05/soap-envelope"
xmlns:ins0="http://merchant_web_services.cnp.processing.kz/xsd"
xmlns:ins1="http://beans.merchant_web_services.cnp.processing.kz/xsd"
xmlns:ins2="http://beans.common.cnp.processing.kz/xsd"
xmlns:ins3="http://kz.processing.cnp.merchant_ws/xsd">
<x:Body>
<ins3:completeCashOutTransaction>
<ins3:merchantId>77700000000</ins3:merchantId>
<ins3:merchantKeyword>111</ins3:merchantKeyword>
<ins3:referenceNr>111000005044</ins3:referenceNr>
<ins3:transactionSuccess>true</ins3:transactionSuccess>
</ins3:completeCashOutTransaction>
</x:Body>
</x:Envelope>
<!-- ПРОХОДИТ НОРМАЛЬНО -->
<x:Envelope
xmlns:x="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd3="http://kz.processing.cnp.merchant_ws/xsd">
<x:Header/>
<x:Body>
<xsd3:completeCashOutTransaction>
<xsd3:merchantId>77700000000</xsd3:merchantId>
<xsd3:referenceNr>111000005044</xsd3:referenceNr>
<xsd3:transactionSuccess>true</xsd3:transactionSuccess>
<xsd3:merchantKeyword>111</xsd3:merchantKeyword>
</xsd3:completeCashOutTransaction>
</x:Body>
</x:Envelope>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment