Hi all,
in my app I build a SOAP request and I receive the relative reply.
The data are stored in a variable:
In the page i need to show the inner objects, inside the ns8:details element.
How can i access to the inner element?
I try with
Code: {{response.code}} <br/> Details: {{response.details}} <br/> Response: {{response}}
but in the page I see:
Code: 0 Details: Response: {"code":"0", "ns8:details" .....
The ‘Code’ element is correctly accessed, but not ‘details’.
Should I use the element ‘details’ name with the namespace? How ?!?!
Thanks!