


Hi All,
i am getting the below xml inside my ctx of rt event
<ctx>
<userMessage>
<userData>
<abc.alpha.new.system.User>
<userType>Fixed</userType>
<userBackground>Regular</ userBackground>
<productBookingDate>2015-05-8</productBookingDate >
when I am using ---> rtEvent.ctx.userMessage.userData.abc.alpha.new.system.User.userBackground ----- i am getting empty value
even if I use rtEvent.ctx.userMessage.userData.("abc.alpha.new.system.User").userBackground i still get empty value
Kindly suggest how to parse this xml to retrieve the value of 'userBackground'
Please
Views
Replies
Total Likes
Can you try this ? :
var doc = DOMDocument.fromXMLString( '<?xml version="1.0" encoding="ISO-8859-1"?>' + rtEvent.ctx.toXMLString()); var userBackground = doc.root.getElements('userMessage')[0] .getElements('userData')[0] .getElements('abc.alpha.new.system.User')[0] .getElements('userBackground')[0].textContent;
Cedric
Hi @bhaskarc1289447,
Was the given solution helpful to resolve your query or do you still need more help here? Do let us know.
Thanks!
Views
Replies
Total Likes