Hi,
I fixed The 500 issue and moved to Error 400.
Do I understand correctly?:
I need to create an XML string (ls_body) with a reference to updatecustomer function (that inside customersupd WS).
Also, I need to provide the parameter that updatecustomer function gets.
This is the old code: luo_wsresult = p_customersupd.updatecustomer( auo_customerschema)
But in a new code I have to change parameter auo_customerschema into XML structure?
This is a complicated parameter (auo_customerschema) that includes arrays, strings, numbers....
Is there some function that can change it to XML structure?
Do I need to write an XML with complicated structure of parameters for every case that I need to rewrite because of the upgrade?
And what about the value that updatecustomer function returns (luo_wsresult)?
Thanks,
Marina
Sadly the answer to your question is no there is no function/tool to convert the complex XML for you. You will have to prepare this XML yourself. Likewise you will need to parse the XML received too. It's a real PIA, pbdom is so clunky to use but dies work.
I feel your pain.
All the best
David