Picky, picky... My code *almost* would have worked :)
Yeah, FaultEvent is correct.
Shan
Josh Tynjala wrote:
I'm pretty sure it's FaultEvent.
-Josh
Shannon Hicks wrote:
When you define cfService, you should specify the ErrorEvent handler,
just like you would specify the ResultEvent handler.
Shan
elad_nyc wrote:
I am building an application and trying to validate user name and
password however when CF doesn't find results it creating an error
message "Unable to invoke CFC".
I was trying to use the "try" & "catch" to a void a bug in the script
but no luck. any idea?
try {
cfService.getQuery(UserName,Password);
}
catch (error:Error) {
trace("<< Error >> " + error);
}