CFC method argument integer not seen as integer
I am stumped. I am calling a method in a CFC that accepts two arguments. The first is of type integer and the second is a string.
Here is the snippet of code where I instantiate the CFC and then later call the method in question.
<cfobject component="feedback" name="UserFeedback">
...
<cfset void = UserFeedback.send_feedback_rec(33312, 'foo@bar.com')>
The error I get is:
"The URLID argument passed to the send_feedback_rec function is not of type integer. If the component name is specified as a type of this argument, its possible that a definition file for the component cannot be found or is not accessible."
Why does an explicit integer value not get recognized as type integer in the method??
