-
Notifications
You must be signed in to change notification settings - Fork 33
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
Issue with parameters structure #57
Comments
How do you call the method? I had a similar problem when I used the magic method __call() via: $client->myMethodName($params) because when you check the SoapClientRequest.php and check the defined __call() method you will see that it uses only the first part of the $params. ($parameters[0]) public function __call($name, $parameters)
{
return $this->call($name, $parameters[0] ?? []);
} So directly use the call() method, maybe it will work, because it doesn't take only the first part of $parameters. $client->call('myMethodName', $params) If you are already using the call() method, ignore this comment :D |
@lukeraymonddowning How can i pass multiple parameter to body? |
@nedwors are you able to chime in on this? |
maybe my suggested changes here are helping: #61 |
Hello,
I need to pass following structure to the SOAP Client:
I've tried with the following array as parameters. But it doesn't works.
Anybody can give me an hand with this?
Regards
The text was updated successfully, but these errors were encountered: