Biztalk mapper: how to detect node that are not in xml

I would like to know how to detect that node is missing at the beginning. I tried hundreds of things with logical functoids without success.

The third case of this page is what I'm looking for: http://danshultz.blogspot.com/2007/08/logical-existence-isnil-empty-string.html

Thanks in advance.

+3
source share
3 answers

The only way I could do this on the map is with XSLT in a functional script.

+1
source

You can use the functional functional of logical existence. If the item is not in the original message, this functoid will return false.

, (, ), functoid true, Logical Not Value Mapping functoid , , .

+4

, .

node, node .

, u .

+1

Source: https://habr.com/ru/post/1743493/


All Articles