Ben sonraki webcoder bağlanmak çalışıyorum:
https://grab.beta.agiv.be/Tools/CRABTools.svc?wsdl
Ben de zaten oluşturmuş olduğunuz bir başlık öğesi eklemek zorunda.
Ben sadece PHP soapclient
veya zend_soap_client
diyebilirsin? Ya da ben kullanmak zorunda nusoap_client
?
Ben gibi bir şey deneyin:
$soapclient = new nusoap_client($wsdl);
$header = "<o:Security s:mus... ../>"; // including my password and username
$soapclient->call("FindGemeentenResult",
array("houseNumberId" => 2306852),
"https://grab.beta.agiv.be/Tools/CRABTools.svc",
"http://ws.agiv.be/crabtools/ICRABTools/FindGemeentenResult",
$header);
Ama şimdi alıyorum:
Error: HTTP Error: Unsupported HTTP response status 415 Cannot process the message because the content type 'text/xml; charset=ISO-8859-1' was not the expected type 'text/xml; charset=utf-8'.
(SoapClient-> tepki cevabının içeriği vardır)
Ben bu oldukça yeni, herhangi bir yardım hoş olurdu!