Q
|
When I use BrowserHawk4J with CFMX I receive the error "Variable EBI is undefined" for a few seconds when performing extended property tests, then the error goes away and the page loads fine. What is causing this?
|
A
|
Unfortunately there was some older documentation and an article published showing use of BH4J with CFMX which has a problem which results in this condition.
To resolve the issue, find the line of code that reads:
cfif ebi IS ""
and change that to:
cfif NOT IsDefined("ebi")
|