WBP-151

XPath expression: You might be using the false() XPath function to test for node existence. To test for node existence, compare false() with the results of using the boolean()function on the node.

これは、XPath 検証メッセージです。

説明

解決策

XPath 式に評価されるノードが false 関数の結果に設定されているか、その結果と比較されています。false 関数は値 false を返します。

ノードが存在するかどうかをテストするには、boolean 関数を使用します。次のルート条件は、stringVar 変数のノードが存在しないかどうかをテストします。

boolean(/process_data/@stringVar) = false()

false 関数を正しく使用していることを確認します(false を参照)。