запрос мыла и ответ в php LARAVEL - PullRequest
0 голосов
/ 08 мая 2018

Я новичок в мыльном запросе и ответе на PHP, я работаю с API пополнения баланса.API-провайдеры дали мне ниже XML (я использую Arzoo API-провайдеры).

<MobileRechargeRequest>
  <Clientid>Given By Arzoo</Clientid>
 <Clientpassword>Given By Arzoo</Clientpassword>
<ClientType>ArzooFWS1.1</ClientType>
<ServiceProvider>AIRTEL-TopUp</ServiceProvider>
<ServiceProviderId>1</ServiceProviderId>
<Rechrgeamount>100.0</Rechrgeamount>
<SubscriberID>9876543210</SubscriberID>
<PartnerReferenceId>123456</PartnerReferenceId>
</MobileRechargeRequest>

Они сказали, что это SOAP API, как я могу отправить этот запрос на их URL: -

http://demo.arzoo.com/ArzooWS/services/MobileRecharge?wsdl

используя SOAP в PHP.Я попробовал, как показано ниже:

 $soapclient = new \SoapClient('http://demo.arzoo.com/ArzooWS/services/MobileRecharge?wsdl');

    //Use the functions of the client, the params of the function are in 
    //the associative array
    $params = array('CountryName' => 'Spain', 'CityName' => 'Alicante');
    $response = $soapclient->getMobileDetails('<?xml version="1.0" encoding="UTF-8"?>
        <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope/" soap:encodingStyle="http://www.w3.org/2003/05/soap-encoding">
        <soap:Body>

        <getMobileDetails xmlns="http://demo.arzoo.com/ArzooWS/services/MobileRecharge">
        <MobileRechargeRequest>
                        <Clientid>77743781</Clientid>
                         <Clientpassword>******</Clientpassword>
                         <Clienttype>ArzooFWS1.1</Clienttype>
                        <ServiceProvider>AIRTEL-TopUp</ServiceProvider>
                        <ServiceProviderId>1</ServiceProviderId>
                        <Rechrgeamount>100.0</Rechrgeamount>
                        <SubscriberID>9164995714</SubscriberID>
                        <PartnerReferenceId>123456</PartnerReferenceId>
                 </MobileRechargeRequest>  </getMobileDetails> </soap:Body></soap:Envelope>');

    var_dump($response); 

Я не получаю никакого ответа, пожалуйста, помогите мне, если у меня есть ошибка в запросе SOAP XML

...