You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When composing params for a SOAP message using a Hash, we are getting SOAPFault errors related to XSD validation failures that depend on the order of XML elements. We cannot insert new key:value pairs into a Hash because it seems to mess up the resulting XML element order.
How does savon map the Hash key:value pairs to XML elements? Can it use the WSDL to correctly pluck out the key:value pairs in the correct order?
The text was updated successfully, but these errors were encountered:
It seems that a ruby hash enumerates by the order of inserting keys (is that right?)
When composing params for a SOAP message using a Hash, we are getting SOAPFault errors related to XSD validation failures that depend on the order of XML elements. We cannot insert new key:value pairs into a Hash because it seems to mess up the resulting XML element order.
How does savon map the Hash key:value pairs to XML elements? Can it use the WSDL to correctly pluck out the key:value pairs in the correct order?
The text was updated successfully, but these errors were encountered: