I\'m trying to send a HTTPS POST request with XML data to a server using PHP.
Anything sends to the server requires authentication therefore I\'ll use cURL.
You have to do, in you original code:
curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $fields['data']);
or
curl_setopt($ch, CURLOPT_POSTFIELDS, 'AAAAhttp://192.168.11.30:8080/xxx.htmlAAAA_descHTML');
I mean that you have to send the XML directly.