XML operation in ColdFusion -


i have problem xml, in case receive xml data. want delete it, because crashes result.

 <a:exceptioninformation>     <a:exceptioninformation>         <a:description>xxx</a:description>          <a:exceptiontype>yyy</a:exceptiontype>     </a:exceptioninformation> </a:exceptioninformation>  <a:exceptioninformation>     <a:exceptioninformation>         <a:description>aaa</a:description>          <a:exceptiontype>yyy</a:exceptiontype>     </a:exceptioninformation> </a:exceptioninformation> 

i want find node exceptiontype == yyy , delete all:

 <a:exceptioninformation>     <a:exceptioninformation>         <a:description>aaa</a:description>          <a:exceptiontype>yyy</a:exceptiontype>     </a:exceptioninformation>  </a:exceptioninformation> 


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -