Zaimplementuj interfejs API Air, wysyłając żądanie SOAP

Mam stronę internetową php. Tutaj muszę wdrożyć funkcję wyszukiwania i rezerwacji biletów lotniczych. W tym celu użyłem płatnego API ze strony internetowej ARZOO ... Mam całą dokumentację od ARZOO. Przeczytałem cały doc. Doc mówi

"Accessing this service requires standard SOAP client. SOAP client should authenticate
itself through user name and password. Client should get their IPs registered with
Arzoo and get a user account created. The Arzoo web service provides a service
point URL. Web service clients should post SOAP request message as an attachment
for the desired response. The XML structure of different web services is discussed in
the respective documents." 
You can connect to Arzoo XML services with the following test service point URLs:-

FlightAvailability:http://<url>/DOMFlightAvailability?wsdl

Myślę, że muszę wysłać prośbę za pomocą mydła, prawda? Ale w dostępności powietrza zawiera

Example Request Xml
<Request>
<Origin>BOM</Origin>
.............
.............
</Request>

Użyłem następującego kodu

$post_string.="<Request>";
$post_string.="<Origin>$from</Origin><Destination>$to</Destination>";
........
......

$post_string.="</Request>";
$path = ":http://<url>/DOMFlightAvailability?wsdl"; 

$ch = curl_init($path); 
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_string); //Send the data to the file
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); 
$val = curl_exec($ch);
 $headers = curl_getinfo($ch);
 $errr=curl_error($ch);

Ale to nie daje żadnego rezultatu. Dokumenty mówią

RESPONSE XML:-
The response will be in <arzoo_response> </arzoo_response>. This contains the Request
also.

Nie znam SOAP.

Jestem całkowicie rozczarowany. Proszę pomóż mi. Myślę, że otrzymam odpowiedź XML po opublikowaniu żądania. Ale jak opublikuję moje dane?

Proszę odpowiedz

Wielkie dzięki, jeśli ktokolwiek mi pomoże, jego wielkie znaczenie