Description
SoapServer::handle() is not behaving as expected in my situation. This was introduced in PHP 8.5
I had something similar to:
$server = new SoapServer($myWsdlFile);
$server->setClass($myClassName);
$server->handle();
As documented $server->handle() without parameter should get body contents, but that seems to have broken. I changed my code to:
$server->handle($request->getBody()->getContents());
And now it's working again.
I'm suspecting commit f538319 by @ndossche but I'm not sure.
PHP Version
Operating System
No response
Description
SoapServer::handle()is not behaving as expected in my situation. This was introduced in PHP 8.5I had something similar to:
As documented
$server->handle()without parameter should get body contents, but that seems to have broken. I changed my code to:And now it's working again.
I'm suspecting commit f538319 by @ndossche but I'm not sure.
PHP Version
Operating System
No response