Flex application executes remote ColdFusion metod through RemoteObject. The remote method argument is VO. One of the numeric fields of VO is NaN. How to recognize NaN on CF side?
I've tried following:
this returns "true":
isDefined("vo.numeric_field_NaN")
isNumeric(vo.numeric_field_NaN)
this returns "false":
isNull(vo.numeric_field_NaN)
so, I've used following expression which returns "true" wher vo.numeric_field_NaN is NaN:
((vo.numeric_field_NaN GT 0) AND (vo.numeric_field_NaN LT 0))
Please advice if there is a way to determine NaN more patently.
PS:
I've tried to write this value to file but there was written "?" and I didn't succeed to find encoding to show the symbol correctly. I've tried and sniffer shows request to "%FD".