Extract inner fields inside a SOAP result

Hi all,
in my app I build a SOAP request and I receive the relative reply.
The data are stored in a variable:

image
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!

I accessed to the inner element as:

response["ns8:details"]

Now I’m rewriting the ng-repeat loop …