We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I am testing the example in the documentation: http://besim.pl/SoapBundle/soapserver/tutorial/associative_array.html
my code is like this:
/** * @Soap\Method("sendAssocArray") * @Soap\Param("assocArray", phpType = "BeSimple\SoapCommon\Type\KeyValue\String[]") * @Soap\Result(phpType = "BeSimple\SoapCommon\Type\KeyValue\String[]") */ public function sendAssocArrayOfStringAction(array $assocArray) { return $assocArray; }
My client call it like this:
$client = new SoapClient("http://localhost:9999/app_dev.php/ws/MyService?wsdl", array('cache_wsdl' => WSDL_CACHE_NONE)); $response = $client->sendAssocArray(["name" => "Ivan", "lastName" => "Petrov"]); var_dump($response);
$response is empty stdClass and when I check $assocArray is empty too.
Is this some kind of bug or I am doing something wrong ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I am testing the example in the documentation: http://besim.pl/SoapBundle/soapserver/tutorial/associative_array.html
my code is like this:
My client call it like this:
$response is empty stdClass and when I check $assocArray is empty too.
Is this some kind of bug or I am doing something wrong ?
The text was updated successfully, but these errors were encountered: