У меня есть мыльные веб-сервисы для вызова / получения данных, ниже
$this->soapWrapper->add('MOMSp', function ($service) {
$service
->wsdl('http://192.168.0.xxx/xxx/xxx.asmx?WSDL')
->trace(true)
->cache(WSDL_CACHE_NONE)
//->customHeader($myheader)
->options([
'login' => 'xxx',
'password' => 'xxx'
])
->classmap([
MOMCallBscResponse::class
]);
});
$response = $this->soapWrapper->call('MOMSp.MOMCallBsc', [
[
'AppNo' => '259b62168b7c4cad853caf721230cb58'
]
]);
var_dump($response);
dd($response);
exit;
Я хочу позвонить / показать данные, основанные на AppNo, я получаю нулевое значение, когда я попробовал код выше,
MOMCallBscResponse {#975 ▼
#MOMCallBscResult: null
}
, пожалуйста, помогите мне