Ben bu çalıştırırsanız
$HostTransactionInfo = new HostTransactionInfo(); // std Object
$HostTransactionInfo->SecurenetID = $cc->merchant->data[$this->name]['secure_net_id'];
$HostTransactionInfo->SecureKey = $cc->merchant->data[$this->name]['secure_key'];
$HostTransactionInfo->Test = self::TEST;
$securenet = new SoapClient(self::WSDL, array('features' => SOAP_SINGLE_ELEMENT_ARRAYS));
$host_trans_info = new SoapVar($HostTransactionInfo, SOAP_ENC_OBJECT);
var_dump($host_trans_info);
$save = $securenet->Process_Save($host_trans_info);
Ben her varyasyon Bu alırsınız: "Sunucu isteği işleyemedi ---> Nesne başvurusu bir nesnenin örneğine ayarlanmadı.."
Benim SoapClient :: __getTypes () isteği bana bu verir:
array(
[2] => struct HostTransactionInfo {
string SecurenetID;
string SecureKey;
string Test;
}
[6] => struct Process_Save {
HostTransactionInfo oTi;
}
)
Benim SoapClient :: __getFunctions () isteği bana bu verir:
array (
[2] => Process_SaveResponse Process_Save(Process_Save $parameters)
)
Herkes yanlış yapıyorum ne olarak herhangi bir ipucu var mı?