I have the following problem. I want to execute a policy that checks for existance of a node and after that it should check if the value is greater than 0.
So lets say we have "xmlDoc" and I want to check if the node "test" exists and if the value of "test" is greater than 0.
<xmlDoc>
<test>5</test>
</xmlDoc>
When the node exists, there is no problem. When the node is missing though, all hell breaks lose.. It is obvious why he crashes. He can't find the node "test" so he can't check its value.
My question: is it possible in the BizTalk BRE to check on existance and on value of a node without it crashes?