-
Notifications
You must be signed in to change notification settings - Fork 137
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
Sequences without <item> #41
Comments
I encounter this problem too. In fact the XML should be:
In order to be able to call: Rather than: I tried with SOAP webservices in EJB3 and the result is as in my example. |
From my tests (with SOAP UI), when I call the service exposed by Symfony + BeSimpleSoap, I got this response:
But I think we must not have the item keyword as for the same service exposed in J2EE EJB3:
|
My problems is related with this: BeSimple/BeSimpleSoapBundle#29.
I have to process an xml item with a property "accessories" as described here:
So the received XML Object is something like:
This is my accessories var definition:
BeSimpleSoap is unable to load this collection, returning allways null when I call $object->getAccessories()
If the received XML object were with "item" elements in sequence there's no problem, but I'm not I would be able to change received data as it's from an external system.
I mean, this works and loads...
Is there something I can do?
The text was updated successfully, but these errors were encountered: