Implement an Air API by sending a SOAP request

后端 未结 2 1722
难免孤独
难免孤独 2021-01-14 11:47

I have a php web site. Here I need to implement air ticket searching and booking functionality. In order to do this, I have used a paid API from ARZOO web site... I got all

2条回答
  •  暗喜
    暗喜 (楼主)
    2021-01-14 12:39

    i also getting error while using SOAP CLIENT but when i use nusoap then they give me result..using this code if u get error like ip/password mismatch then You will call arzoo to verify your clientid and clientpassword

        
    BOM
    DEL
    2017-02-02
    2017-02-02
    1
    0
    0
    INR
    Given by Arzoo.com
    Given by Arzoo.com
    ArzooFWS1.1
    E
    ONE
    AI
    ';
    
    $clientinfo = array('soap_version'=>SOAP_1_1,
    'location' =>$location_URL,
    'uri' =>$action_URL,
     'style' => SOAP_RPC,
     'use' => SOAP_ENCODED,
     'trace' => 1,
     );
    
     $client = new nusoap_client('http://demo.arzoo.com/ArzooWS/services/DOMFlightAvailability?wsdl', $clientinfo);
    //print_r($client);
    $result = $client->call('getAvailability', array($Request));
    echo"
    ";
    print_r($result);
    $clientInfo =simplexml_load_string(utf8_encode($result));
    $flight = $clientInfo->Response__Depart->OriginDestinationOptions->OriginDestinationOption;
    $error =$clientInfo->error__tag;
    //echo $error;
    var_dump($flight);
    //exit;
    //echo"
    ";
    //print_r($result);
    //ECHO $error;
    ?>
    

提交回复
热议问题