Re: cannot find /cfcs/

2014-06-29 Thread Matthew Smith
also tried /cfcs_mapping On Sat, Jun 28, 2014 at 11:13 PM, Matthew Smith chedders...@gmail.com wrote: cfobject component=/cfcs/ name=cfcs / cflock name = #application.applicationname#_item_access type=exclusive timeout=55 cfset variables.temp = request.cfcs

Re: cannot find /cfcs/

2014-06-29 Thread Adam Cameron
The *component* attribute value needs to be the dotted path to an actual CFC, not a directory. So say your CFC is /cfcs.Foo.cfc, the value ought to be cfcs.Foo. Aside from that, can I recommend you *don't* use cfobject if at all possible for this? Just use a variable assignment, and

Re: cannot find /cfcs/

2014-06-29 Thread Matthew Smith
thank you, i will give it a try. On Sun, Jun 29, 2014 at 12:05 AM, Adam Cameron dacc...@gmail.com wrote: The *component* attribute value needs to be the dotted path to an actual CFC, not a directory. So say your CFC is /cfcs.Foo.cfc, the value ought to be cfcs.Foo. Aside from that, can