Почему ответ 150 Ошибка при подключении кибер-источника к KCP - PullRequest
0 голосов
/ 09 апреля 2020

Я хочу подключить кибер-источник к KCP (корейский кибер-платеж), но Cybersource вернул код ошибки (150) ..

Я запрашиваю xml.

<soap:Body>
          <requestMessage xmlns="urn:schemas-cybersource-com:transaction-data-1.91">
            <merchantID>hello_company</merchantID>
            <merchantReferenceCode>demo_merchant</merchantReferenceCode>
            <billTo>
                <firstName>John</firstName>
                <lastName>Smith</lastName>
                <phoneNumber>408-557-1045</phoneNumber>
                <email>jsmith@example.com</email>
            </billTo>
            <purchaseTotals>
                <currency>KRW</currency>
                <grandTotalAmount>1100</grandTotalAmount>
            </purchaseTotals>
            <installment>
                <frequency>0</frequency>
            </installment>
            <apPaymentType>ACC</apPaymentType>
            <apInitiateService run="true">
                <returnURL>https://www.example.com</returnURL>
                <productName>Television</productName>
                <productDescription>Television</productDescription>
                <escrowAgreement>Y</escrowAgreement>
                <languageInterface>EN</languageInterface>
            </apInitiateService>
        </requestMessage>
</soap:Body>

и отвечаю на него xml

    <soap:Body>
        <c:replyMessage xmlns:c="urn:schemas-cybersource-com:transaction-data-1.91">
            <c:requestID>5864176087926468303009</c:requestID>
            <c:decision>ERROR</c:decision>
            <c:reasonCode>150</c:reasonCode>
 <c:requestToken>AxjjLwSTPeXKmjuNANihABFRHBeHQ2zNC4mAMgAGkmXoxYFmTgAALQ4I</c:requestToken>
            <c:apInitiateReply>
                <c:reasonCode>150</c:reasonCode>
            </c:apInitiateReply>
        </c:replyMessage>
    </soap:Body>

и Service is not enabled, please contact customer support эта ошибка отображается в бизнес-центре.

, но другие платежные операции (SOAP API) завершены. пожалуйста, помогите ..

...