Implementar uma API do Air enviando uma solicitação SOAP

Eu tenho um site php. Aqui, preciso implementar a funcionalidade de pesquisa e reserva de passagens aéreas. Para fazer isso, eu usei uma API paga do site da ARZOO ... Eu recebi toda a documentação do ARZOO. Eu li o documento inteiro. O Doc diz

"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

Eu acho que precisa enviar o pedido via sabonete é isso? Mas na disponibilidade de ar contém

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

Eu usei o seguinte 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);

Mas não está dando nenhum resultado. Os documentos dizem

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

Eu não sei SOAP.

Estou totalmente desapontado. Por favor me ajude. Eu acho que vou receber uma resposta xml depois de postar o pedido. Mas como vou postar meus dados?

Por favor, responda

Muito obrigado, se alguém me ajudar, sua grande apreciável

questionAnswers(2)

yourAnswerToTheQuestion