Implementar una API de Air enviando una solicitud SOAP

Tengo un sitio web de php. Aquí necesito implementar la búsqueda de boletos aéreos y la funcionalidad de reserva. Para hacer esto, he usado una API de pago del sitio web de ARZOO ... Obtuve toda la documentación de ARZOO. He leído todo el doc. El doc dice

"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

Creo que la necesidad de enviar la solicitud a través de jabón es? Pero en la disponibilidad de aire contiene

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

He usado el siguiente código

$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);

Pero no está dando ningún resultado. Los documentos dicen

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

No sé jabón.

Estoy totalmente decepcionado. Por favor, ayúdame. Creo que obtendré una respuesta xml después de publicar la solicitud. Pero, ¿cómo voy a publicar mis datos?

Por favor responde

Muchas gracias, si alguien me ayuda, es muy apreciable.

Respuestas a la pregunta(2)

Su respuesta a la pregunta