Hi there
I'm trying to get an answer for a soap request
This is the info provided by the software house about the request:
POST /myTest/Services.asmx HTTP/1.1
Host: 127.0.0.1
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://------.--/myTest/Addons"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<Addons xmlns="http://------.--/myTest/">
<hotelUnit>string</hotelUnit>
<initialDate>dateTime</initialDate>
<finalDate>dateTime</finalDate>
<roomStays>
<RoomStayOfPAX>
<PaxPerRoom>
<PAX xsi:nil="true" />
<PAX xsi:nil="true" />
</PaxPerRoom>
<RoomType>string</RoomType>
<Allotment>
<Allotment>string</Allotment>
</Allotment>
</RoomStayOfPAX>
<RoomStayOfPAX>
<PaxPerRoom>
<PAX xsi:nil="true" />
<PAX xsi:nil="true" />
</PaxPerRoom>
<RoomType>string</RoomType>
<Allotment>
<Allotment>string</Allotment>
</Allotment>
</RoomStayOfPAX>
</roomStays>
<onlyFixedValue>boolean</onlyFixedValue>
</Addons>
</soap:Body>
</soap:Envelope>
I'm trying to use this code for the request passing the xml on $parameters
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$baseurl.$command);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_TIMEOUT,180);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $parameters);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_USERPWD, "$login:$password");
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
$result = curl_exec($ch);
if($result === false){
echo 'Curl error: ' . curl_error($ch);
} else {
//$result = simplexml_load_string($result);
}
curl_close($ch);
return($result);
But I get an invalid request.
myTest is over a self signed ssl certificate and with basic authentication. Maybe the problem resides there or in the request itself.
Anyone can help me with this ? Best regards.