Re: Connecting to CFC's in the same directory in CF9.

2010-07-29 Thread John Pullam
For the benefit of anyone who encounters this posting while scanning the list, I was just informed that Adobe have verified the behaviour I reported and are targeting a hotfix for it. Nice to know that I wasn't misunderstanding something.

Re: Connecting to CFC's in the same directory in CF9.

2010-07-19 Thread John Pullam
I have only one special mapping for a directory that has some externally provided cfc's called /cfc but to reference those ones, the code prefaces the calls with cfc. In the case I am describing above, I'm just doing the simple thing of looking for a cfc in the same directory as the

Re: Connecting to CFC's in the same directory in CF9.

2010-07-18 Thread John Pullam
I think that I have isolated it pretty well now ... It can find the CFC if both the invoking web page and the CFC are in the document root (c:\inetpub\wwwroot\) and it can find it if I create a subdirectory from there, e.g., c:\inetpub\wwwroot\real\ and move them both to it. But if I create

RE: Connecting to CFC's in the same directory in CF9.

2010-07-18 Thread Andrew Scott
That is a limitation when it comes to Virtual Directories, it won't work like that. Regards, Andrew Scott -Original Message- From: John Pullam [mailto:jpul...@mcleansystems.com] Sent: Sunday, 18 July 2010 10:26 PM To: cf-talk Subject: Re: Connecting to CFC's in the same directory in

Re: Connecting to CFC's in the same directory in CF9.

2010-07-18 Thread John Pullam
That surprises me. Virtual directories work fine in CF8 and I have been using them like that on my development desktop for several years without a problem. Can you please provide me more information about your statement? Specifically: - what is the limitation? - is it an IIS issue or CF? - did

Re: Connecting to CFC's in the same directory in CF9.

2010-07-18 Thread Brad Wood
What ColdFusion mappings do you have set up on the CF8 and CF9 boxes? That could explain a difference in behavior. If I can't use virtual directories, what is the approach that others use for testing on a desktop with multiple CF websites? Install Apache, set up multiple sites, and use

Re: Connecting to CFC's in the same directory in CF9.

2010-07-17 Thread Maureen
On Fri, Jul 16, 2010 at 5:09 PM, John Pullam jpul...@mcleansystems.com wrote: So I may have a CF9 bug here ... it can't find the CFC even though it is in the same directory. Any other ideas? Are the mappings different on the server and the localhost? Operating systems different? Case of

Connecting to CFC's in the same directory in CF9.

2010-07-16 Thread John Pullam
This is a variation of a question I posted a few days ago that didn't get resolved, so please bear with me. It seems simple but I am not getting anywhere with it. I have a test page (TestCFC.cfm) that binds to a CFC (TestCFC2.cfm) that is in the same directory. This used to work on CF8 but it

RE: Connecting to CFC's in the same directory in CF9.

2010-07-16 Thread brad
In your E-mail you said the component file name was TestCFC2.cfm . Shouldn't that be TestCFC2.cfc? ~Brad Original Message Subject: Connecting to CFC's in the same directory in CF9. From: John Pullam jpul...@mcleansystems.com Date: Fri, July 16, 2010 4:42 pm To: cf-talk

Re: Connecting to CFC's in the same directory in CF9.

2010-07-16 Thread James Holmes
Did you apply the latest update for CF9? That fixes a bug for cfajaxproxy related to this, so it may solve this problem too. -- WSS4CF - WS-Security framework for CF http://wss4cf.riaforge.org/ On 17 July 2010 05:42, John Pullam jpul...@mcleansystems.com wrote: This is a variation of a

Re: Connecting to CFC's in the same directory in CF9.

2010-07-16 Thread John Pullam
OK, several replies ... 1 - Yes, I made that stupid error. After I renamed it to CFC, it worked correctly on the live CF9 system. 2 - Even with that fixed, it fails on my desktop (that was the original problem and I was trying to narrow it down). So when I have the calling page on localhost