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
Hello,
I'm having some trouble understanding an odd behaviour in Savon :
I have the following Hash of data :
{ :request => { :info => { :players => [ [0] { :player => { :id => 0, :player_type => 5, :details => { :external_id => 2 } }, [1] { :player => { :id => 1, :player_type => 2 } } ] } } }
The XML send in the request is the following (important stuff to see : not an array of player but an array of players)
<request> <info> <players> <player> <id>0</id> <playerType>5</playerType> <details> <externalId>2</externalId> </details> </player> </players> <players> <player> <id>1</id> <playerType>2</playerType> </player> </players> </info> </request>
Although, I should have something more like this :
<request> <info> <players> <player> <id>0</id> <playerType>5</playerType> <details> <externalId>2</externalId> </details> </player> <player> <id>1</id> <playerType>2</playerType> </player> </players> </info> </request>
It looks a bit like #585 but there's no answer there
The text was updated successfully, but these errors were encountered:
closes savonrb#672 add unwrap option and pass it to Gyoku
81f3fe6
Closed by releasing Gyoku v1.2.3 -- thanks again @TiteiKo!
Sorry, something went wrong.
Merge pull request #673 from TiteiKo/master
fba39c6
closes #672 add unwrap option and pass it to Gyoku
No branches or pull requests
Hello,
I'm having some trouble understanding an odd behaviour in Savon :
I have the following Hash of data :
The XML send in the request is the following (important stuff to see : not an array of player but an array of players)
Although, I should have something more like this :
It looks a bit like #585 but there's no answer there
The text was updated successfully, but these errors were encountered: