cannot find /cfcs/

2014-06-29 Thread Matthew Smith

cfobject component=/cfcs/ name=cfcs /
cflock
name = #application.applicationname#_item_access
 type=exclusive
timeout=55
  cfset variables.temp = request.cfcs  .f_unlock_items_15_minutes() /
/cflock

I have a mapping set up here:
/cfcs_mappingd:\inetpub\redhotkitties\cfcs



But still cannot get to it.  Any help?

The web site you are accessing has experienced an unexpected error.
Please contact the website administrator.

The following information is meant for the website developer for debugging
purposes. Error Occurred While Processing Request Could not find the
ColdFusion component or interface /cfcs/. Ensure that the name is correct
and that the component or interface exists.  The error occurred
in*D:/Inetpub/redhotkitties/site_theartoflovingcatsanddogs_com/fbx_settings.cfm:
line 9*
*Called 
from*D:/Inetpub/redhotkitties/site_theartoflovingcatsanddogs_com/fbx_fusebox30_CF50.cfm:
line 191
*Called 
from*D:/Inetpub/redhotkitties/site_theartoflovingcatsanddogs_com/fbx_fusebox30_CF50.cfm:
line 33
*Called 
from*D:/Inetpub/redhotkitties/site_theartoflovingcatsanddogs_com/fbx_fusebox30_CF50.cfm:
line 1
*Called from* 
D:/Inetpub/redhotkitties/site_theartoflovingcatsanddogs_com/index.cfm:
line 9
*Called from* 
D:/Inetpub/redhotkitties/site_theartoflovingcatsanddogs_com/Application.cfc:
line 62

7 : cfsilent
8 : cfset request.cfcs = site_theartoflovingcatsanddogs_com.cfcs*9
: cfobject component=/cfcs/ name=cfcs /*
10 : cflock
11 :name = #application.applicationname#_item_access


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358770
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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  .f_unlock_items_15_minutes() /
 /cflock

 I have a mapping set up here:
 /cfcs_mappingd:\inetpub\redhotkitties\cfcs



 But still cannot get to it.  Any help?

 The web site you are accessing has experienced an unexpected error.
 Please contact the website administrator.

 The following information is meant for the website developer for debugging
 purposes. Error Occurred While Processing Request Could not find the
 ColdFusion component or interface /cfcs/. Ensure that the name is correct
 and that the component or interface exists.  The error occurred 
 in*D:/Inetpub/redhotkitties/site_theartoflovingcatsanddogs_com/fbx_settings.cfm:
 line 9*
 *Called 
 from*D:/Inetpub/redhotkitties/site_theartoflovingcatsanddogs_com/fbx_fusebox30_CF50.cfm:
 line 191
 *Called 
 from*D:/Inetpub/redhotkitties/site_theartoflovingcatsanddogs_com/fbx_fusebox30_CF50.cfm:
 line 33
 *Called 
 from*D:/Inetpub/redhotkitties/site_theartoflovingcatsanddogs_com/fbx_fusebox30_CF50.cfm:
 line 1
 *Called from* 
 D:/Inetpub/redhotkitties/site_theartoflovingcatsanddogs_com/index.cfm:
 line 9
 *Called from* 
 D:/Inetpub/redhotkitties/site_theartoflovingcatsanddogs_com/Application.cfc:
 line 62

 7 : cfsilent
 8 : cfset request.cfcs = site_theartoflovingcatsanddogs_com.cfcs*9 : 
 cfobject component=/cfcs/ name=cfcs /*
 10 : cflock
 11 :  name = #application.applicationname#_item_access




-- 
Regards,
chedder is bedder


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358771
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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 createObject(): it
makes for far more natural code:

cfset myObj = createObject(cfcs.Foo)

-- 
Adam


On 29 June 2014 07:59, Matthew Smith chedders...@gmail.com wrote:


 also tried /cfcs_mapping


 On Sat, Jun 28, 2014 at 11:13 PM, Matthew Smith chedders...@gmail.com
 wrote:

  cfobject component=/cfcs/ name=cfcs /


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358772
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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 I recommend you *don't* use cfobject if at all
 possible for this? Just use a variable assignment, and createObject(): it
 makes for far more natural code:

 cfset myObj = createObject(cfcs.Foo)

 --
 Adam


 On 29 June 2014 07:59, Matthew Smith chedders...@gmail.com wrote:

 
  also tried /cfcs_mapping
 
 
  On Sat, Jun 28, 2014 at 11:13 PM, Matthew Smith chedders...@gmail.com
  wrote:
 
   cfobject component=/cfcs/ name=cfcs /


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358773
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm