Re: Adobe no longer part of the OpenCFML committee

2010-07-24 Thread Rob Parkhill
No, I wouldn't say that. It just means that there is no longer a committee, whose goal is to have a standard set of tags available in all three engines. It means that if Adobe pushes a new tag into CFX, there is no one saying that that tag should then become a part of the common language base wi

Re: Adobe no longer part of the OpenCFML committee

2010-07-24 Thread Arsalan Tariq Keen
Does this mean CFML is or will be dying ? -- From: "Mark Drew" Sent: Friday, July 23, 2010 9:19 PM To: "cf-talk" Subject: Re: Adobe no longer part of the OpenCFML committee > > Well, is Ben not part of it too? > > Just saying > > MD > On 23 J

Re: Form cleaner utility

2010-07-24 Thread Andrew Clarke
I originally wrote that code for a client who had a lot of non-parameterized SQL in a legacy app and didn't want to pay me to rewrite it all. - Andrew. On 2010-07-24, at 12:35, Dave Watts wrote: > Why not just use CFQUERYPARAM bound parameters in your SQL? > > Dave Watts, CTO, Fig Leaf Softwa

Re: Form cleaner utility

2010-07-24 Thread Dave Watts
> Here's something I've written. It scans incoming form variables for SQL > Injection code. It has a couple shortcomings, but it's a start, anyway. > > One shortcoming is that if you legitimately have something like "John has run > to the store; selecting the pigs was most difficult", that will

Re: Oracle 11g Stored Proccedure won't talk to our ColdFusion code.

2010-07-24 Thread Ian Skinner
On 7/23/2010 5:30 PM, James Holmes wrote: > Which version of CF are you on? Oracle 11G isn't supported until CF9. > A) We are on CF 9.0 (not 9.0.1 yet). B) That's rather interesting as we had CF 8 talking to Oracle 11g for two years before we upgraded to CF 9 last month. Albeit, not using

Re: Oracle 11g Stored Proccedure won't talk to our ColdFusion code.

2010-07-24 Thread James Holmes
http://www.adobe.com/products/coldfusion/coldfusion8/systemreqs/ "Oracle 8i R2-R3 8.1.7 Oracle 9i R1-R2 including RAC support Oracle 10g R1-R2 including RAC support" -- WSS4CF - WS-Security framework for CF http://wss4cf.riaforge.org/ On 24 July 2010 19:29, Matthew Williams wrote: > >  Is th

Re: Oracle 11g Stored Proccedure won't talk to our ColdFusion code.

2010-07-24 Thread Matthew Williams
Is this acknowledged anywhere on Adobe's site? I've not seen an issue with the vast majority of the shared apps we host. Matthew Williams Geodesic GraFX www.geodesicgrafx.com/blog On 7/23/2010 8:30 PM, James Holmes wrote: > Which version of CF are you on? Oracle 11G isn't supported until CF

Re: Form cleaner utility

2010-07-24 Thread Andrew Clarke
Here's something I've written. It scans incoming form variables for SQL Injection code. It has a couple shortcomings, but it's a start, anyway. One shortcoming is that if you legitimately have something like "John has run to the store; selecting the pigs was most difficult", that will trigger

Form cleaner utility

2010-07-24 Thread Will Tomlinson
I'm building a form cleaner utility method that might help thwart some XSS, clean my fields up, etc. Know I can't stop it all. Didnt see anything on riaforge exactly like what I'm lookin for here. Here's what I've got so far. Anyone have anything to add? ~~