Re: Syntax checking generated code: CF9

2010-08-10 Thread Dominic Watson
Perfect, thanks Den. Yeah, looking at this as a part of an automated deployment whole. Had googled for quite a while, just missing the keywords ;) Thanks again, Dominic On 9 August 2010 18:55, denstar valliants...@gmail.com wrote: Sorry, should have included the link the first time:

Re: Forums using CFCs?

2010-08-10 Thread Jake Pilgrim
Lol... Sorry, I didn't mean to start a debate on whether-or-not Galleon is CFC based (I never stated it wasn't). Yes, it is CFC-based (or cfD, or CFQ, with moo.cfc integration :) ) - what I was really looking for is options. It seems that your two choices for a coldfusion forum are CFMBB and

Re: Forums using CFCs?

2010-08-10 Thread Raymond Camden
Did you search RIAForge? Found 6 http://www.riaforge.org/index.cfm?event=page.search#forum_catid=1 On Tue, Aug 10, 2010 at 9:17 AM, Jake Pilgrim j...@pilgrimwebshop.com wrote: Lol... Sorry, I didn't mean to start a debate on whether-or-not Galleon is CFC based (I never stated it wasn't).

Re: CF9 Tag info for CFEclipse

2010-08-10 Thread Pete Freitag
On Mon, Aug 9, 2010 at 2:58 PM, Eric Roberts ow...@threeravensconsulting.com wrote: Anyone know if there is a update for the tag hints for CFEclipse for CF9 and if so where I can get it? I getting attributes marked as errors becuae they apparently didn't exist in 7 or 8. Hi Eric,

Re: Forums using CFCs?

2010-08-10 Thread Raymond Camden
As a quick FYI, RIAForge is having issues today. I've had to restart it a few times and won't have time to really dig until tonight. So, if it is down, say a few quick prayers and reload in 10 minutes. On Tue, Aug 10, 2010 at 9:27 AM, Raymond Camden rcam...@gmail.com wrote: Did you search

Web service operation... with parameters...cannot be found. error

