Merhaba Arkadaşlar,

Yeni bir proje üzerine çalışıyorum ancak bir türü çözemedim daha doğrusu bu firmada biraz ilginç diğerlerini yaptım...

Aşşağıdaki kodu çalıştırdığımda hata alıyorum.

function sendRequest($site_name,$send_xml,$header_type) {
//die('SITENAME:'.$site_name.'SEND XML:'.$send_xml.'HEADER TYPE '.var_export($header_type,true));
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$site_name);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,$send_xml);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_HTTPHEADER,$header_type);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 120);
$result = curl_exec($ch);
return $result;
}

$xml = <<

String
String
0

String
String

0
String
String
String

String
String
0
0

EOS;
$result = sendRequest('http://api.isobil.com.tr/v2/isobil_API_XML.asmx?WSDL',$xml,array('Content-Type: text/xml'));
die('
'.var_export($result,1).'
');

?>


Bilgileri normal giriyorum kullanıcı adı ve şifre gibi ama sayfa hep

'soap:VersionMismatchPossible SOAP version mismatch: Envelope namespace was unexpected. Expecting http://schemas.xmlsoap.org/soap/envelope/. '

Yukardaki mesajı veriyor. Nasıl bir yol izlemek lazm yardımcı olabilirmsiniz?