"is XML" не отработало.

Код AS3:
var inputStr:String = "123";
if (inputStr is XML) trace(inputStr, "is XML");
else trace(inputStr, "is not XML");
inputStr = "<node>123</node>";
if (inputStr is XML) trace(inputStr, "is XML");
else trace(inputStr, "is not XML");
трейс:

Код:
123 is not XML
<node>123</node> is not XML
опоздал
чего делать?