2010-08-10 Thread Ray Meade
I keep getting this error no matter what I try (and I've been at it for 2 days now): Web service operation NEWJOB with parameters {JOBMINCOMPENSATION={250},JOBTYPE={1},JOBVERIFICATION={0},USERNAME={**},JOBCONTACTPHONE={123-456-7890},JOBCOMPANYNAME={Spencer

re: Web service operation... with parameters...cannot be found. error

2010-08-10 Thread Paul Day
Hi Ray, Are you passing the parameters in the same order as they are defined in the CFC? I seem to remember having problems when passing invoke params in the wrong order in the past. Looking at the error output, they seem to be in the wrong order. Thanks, Paul Paul Day Principal /

RE: Web service operation... with parameters...cannot be found. error

2010-08-10 Thread Josh Nathanson
Web services tend to get cached -- I notice you said you get the same error even removing all the code so it sounds like that is what's happening. There are a couple of ways you can clear them: 1) In the CF administrator (if you have access) there is a section where you can see any cached

Re: Web service operation... with parameters...cannot be found. error

2010-08-10 Thread Ray Meade
Yes, they're in the same order in the web service cfc as they are in the cfinvoke tag. I don't know where the error message is getting that order from...it's weird. Hi Ray, Are you passing the parameters in the same order as they are defined in the CFC? I seem to remember having

getting started with application.cfc

2010-08-10 Thread Matthew P. Smith
I am (finally) transitioning to Application.cfc, as we have just upgraded to CF 9. In my old Application.cfm, I am serving several sites/apps with conditional code, something like this: cfset currentSiteDomain = cgi.server_name cfif findNoCase(domain1,currentSiteDomain,1) cfset

Re: Web service operation... with parameters...cannot be found. error

2010-08-10 Thread Ray Meade
Hi Josh, I tried both of those methods. In the CF Administrator, the web service isn't even listed (I thought the wsdl file gets created the first time you try to access it), and the cfinvoke tag doesn't have a refreshWSDL= attribute. (I tried adding it manually and it just hangs while

Re: Web service operation... with parameters...cannot be found. error

2010-08-10 Thread Paul Day
Ray, Have you added the prerequisite code to your onRequestStart() method in your Application.cfc? cfif right(arguments.targetPage,4) is .cfc cfset structDelete(variables,onRequest) / cfset structDelete(this,onRequest) / /cfif Paul Day Principal / Developer 410.241.8465

Re: Web service operation... with parameters...cannot be found. error

2010-08-10 Thread Ray Meade
SCREEECH...what was that? Nope, I didn't know about the prerequisite code. Thanks Paul, I'll give that a shot and let you know how it goes. Ray, Have you added the prerequisite code to your onRequestStart() method in your Application.cfc? cfif right(arguments.targetPage,4) is .cfc

Re: Web service operation... with parameters...cannot be found. error

2010-08-10 Thread Ray Meade
Paul, they're using an Application.cfm file, not Application.cfc so there is no onRequestStart() method. Is there an alternate procedure I can use for an Application.cfm file? Ray, Have you added the prerequisite code to your onRequestStart() method in your Application.cfc? cfif

output of my 404.cfm

2010-08-10 Thread Matthew P. Smith
I am trying to serve pages using both onMissingTemplate and a custom 404 page. This works: domain.com/not-there/index.cfm It seems to properly be using the onMissingTemplate method. This does not: domain.com/not-there/ From the debug, I can see that: CGI.SCRIPT_NAME=/404.cfm However, in the

Re: Web service operation... with parameters...cannot be found. error

2010-08-10 Thread Paul Day
Ray, Try placing a blank Application.cfm file in the directory containing the CFCs for the Web Service. Doing that will override any potential output that is being pumped out by your base Application.cfm and breaking the wsdl. Paul Day Principal / Developer 410.241.8465

RE: output of my 404.cfm

2010-08-10 Thread Andy Matthews
Is there by chance an index.html file in that directory? Or any other file that IIS or Apache might be looking for first? andy -Original Message- From: Matthew P. Smith [mailto:m...@smithwebdesign.net] Sent: Tuesday, August 10, 2010 12:39 PM To: cf-talk Subject: output of my 404.cfm

Re: Web service operation... with parameters...cannot be found. error

2010-08-10 Thread Ray Meade
Sorry Paul, that didn't work either. (are you getting aggravated yet?) This is really driving me nuts. It works fine when it's not a web service, but as soon as I set the access tag to remote, it stops working yet the wsdl file is accessible...go figure. Ray, Try placing a blank

Re: Syntax checking generated code: CF9

2010-08-10 Thread denstar
Anytime! That's a worthy goal. I got a good ~ three thousand words of documentation for my automated build tool cfdistro done over the weekend. Sadly, I was stupid, and then, Something Bad happened, so it's gone with the wind. Someday... =) :Den -- We can never be sure that the opinion we

Re: Web service operation... with parameters...cannot be found. error

2010-08-10 Thread Paul Day
Ray, Not at all! I've put the code on my server and reproduce the error. I'm going to work on it over the next little bit to see if I can get into the exact problem for you. Thanks, Paul Paul Day Principal / Developer 410.241.8465 p...@nucomsolutions.com http://www.nucomsolutions.com/

Re: Web service operation... with parameters...cannot be found. error

2010-08-10 Thread Paul Day
Ray, Your JOBCODE is specified as numeric in your CFC, but you are passing in a string. cfinvokeargument name=JOBCODE value=SP101 Thanks, Paul Paul Day Principal / Developer 410.241.8465 p...@nucomsolutions.com http://www.nucomsolutions.com/

Re: output of my 404.cfm

2010-08-10 Thread Matthew P. Smith
No, the directory does not exist at all. Thank you. On Tue, Aug 10, 2010 at 12:44 PM, Andy Matthews li...@commadelimited.comwrote: Is there by chance an index.html file in that directory? Or any other file that IIS or Apache might be looking for first? andy -Original Message-

Adobe Security update: Hotfix available for ColdFusion

2010-08-10 Thread Michael Dinowitz
They don't say what the vulnerability is but... http://www.adobe.com/support/security/bulletins/apsb10-18.html -- Michael Dinowitz Lead Author - Adobe Coldfusion Anthology http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion

Re: Forums using CFCs?

2010-08-10 Thread Jake Pilgrim
Great list, thanks Raymond! As a quick FYI, RIAForge is having issues today. I've had to restart it a few times and won't have time to really dig until tonight. So, if it is down, say a few quick prayers and reload in 10 minutes.

RE: Adobe Security update: Hotfix available for ColdFusion

2010-08-10 Thread Ben Forta
I believe it addresses a potential vulnerability in ColdFusion Administrator. --- Ben -Original Message- From: Michael Dinowitz [mailto:mdino...@houseoffusion.com] Sent: Tuesday, August 10, 2010 4:37 PM To: cf-talk Subject: Adobe Security update: Hotfix available for ColdFusion They

Re: Adobe Security update: Hotfix available for ColdFusion

2010-08-10 Thread Michael Dinowitz
Yep. I didn't know that because the page that was sent out was terribly unhelpful. The actual page with the download is here: http://kb2.adobe.com/cps/857/cpsid_85766.html The link was in the text in the solution area. Ben, you might want to tell whoever writes the alerts at Adobe to make the

Anyone experienced with urlrewrite by Tuckey - question about rule that fails

2010-08-10 Thread Gerald Weir
Hello, I'm having a problem with a rule. We just updated the framework of our ColdFusion website. We've been using urlrewrite with CF and IIS for several years now. I wrote a new reduced set of rules that uses a broader regEx to allow url's that have multiple parameters to be properly