Re: [CFCDev] Separating cohesive applications

2004-11-12 Thread Ken Ingle
I agree with Roland, here at our office we have migrated to Mach-ii, and one of the first things we did for all applications was to create a controller cfc that extended mach-ii and intern called the actual working cfc's to do the work (which do not extend mach-ii). The thought here is that it

[CFCDev] Autoreply: [PERIODIC cfcdev DIGEST POSTING]

2004-11-12 Thread kevin
I am going to be out of the country from November 12 - December 12th. I will be checking my email frequently. If you have an emergency with you domain account, or if your site is experiencing problems, please contact our Network Administrator: Michael Stowe [EMAIL PROTECTED] 509-232-0704 /

RE: [CFCDev] Autoreply: [PERIODIC cfcdev DIGEST POSTING]

2004-11-12 Thread Micha Schopman
Appreciate ... Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380

RE: [CFCDev] refresh cfc

2004-11-12 Thread Schreck, Thomas \(PPC\)
Thanks for the insight. It was helpful. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nando Sent: Wednesday, November 10, 2004 2:37 PM To: [EMAIL PROTECTED] Subject: RE: [CFCDev] refresh cfc Ah, ok. If you're using getMetaData() just for

Re: [CFCDev] pattern book

2004-11-12 Thread Thomas Chiverton
On Thursday 11 Nov 2004 21:26 pm, Joe Ferraro wrote: reference. Unfortunately there aren't any ColdFusion patterns books that I know of, but I have a feeling there will be in the future. Patterns are AFAIK there is one being written right now (check the archives) with some great input from top

[CFCDev] CFC Error - Name Can't be empty

2004-11-12 Thread Brent Nicholas
Ok, so I've run into this from time to time and I can never seem to really figure it out. I'm not passing WorkFlowCode param in and I shouldn't need to but it errors out. Something obvious I'm overlooking? It throws up on: cfif ARGUMENTS.WorkFlowCode neq Code: !--- GetAuditWorkflow ---

RE: [CFCDev] pattern book

2004-11-12 Thread Joe Ferraro
That's very exciting. I'm a huge ColdFusion enthusiast and I love components and their flexibility. I think the direction that CF is moving with MachII and the rising awareness in the community of patterns is fantastic. I will definitely check into those things. -Original Message- From:

RE: [CFCDev] refresh cfc

2004-11-12 Thread Nando
Oh, good. It's hard to tell sometimes if i'm being helpful or completely irrelevant. :) I'm also using Spike's CFC browser these days a lot. It's very good, especially when your model starts growing to include many cfc's and you find yourself digging around in them to remember what methods you've

RE: [CFCDev] Separating cohesive applications

2004-11-12 Thread John D Farrar
Honest question here. I agree with the virtues of separation, but why do people think this (let's use the Java world for an example) concept seems to be mainly something of interest to Enterprise shops. Why don't little guys do things this way? Is it just they don't see the light... or is it more

[CFCDev] secure a webservice

2004-11-12 Thread Schreck, Thomas \(PPC\)
Whats the best way to secure a webservice? I have interactions between 2 different CF Servers where code on CF Server A is calling a webservice on CF Server B. I need to control who consumes the webservice on CF Server B. My initial thought is to pass a control key from code on CF Server A

Re: [CFCDev] Separating cohesive applications

2004-11-12 Thread Phil Cruz
Ken, Do you mean your controller cfc literally extends the framework, i.e via the EXTENDS attribute? Or is it just another layer (not related to Mach-II) that sits between Mach-II and you business layer. I have implemented a service layer in some apps. -Phil On Fri, 12 Nov 2004 07:53:01 -0500,

Re: [CFCDev] refresh cfc

2004-11-12 Thread Xavi
When i click to a machII listener i get a HTTP 500 error. On Fri, 12 Nov 2004 16:52:43 +0100, Nando [EMAIL PROTECTED] wrote: Oh, good. It's hard to tell sometimes if i'm being helpful or completely irrelevant. :) I'm also using Spike's CFC browser these days a lot. It's very good,

Re: [CFCDev] CFC Error - Name Can't be empty

2004-11-12 Thread Dave Carabetta
On Fri, 12 Nov 2004 10:48:47 -0500, Brent Nicholas [EMAIL PROTECTED] wrote: Ok, so I've run into this from time to time and I can never seem to really figure it out. I'm not passing WorkFlowCode param in and I shouldn't need to but it errors out. Something obvious I'm overlooking? It

RE: [CFCDev] CFC Error - Name Can't be empty

2004-11-12 Thread Gerald Harper
Try the following in your CFIF block: cfif isDefined(ARGUMENTS.WorkFlowCode) AND ARGUMENTS.WorkFlowCode neq AND WORKFLOW_CODE = '#ARGUMENTS.WorkFlowCode#' /cfif I think that if an optional ARGUMENTS parameter isn't passed into the CFC, it's not defined within it when it's invoked.

RE: [CFCDev] refresh cfc

2004-11-12 Thread Schreck, Thomas \(PPC\)
Nando- Can I contact you off list? What's your email address? Thanks - Tom Schreck 817-252-4900 [EMAIL PROTECTED] I have not failed. I've found 10,000 ways that won't work. - Thomas Edison -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nando

RE: [CFCDev] Separating cohesive applications

2004-11-12 Thread Joe Ferraro
I understand where you are coming from with the benefits of procedural code, and that is the reason I'm interested in separation. I don't want eat up valuable time with the developers here learning mach-ii when they already have a good amount of experience with fusebox, but in the instance of the

RE: [CFCDev] CFC Error - Name Can't be empty

2004-11-12 Thread online
Just to butt in: cfargument name=workflowcode required=no default= cfif len(arguments.workflowcode) AND WORKFLOW_CODE = '#ARGUMENTS.WorkFlowCode#' /cfif my 2p -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Gerald Harper Sent: 12 November 2004

Re: [CFCDev] secure a webservice

2004-11-12 Thread Ben Curtis
Whats the best way to secure a webservice? I have interactions between 2 different CF Servers where code on CF Server A is calling a webservice on CF Server B. I need to control who consumes the webservice on CF Server B. My initial thought is to pass a control key from code on CF Server A to

RE: [CFCDev] CFC Error - Name Can't be empty

2004-11-12 Thread Adam Cameron
Just to clarify something here. I'd only just got out of bed (pre coffee!) when I replied before, and what I described isn't *quite* what happens. CFC functions reside in the THIS scope; unscoped variables get put in the VARIABLES scope. So it doesn't actually overwrite the function, and