I am making call to Zefix Webservice Schnittstelle using Php. I don't know how to consume SOAP. Following details are given
<message name="SearchByNameRequestMsg">
<part name="body" element="zefix:searchByNameRequest"/>
</message>
<operation name="SearchByName">
<input message="zefix:SearchByNameRequestMsg"/>
<output message="zefix:ShortResponseMsg"/>
</operation>
<operation name="SearchByName">
<soap:operation soapAction="http://soap.zefix.admin.ch/SearchByName"/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>
I have tried following php code and some other
$url = "http://test-e-service.fenceit.ch:80/ws-zefix-1.7/ZefixService";
$soap_request = "<?xml version=\"1.0\"?>
";
$soap_request .= "<soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\" soap:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">
";
$soap_request .= " <soap:Body>
";
$soap_request .= " <SearchByName xmlns=\"http://soap.zefix.admin.ch/SearchByName\">
";
$soap_request .= " <Name>Autocenter</Name>
";
$soap_request .= " </SearchByName>
";
$soap_request .= " </soap:Body>
";
$soap_request .= "</soap:Envelope>";
$header = array(
"Content-type: text/xml;charset=\"utf-8\"",
"Accept: text/xml",
"Cache-Control: no-cache",
"Pragma: no-cache",
"SOAPAction: \"run\"",
"Content-length: ".strlen($soap_request),
);
$soap_do = curl_init();
curl_setopt($soap_do, CURLOPT_URL, $url );
curl_setopt($soap_do, CURLOPT_CONNECTTIMEOUT, 10);
curl_setopt($soap_do, CURLOPT_TIMEOUT, 10);
curl_setopt($soap_do, CURLOPT_RETURNTRANSFER, true );
curl_setopt($soap_do, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($soap_do, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($soap_do, CURLOPT_POST, true );
curl_setopt($soap_do, CURLOPT_POSTFIELDS, $soap_request);
curl_setopt($soap_do, CURLOPT_HTTPHEADER, array('Content-Type: text/xml; charset=utf-8', 'Content-Length: '.strlen($soap_request) ));
curl_setopt($soap_do, CURLOPT_USERPWD, $user . ":" . $password);
$result = curl_exec($soap_do);
if($result === false) {
$err = 'Curl error: ' . curl_error($soap_do);
curl_close($soap_do);
print $err;
} else {
curl_close($soap_do);
print 'Operation completed without any errors';
}
print_r($result);