Re: Duplicate attribute error

2011-07-14 Thread Mary Jo Sminkey
> Actually, I finally tracked it down. It was due to a CFHTTP tag inside > the CFC that had two method attributes on it. I should add, in case anyone else runs into this, that the error CF reported was for the cfinvoke line. But the actual problem was down inside the component. MJS

Re: Duplicate attribute error

2011-07-14 Thread Mary Jo Sminkey
>Do you have an attribute called method in the CFC ? >method is a reserved word as it is used to specify the Method in the CFC you >want to call, so you cannot have your own attribute called method as well. > Actually, I finally tracked it down. It was due to a CFHTTP tag inside the CFC that had

Re: Duplicate attribute error

2011-07-14 Thread Russ Michaels
Do you have an attribute called method in the CFC ? method is a reserved word as it is used to specify the Method in the CFC you want to call, so you cannot have your own attribute called method as well. Russ On Fri, Jul 15, 2011 at 1:17 AM, Mary Jo Sminkey wrote: > > > I'm invoking a component

Re: Duplicate attribute error

2011-07-14 Thread Mary Jo Sminkey
> I'm invoking a component method to do an update when a form is posted > (CFMX7). However, when I try to invoke the method I get the error: > > A duplicate attribute "METHOD" has been encountered. Attributes with > the same name cannot be provided more than once. I know this is a really old

Duplicate attribute error

2007-11-29 Thread Joel Slack
I'm invoking a component method to do an update when a form is posted (CFMX7). However, when I try to invoke the method I get the error: A duplicate attribute "METHOD" has been encountered. Attributes with the same name cannot be provided more than once. The problem is that I'm -not- declaring