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

How to run C# code using mono without Xamarin in Android? -

c# - SharpSsh Command Execution -

python - Specify path of savefig with pylab or matplotlib -