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);
Finally I got answer
I have changed SoapAction
"SOAPAction: \"http://soap.zefix.admin.ch/SearchByName\"",
And Soap Request Body like below
$user = "XXXXXX";
$password = "XXXX";
$url = "http://test-e-service.fenceit.ch:80/ws-zefix-1.7/ZefixService";
$soap_request = "<?xml version=\"1.0\"?>
";
$soap_request .= "<Envelope xmlns=\"http://schemas.xmlsoap.org/soap/envelope/\">
";
$soap_request .= " <Body>
";
$soap_request .= " <searchByNameRequest xmlns=\"http://www.e-service.admin.ch/zefix/2015-06-26\">
";
$soap_request .= " <name>Online Consulting AG</name>
";
$soap_request .= " <active>true</active>
";
$soap_request .= " <maxSize>2</maxSize>
";
$soap_request .= " </searchByNameRequest>
";
$soap_request .= " </Body>
";
$soap_request .= "</Envelope>";
$header = array(
"Content-type: text/xml;charset=\"utf-8\"",
"Accept: text/xml",
"Cache-Control: no-cache",
"Pragma: no-cache",
"SOAPAction: \"http://soap.zefix.admin.ch/SearchByName\"",
"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';
}
echo $result;
?>
// set your headers
$ctx_opts = [
'http' => [
'header' => 'Content-Type: text/xml;charset=utf-8'
]
];
// create stream context
$ctx = stream_context_create($ctx_opts);
// array of options
$options = [
'stream_context' => $ctx,
'proxy_host' => "yourhost.net", // host
'proxy_port' => 80 // port
];
// init your client
$client = new \SoapClient('http://address.net/webservice', $options);
// add function parameters
$data = ['parameter' = > 'value'];
// than invoke your function
$response = $client->SearchByName($data);