I an consuming a webservice from a third party.
That webservice has a non documented "feature" that demands that the request should be in alphabetic order. For example:
This one is ok!
<OpportunityManagement> <AmountRequested>275000</AmountRequested> <Description>VCE Test - SOAPUI CALL</Description> <EstCloseDate>2017-03-30T23:59:00</EstCloseDate><OpportunityManagement>
This one is wrong - i don't get a SOAP error... but the data from the description is empty in the other system
<OpportunityManagement><AmountRequested>275000</AmountRequested> <EstCloseDate>2017-03-30T23:59:00</EstCloseDate> <Description>VCE Test - SOAPUI CALL</Description> <OpportunityManagement>
I'm still debating to get a fix in the other system but i cannot wait any longer. Currently i'm using the default export mapping to create a request - because the request has a complex structure with several list.
Is there a simple fix in mendix where i can garantue that the request will be in alphabetic order?