#php #curl #soap
#php #curl #soap
Вопрос:
Это ссылка soap, которую мне нужно вызвать с помощью CURL:
http://webservice-ip1.systemnic.net/index.php?wsdl
Мне нужна эта функция:
>message name="domainInfoRequest
и его ответ:
>message name="domainInfoResponse
Но я не знаю, как это вызвать. Я видел другие темы, но они не были полезными, поэтому я написал этот код:
$soapUrl = "http://webservice-ip1.systemnic.net/index.php?wsdl"; // asmx URL of WSDL
$soapUser = "username"; // username
$soapPassword = "password"; // password
// xml post structure
$xml_post_string = '<?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>
<domainInfo xmlns="http://webservice-ip1.systemnic.net/index.php?wsdl">
<api_user>"myusername"</api_user>
<api_pass>"mypass"</api_pass>
<domain>"mydomain"</domain>
</domainInfo >
</soap:Body>
</soap:Envelope>'; // data from the form, e.g. some ID number
$headers = array(
"Content-type: text/xml;charset="utf-8"",
"Accept: text/xml",
"Cache-Control: no-cache",
"Pragma: no-cache",
"SOAPAction: http://webservice-ip1.systemnic.net/index.php?wsdl",
"Content-length: ".strlen($xml_post_string),
); //SOAPAction: your op URL
$url = $soapUrl;
// PHP cURL for https connection with auth
$ch = curl_init();
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_VERBOSE, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_post_string); // the SOAP request
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
// converting
$response = curl_exec($ch);
curl_close($ch);
// converting
$response1 = str_replace("<soap:Body>","",$response);
$response2 = str_replace("</soap:Body>","",$response1);
// convertingc to XML
$parser = simplexml_load_string($response2);
// user $parser to get your data out of XML response and to display it.
Но это не сработало!
Комментарии:
1. кстати, в php есть библиотека soap
2. большое спасибо, но библиотека soap на моем сервере работает очень медленно! я не знаю, почему! по этой причине я стараюсь использовать curl вместо soap на своем сервере!
3. Вы должны отправить имя функции действия вместе с заголовками в массиве заголовков «SOAPAction: systemnic.net/services/#domainInfo »