Skip to content
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

Empty associative array in soap server #105

Open
gotha opened this issue Nov 24, 2015 · 0 comments
Open

Empty associative array in soap server #105

gotha opened this issue Nov 24, 2015 · 0 comments

Comments

@gotha
Copy link

gotha commented Nov 24, 2015

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 ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant