-
-
Notifications
You must be signed in to change notification settings - Fork 357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Undefined output -> $this->portTypes[$bindingData['portType']][$operation]['output'] is undefined #123
Comments
Maybe this one can be closed since there is fix commit? |
commit aaee1b0 seems to break things on our side. if (!isset($opData['output']['name'])) {
$this->debug('No output name in WSDL for operation ' . $this->methodname);
$this->setError('Operation ' . $this->methodname . ' not present in WSDL');
return false;
} Not sure what is expected to be in the We have tried changing the WSDL to add a name to the output, but nothing seems to work. Removing this if statement fixes our issues. |
Having the same issue as @benboydens. Taking this out fixed it for us. |
$this->portTypes[$bindingData['portType']][$operation]['output'] is undefined
When I use
$this->client->call('method',$params);
with try catch I have this error
Undefined array key "output"
line 4906

I´m using php 8.3
The text was updated successfully, but these errors were encountered: