I am a newbie to the world of knockout JS
. Can anyone let me know how to parse the XML
response returned from SOA
call in below code.
//viewModel
Here the SOA service is called which is returning result. when statusChange value is passed.
someService.updateService(statusChange).then(function(result){
// parse result
});
//XML Response
<UpdateServiceResponse xmlns="*********">
<result>data updated successfully</result>
</UpdateServiceResponse>