RE: Single Quotes in Comment Fields Problem

2004-02-24 Thread Hugo Ahlenius
Les, RTFM on cfqueryparam, you need to supply the 'value' and 'cfsqltype' as attributes to cfqueryparam: http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-b20.htm#wp11 02474 - Hugo AhleniusE-Mail: [EMAIL PROTECTED] Project

RE: Question regarding CFMX 6.2

2004-02-24 Thread Ian Vaughan
Ben Any update on connecting to IBM Univers database from Macromedia, has this been confirmed as a bug ?or have they come up with any solution why it does not work with MX but does with 4.5 ? If it is a bug it would be good if it could be resolved! -Original Message- From: Ben

RE: Dreamweaver - split document

2004-02-24 Thread Robertson-Ravo, Neil (RX)
It doesnt exists in DWMX2004 AFAIK. N _ From: Sparrow-Hood, Walter [mailto:[EMAIL PROTECTED] Sent: 23 February 2004 22:47 To: CF-Talk Subject: Dreamweaver - split document Does anybody know how to get DW to split a document the way HomeSite does? I really miss that feature. Walt

Re: SOT: cfeclipse version 1.1.1 released - if you care

2004-02-24 Thread Thomas Chiverton
Of course we care ! happy cfcoding It is now :-) Great job, once again. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business Park Wookey Hole Road, WELLS. BA5 1AF Tel: +44 (0)1749 834900 Fax: +44 (0)1749 834901

Re: SOT: cfeclipse version 1.1.1 released - if you care

2004-02-24 Thread Thomas Chiverton
On Tuesday 24 Feb 2004 09:34 am, Thomas Chiverton wrote: Great job, once again. Except it appears to be missing some files in /icons/ - like the title bar and menu icons. I copied the /icons/ dir from 1.1.0 into the /icons/ dir of 1.1.1 and that has fixed it. -- Tom Chiverton Advanced

Re: Cold Fusion and Oracle Stored Procedures

2004-02-24 Thread Thomas Chiverton
On Monday 23 Feb 2004 23:37 pm, Richard Crawford wrote: more disturbing indications that Oracle Stored Procedures do not return result sets. I am investigating this today / yesterday. Using cfprocresult works, with Oracle 9i and CFMX6.1 under weblogic, using CFMX 'oracle' datasources. Some

RE: Dreamweaver - split document

2004-02-24 Thread Kola Oyedeji
Me too! Thecloset you can get is to hit F11 or F10 (one of those 2) for the code inspector. Kola -Original Message- From: Sparrow-Hood, Walter [mailto:[EMAIL PROTECTED] Sent: 23 February 2004 22:47 To: CF-Talk Subject: Dreamweaver - split document Does anybody know how to get DW

REFind

2004-02-24 Thread Stuart Kidd
Hi guys, I'm trying to make sure that my field has ONLY numeric characters otherwise show an error.I'm using the REFind but it doesn't pick up characters like $ £ etc. cfelseif REFind([[:num:]],form.PropertyDataPrice)cfset MessageAlert = MessageAlert font color='red'Price/font must only be

REFind

2004-02-24 Thread Stuart Kidd
Sorry, that line should have read: cfelseif REFind([[:alpha:]],form.PropertyDataPrice)cfset MessageAlert = MessageAlert font color='red'Price/font must only be numbers baby.br/cfif [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: REFind

2004-02-24 Thread Pascal Peters
REFind([^0-9],form.PropertyDataPrice) If you want to allow other caracters like . and , add them in the class: REFind([^0-9.,],form.PropertyDataPrice) -Original Message- From: Stuart Kidd [mailto:[EMAIL PROTECTED] Sent: dinsdag 24 februari 2004 10:50 To: CF-Talk Subject: REFind

RE: REFind

2004-02-24 Thread Taco Fleur
Don't you have to escape the period? like so \. Taco Fleur Bloghttp://www.tacofleur.com/index/blog/ http://www.tacofleur.com/index/blog/ Methodology http://www.tacofleur.com/index/methodology/ Tell me and I will forget Show me and I will remember Teach me and I will learn -Original

RE: REFind

2004-02-24 Thread Stuart Kidd
Thanks Pascal, that's great! :) -- Original Message -- From: Pascal Peters [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Tue, 24 Feb 2004 11:16:48 +0100 REFind([^0-9],form.PropertyDataPrice) If you want to allow other caracters like . and , add them

RE: REFind

2004-02-24 Thread Pascal Peters
Only if it is not in a character class. -Original Message- From: Taco Fleur [mailto:[EMAIL PROTECTED] Sent: dinsdag 24 februari 2004 11:36 To: CF-Talk Subject: RE: REFind Don't you have to escape the period? like so \. Taco Fleur Bloghttp://www.tacofleur.com/index/blog/

Re: CF lead management app?

2004-02-24 Thread Dwayne Cole
I developed one that I think does what you are looking for.It uses a modified fusebox framework.www.leadsgroup5.com if you contact me off line I will set up a demo account and we can discuss what if anything I can share. Dwayne Cole, MS in MIS, MBA Certified Advanced ColdFusion Developer

CFMX Resource Security

2004-02-24 Thread J M
Hi all, I am having a strange problem on a CFMX server when I enable Resource Security via the CF Administrator. I have a CF based application which replicates a directory structure from one box to another via ftp. When I enable Resource Security on the Originating box but leave all defaults in

Re: CFMX Resource Security

2004-02-24 Thread Jochem van Dieten
J M said: I am having a strange problem on a CFMX server when I enable Resource Security via the CF Administrator. I have a CF based application which replicates a directory structure from one box to another via ftp. When I enable Resource Security on the Originating box but leave all

RE: Question regarding CFMX 6.2

2004-02-24 Thread Ben Forta
No, but I'll check. --- Ben _ From: Ian Vaughan [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 24, 2004 3:55 AM To: CF-Talk Subject: RE: Question regarding CFMX 6.2 Ben Any update on connecting to IBM Univers database from Macromedia, has this been confirmed as a bug ?or have they

Access to the configuration variables

2004-02-24 Thread Eric Chataigné
I need to get access to the server configuration settings from a CFMX script. Is there a possibility to access these values from CFMX like for the CFC with the #server# variable? Thx. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: CFMX Resource Security

2004-02-24 Thread J M
Thanks for the link. The problem is still here, but the error message has changed slightly. I now simply receive the error Connection Refused:connect. Again, all cfftp commands work (with the passive=yes parameter added) except the putfile command. It is that one that is throwing the error.

Re: Cold Fusion and Oracle Stored Procedures

2004-02-24 Thread Thomas Chiverton
On Tuesday 24 Feb 2004 09:46 am, Thomas Chiverton wrote: More later :-) There appears to be an issue with Oracle's JDBC driver and weblogic 7 (fixed in 8 of course) that prevents the use of stored procs that return result sets. I was hoping to use weblogic's jdbc driver, with code likethe

Re: CFMX Resource Security

2004-02-24 Thread Jochem van Dieten
J M said: Thanks for the link. The problem is still here, but the error message has changed slightly.I now simply receive the error Connection Refused:connect. Again, all cfftp commands work (with the passive=yes parameter added) except the putfile command.It is that one that is throwing

CFINSERT on CFMX (newbe question)

2004-02-24 Thread Steven Sharko
I took an old application that seemed to work fine in CF5 but now on CFMX I get errors with all my cfinsert, Why?Is there a quick fix? Do I have to edit all of them one by one? THE SHARK [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

cfquery

2004-02-24 Thread Stuart Kidd
Hi guys, I have this query: CFQUERY NAME=PropertyDetails datasource=020 SELECT PropertyDataID, PropertyAgentID, PropertyDataAgentReference, PropertyDataFlatNumberHouseName, PropertyDataStreetNumber, PropertyDataStreetName, PropertyDataVillageTown, PropertyDataCountyState,

Re: CFINSERT on CFMX (newbe question)

2004-02-24 Thread Charlie Griefer
helps if you paste the exact error message and/or code. in this case, since cfinsert is fairly straightforward, what's the exact error? - Original Message - From: Steven Sharko [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, February 24, 2004 8:13 AM Subject: CFINSERT on

RE: cfquery

2004-02-24 Thread Pascal Peters
Why would an error occur in a perfectly valid query? You can simply have an alternate display if the query is empty: cfifPropertyDetails.recordCount !--- show table --- cfelse !--- alternate display --- /cfif -Original Message- From: Stuart Kidd [mailto:[EMAIL PROTECTED] Sent: dinsdag

RE: CFINSERT on CFMX (newbe question)

2004-02-24 Thread Marlon Moyer
Has anyone else noticed how handy cfinsert would be if you could get the inserted identity back? Marlon -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 24, 2004 9:24 AM To: CF-Talk Subject: Re: CFINSERT on CFMX (newbe question) helps if

RE: cfquery

2004-02-24 Thread Philip Arnold
I have this query: CFQUERY NAME=PropertyDetails datasource=020 SELECT PropertyDataID, PropertyAgentID, PropertyDataAgentReference, PropertyDataFlatNumberHouseName, PropertyDataStreetNumber, PropertyDataStreetName, PropertyDataVillageTown, PropertyDataCountyState,

RE: CFINSERT on CFMX (newbe question)

2004-02-24 Thread Mark W. Breneman
Can you give us a code example?I can think of lots of reasons. Is one of your field names a reserved keyword?Like date? Are your field names named like Address, Address2, Address3?See http://www.macromedia.com/support/coldfusion/ts/documents/cfinsert_hotfi x.htm . Mark W. Breneman -Cold Fusion

RE: CFINSERT on CFMX (newbe question)

2004-02-24 Thread Jochem van Dieten
Marlon Moyer said: Has anyone else noticed how handy cfinsert would be if you could get the inserted identity back? That might be a future possibility once we move to JDBC 3: http://www.macromedia.com/go/wish/ Jochem [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

RE: CFINSERT on CFMX (newbe question)

2004-02-24 Thread Steven Sharko
Error Occurred While Processing Request Error Executing Database Query. [MERANT][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement. The error occurred in D:\websites\clients.cfm: line 34 32 :CFUPDATE datasource=#application.db#

Re: Single Quotes in Comment Fields Problem

2004-02-24 Thread Les Mizzell
Hugo Ahlenius wrote: RTFM on cfqueryparam, you need to supply the 'value' and 'cfsqltype' as attributes to cfqueryparam: I did!I did RTFM! I just didn't understand how to work it back into the evaluate statement I was using to combine the field variable names along with the record id

RE: CFINSERT on CFMX (newbe question)

2004-02-24 Thread Mark W. Breneman
I believe that date is reserved keyword. Try changing that field name. Mark W. Breneman -Cold Fusion Developer -Network Administrator Vivid Media [EMAIL PROTECTED] www.vividmedia.com 608.270.9770 -Original Message- From: Steven Sharko [mailto:[EMAIL PROTECTED] Sent: Tuesday, February

RE: CFINSERT on CFMX (newbe question)

2004-02-24 Thread Philip Arnold
From: Marlon Moyer Has anyone else noticed how handy cfinsert would be if you could get the inserted identity back? Well, if you want to do something like that, don't use CFINSERT - use a regular CFQUERY and you have complete control over what you want to do I've not used CFINSERT or

RE: cfquery

2004-02-24 Thread Stuart Kidd
Thanks Philip and Pascal, I've fixed it up so now I have a cfquery param on url.propertydataid (making sure it's only an integer which is processed) and also checked if the recordcount is gt 0 then display the form otherwise display a message saying that You don't have user rights to edit this

RE: CFINSERT on CFMX (newbe question)

2004-02-24 Thread Philip Arnold
From: Mark W. Breneman I believe that date is reserved keyword. Try changing that field name. Or switch to CFQUERY and put square brackets around the field names [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: cfquery

2004-02-24 Thread Philip Arnold
From: Stuart Kidd When I get some spare time i'm going to go through all my code and put cfqueryparams everywhere.One thing I don't understand is though, if i put a cfqueryparam on PropertyDataVillageTown for instance, this will be any type of string inputed therefore couldn't a hacker

RE: cfquery

2004-02-24 Thread Stuart Kidd
Thanks for that Philip, that gives me a better understanding. But I suppose trapping for wrong datatypes outside of the query opens a whole new can of worms?... -- Original Message -- From: Philip Arnold [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED]

RE: CFINSERT on CFMX (newbe question)

2004-02-24 Thread Mark W. Breneman
Will that fieldname date come back to bite him later?Seems like I changed a database or two due to other issues related to using the field name date.Can't remember right now.. Maybe it was just to not use the reserved word.. Thoughts??? Yes using a real SQL statement is the better way to go then

RE: CFINSERT on CFMX (newbe question)

2004-02-24 Thread Pascal Peters
DATE is a reserved word. Either change the column name in the db or switch to cfquery -Original Message- From: Steven Sharko [mailto:[EMAIL PROTECTED] Sent: dinsdag 24 februari 2004 16:46 To: CF-Talk Subject: RE: CFINSERT on CFMX (newbe question) Error Occurred While Processing

Crystal Reports

2004-02-24 Thread Ciliotta, Mario
Hi all, I was wondering if anyone can explain to me how exactly Crystal Reports work with CF. I have a request from my users to replace their Access based report with web based reports and I think Crystal is the best route - maybe. Does Crystal need to be installed on the CF server? What

RE: CFINSERT on CFMX (newbe question)

2004-02-24 Thread Jochem van Dieten
Mark W. Breneman said: Will that fieldname date come back to bite him later? It will probably continue to cause inconvenience, but nothing major. It is just not something you would want a prospective employer to see. Ha, It must be the masochist in me but I still use Cfupdate and insert even

RE: Question about CFQUERYPARAM and GUIDs

2004-02-24 Thread Lola Lee
At 11:16 AM -0600 2/23/04, Justin Hansen wrote: I use CF_SQL_VARCHAR for GUIDs. It works just fine. What if a string of characters, formatted just the same as a GUID but with one less character, was used?According to my coworker, this would validate just the same as a real GUID. -- Lola -

RE: CFINSERT on CFMX (newbe question)

2004-02-24 Thread Mark W. Breneman
Jochem van Dieten said: It should not be that hard to write your own cfinsert and cfupdate if you ever feel the need to abandon them. Yes, I have started several times to plan out just what my Cfupdate any Cfinsert would do based on how we use it, but then I realize that 98% of that is already

RE: Question about CFQUERYPARAM and GUIDs

2004-02-24 Thread Barney Boisvert
Any character string will validate if you use CF_SQL_VARCHAR, regardless of format.If you want to validate a GUID, you'll have to use something more than just CFQUERYPARAM.Easiest is probably a simple Refind call, with the appropriate RE.I don't know the exact format of a GUID, but it should be

Re: SOT: cfeclipse version 1.1.1 released - if you care

2004-02-24 Thread Rob Rohan
On Tue, 2004-02-24 at 01:43, Thomas Chiverton wrote: On Tuesday 24 Feb 2004 09:34 am, Thomas Chiverton wrote: Great job, once again. Except it appears to be missing some files in /icons/ - like the title bar and menu icons. I copied the /icons/ dir from 1.1.0 into the /icons/ dir of 1.1.1

Re: REFind

2004-02-24 Thread Ben Doom
Not within a character class.If you're careful about how you construct it, you never have to escape anything in a class.Unless I forgot about something, or course.:-) --Ben Doom Taco Fleur wrote: Don't you have to escape the period? like so \. Taco Fleur

Re: Question about CFQUERYPARAM and GUIDs

2004-02-24 Thread Jochem van Dieten
Lola Lee wrote: At 11:16 AM -0600 2/23/04, Justin Hansen wrote: I use CF_SQL_VARCHAR for GUIDs. It works just fine. What if a string of characters, formatted just the same as a GUID but with one less character, was used?According to my coworker, this would validate just the same as a

RE: Question about CFQUERYPARAM and GUIDs

2004-02-24 Thread Lola Lee
At 8:38 AM -0800 2/24/04, Barney Boisvert wrote: Any character string will validate if you use CF_SQL_VARCHAR, regardless of format.If you want to validate a GUID, you'll have to use something more than just CFQUERYPARAM.Easiest is probably a simple Refind call, with the appropriate RE.I don't

RE: SOT: cfeclipse version 1.1.1 released - if you care

2004-02-24 Thread Greg Luce
Rob, what is cfeclipse? I went to http://cfeclipse.rohanclan.com/ and can't make heads or tails of it? Is it an editor? That's what it sounds like from the notes there. Is it freeware/shareware? Where can it be downloaded from? Greg -Original Message- From: Rob Rohan [mailto:[EMAIL

RE: Question about CFQUERYPARAM and GUIDs

2004-02-24 Thread Dave Watts
We're being told to use CFQUERYPARAM in cfqueries. But if I understand it correctly, there is no CF_SQL types that handle GUIDs. What we need to be able to do is something like this: cfquery verifyUser select * from user where UserID = cfqueryparam type=CF_SQL_xxx value=GUID

RE: Question about CFQUERYPARAM and GUIDs

2004-02-24 Thread Barney Boisvert
CFQUERYPARAM protects your database.It includes very primitive data validation for standardized SQL types.That validation is for protection only, in most cases, it's completely insufficient for the specific data of an app.For example, the INTEGER type will happily let you store a persons age that

RE: Question about CFQUERYPARAM and GUIDs

2004-02-24 Thread Matt Robertson
Isn't this counterintuitive? I'd answer no.What you're asking for is akin to a cfsqltype to enforce, say, a telephone number to 999-999-.That's not what cfqueryparam is about.You're really talking about a formatting mask and not validating a standard SQL datatype.

RE: Break the block, and SURVIVE, any way?

2004-02-24 Thread Dave Watts
A browser can be configured to accept cookies from a server while a spider does not seem to have an ability to accept cookie(s), hence it failed to go further (been redirected to some other place). Spiders have whatever ability you provide them - they're programs that you write yourself.

Re: Question about CFQUERYPARAM and GUIDs

2004-02-24 Thread Jochem van Dieten
Lola Lee wrote: At 8:38 AM -0800 2/24/04, Barney Boisvert wrote: Any character string will validate if you use CF_SQL_VARCHAR, regardless of format.If you want to validate a GUID, you'll have to use something more than just CFQUERYPARAM.Easiest is probably a simple Refind call, with the

RE: Question about CFQUERYPARAM and GUIDs

2004-02-24 Thread Philip Arnold
From: Lola Lee Isn't this counterintuitive? We're being told to use CFQUERYPARAM in cfqueries.But if I understand it correctly, there is no CF_SQL types that handle GUIDs. What we need to be able to do is something like this: cfquery verifyUser select * from user where UserID =

RE: cfquery

2004-02-24 Thread Philip Arnold
From: Stuart Kidd Thanks for that Philip, that gives me a better understanding. No problems, glad to help g But I suppose trapping for wrong datatypes outside of the query opens a whole new can of worms?... It throws an error, so you'd have to do a CFTRY, CFCATCH to check that the error

RE: SOT: cfeclipse version 1.1.1 released - if you care

2004-02-24 Thread Rob Rohan
On Tue, 2004-02-24 at 08:55, Greg Luce wrote: Rob, what is cfeclipse? I went to http://cfeclipse.rohanclan.com/ and can't make heads or tails of it? Is it an editor? That's what it sounds like from the notes there. Is it freeware/shareware? Where can it be downloaded from? Sorry, Eclipse is

Re: Single Quotes in Comment Fields Problem

2004-02-24 Thread Mary Jo Sminkey
I just didn't understand how to work it back into the evaluate statement I was using to combine the field variable names along with the record id numbers to updte multiple rows. I recently ran into this issue and found that the Evaluate function can cause problems in query statements if you

Re: Cold Fusion and Oracle Stored Procedures

2004-02-24 Thread Richard Crawford
Scott Brady wrote: Try swapping the last two cfprocparams.Assuming you're using CFMX, CFMX no longer uses the dbvarname attribute (at least for Oracle, not sure about other databases), so the order in which you provide the parameters needs to match the order they're defined in the

Re: Question about CFQUERYPARAM and GUIDs

2004-02-24 Thread Jochem van Dieten
Philip Arnold wrote: What you have to remember is that a GUID is just a string of characters - different systems produce them differently Actually, a GUID is a 128 bit integer that is produced according to the same algorithm everywhere. CF, SQL Server and other apps won't produce the same

RE: SOT: cfeclipse version 1.1.1 released - if you care

2004-02-24 Thread Won Lee
Rob, How do I check that I'm using 1.1.1 and not previous versions? Won [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

New Book

2004-02-24 Thread jeff
This message is an advertisement of sorts, and something of a birth announcement as well. I hope you don't mind my taking a bit of your bandwidth with it: *** My new book--ColdFusion Lists, Arrays, Structures--is available for ordering online.You can pick it up here: http://www.protonarts.com

Re: SOT: cfeclipse version 1.1.1 released - if you care

2004-02-24 Thread Won Lee
Rob, I should be a little more specific.The reason that I ask is because I extracted it to e:\eclipse\plugins. It created a directory com.rohanclan.coldfusionmx_1.1.1 and I do see the jar file there. But when i go into the configuration history and I don't see an reference to 1.1.1.I do see

Re: SOT: cfeclipse version 1.1.1 released - if you care

2004-02-24 Thread Rob Rohan
I sent a reply to this but it doesn't seem to have been posted - sorry if this gets duped. to be brief: File/Open no worky at present File/new/project/simple/project then add or import cfm,cfc, or cfml files will work On Tue, 2004-02-24 at 03:44, Oliver Tupman wrote: Hi Rob, Downloaded a

RE: SOT: cfeclipse version 1.1.1 released - if you care

2004-02-24 Thread Rob Rohan
On Tue, 2004-02-24 at 09:32, Won Lee wrote: Rob, How do I check that I'm using 1.1.1 and not previous versions? Help/About eclipse platform/plug-in details should list all installed plug-ins and versions Won [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

RE: New Book

2004-02-24 Thread Ben Forta
Congratulations Jeff! Can't wait to see it. --- Ben _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 24, 2004 12:19 PM To: CF-Talk Subject: New Book This message is an advertisement of sorts, and something of a birth announcement as well. I hope you don't

Re: SOT: cfeclipse version 1.1.1 released - if you care

2004-02-24 Thread Rob Rohan
On Tue, 2004-02-24 at 09:34, Won Lee wrote: Rob, I should be a little more specific.The reason that I ask is because I extracted it to e:\eclipse\plugins. It created a directory com.rohanclan.coldfusionmx_1.1.1 and I do see the jar file there. But when i go into the configuration history

Factoring out locking in CFC

2004-02-24 Thread Jamie Jackson
Say I've got a CFC with several methods whose operations (e.g. cfexecutes) need identical named locks, so that none can run concurrently. Is there a way to factor out a locking method that can be used by the other methods, or is this the exclusive domain of custom tags? The only way that I can

RE: SOT: cfeclipse version 1.1.1 released - if you care

2004-02-24 Thread Won Lee
Rob Thanks.I just realized that I did a re-install of 2.1.1. I guess that means I can only get up to cfeclipse 1.0.5? At 09:36 AM 2/24/2004 -0800, you wrote: On Tue, 2004-02-24 at 09:32, Won Lee wrote: Rob, How do I check that I'm using 1.1.1 and not previous versions? Help/About eclipse

RE: Question about CFQUERYPARAM and GUIDs

2004-02-24 Thread Philip Arnold
Even the string representation of a GUID is the same everywhere. There is however a difference between the string representation of a GUID and a UUID. Sorry, I meant UUID/GUID g [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Access Coldfusion MX6.1 problems...sites keep dying

2004-02-24 Thread Jamie Jackson
If you've got it set to maintain connections in the administrator, have you tried disabling that setting? If not, you might try that for a few days, and see if the problem reoccurs. Jamie On Tue, 24 Feb 2004 13:40:47 +1000, in cf-talk you wrote: Please Help My companies live hosting server was

RE: Factoring out locking in CFC

2004-02-24 Thread Hugo Ahlenius
Well... You could have a flag (or structure of flags) in the CFC scope, that you set and read depending on the locking status. It could also be that the locks should be on the calling page/cfc/etc, e.g. start lock, create object, call method1, call method2, end lock. /Hugo

Re: New Book

2004-02-24 Thread David Fafard
Just purchased it! 19.99 is a good buy. I'll let you know how I like it. Dave - Original Message - From: Ben Forta To: CF-Talk Sent: Tuesday, February 24, 2004 12:38 PM Subject: RE: New Book Congratulations Jeff! Can't wait to see it. --- Ben _ From: [EMAIL PROTECTED]

RE: Factoring out locking in CFC

2004-02-24 Thread Barney Boisvert
You can't do a body with a function like you can do with a custom tag, so I think you're stuck, if you can't abstract out the entire operation. However, that's definitely the best way to go; no sense in having the same code more than once if you can help it. If it's not possible, then set up the

RE: New Book

2004-02-24 Thread Kola Oyedeji
Well done Jeff, Just one question, which versions of CF does it cover? Kola -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 24 February 2004 17:19 To: CF-Talk Subject: New Book This message is an advertisement of sorts, and something of a birth

RE: SOT: cfeclipse version 1.1.1 released - if you care

2004-02-24 Thread Rob Rohan
On Tue, 2004-02-24 at 09:41, Won Lee wrote: Rob Thanks.I just realized that I did a re-install of 2.1.1. I guess that means I can only get up to cfeclipse 1.0.5? Yeah, unless you want to back port the newer stuff to 2 - That would help quite a few people I think. The source for the 3 version

Re: SOT: cfeclipse version 1.1.1 released - if you care

2004-02-24 Thread Massimo, Tiziana e Federica
In fact, some say that eclipse with the cfeclipse plug-in is faster / more responsive then dw - that is opinion and cfeclipse has far less features then dw. Being faster than DW isn't that hard :-))) Apart from this, yes, Eclipse is faster than most Java IDEs out there

Re: New Book

2004-02-24 Thread adrocknatalk
I'll def be checking it out. Your FB3 book was a good read, you've got a very casual wirting style that makes it easy to go cover to cover. Although, not to offend, I found that last chapter to be the funniest thing I've read in a techbook in awhile. hehehe. Nuthin' but net. -Original

Help: UTF-16 in ColdFusion 5???

2004-02-24 Thread Jon Block
I'm using the Microsoft XML Services (v4) parser with CF5 on Windows. I'm getting an error and this page http://support.microsoft.com/default.aspx?scid=kb;EN-US;q247708 explains that the reason is because I have to convert my ColdFusion 5 string to UTF-16 before I can pass the string to the

Re: Cold Fusion and Oracle Stored Procedures

2004-02-24 Thread Richard Crawford
Thomas Chiverton wrote: On Monday 23 Feb 2004 23:37 pm, Richard Crawford wrote: more disturbing indications that Oracle Stored Procedures do not return result sets. I am investigating this today / yesterday. Using cfprocresult works, with Oracle 9i and CFMX6.1 under weblogic, using

RE: New Book

2004-02-24 Thread jeff
Thanks, Ben. - Jeff On 24 Feb 2004 at 12:38, Ben Forta wrote: Congratulations Jeff! Can't wait to see it. --- Ben _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 24, 2004 12:19 PM To: CF-Talk Subject: New Book This message is an advertisement

RE: New Book

2004-02-24 Thread jeff
The illustrations are rendered in CFMX, and the book is aimed there, but I tried to make comments where previous versions were concerned.Note, though, that I didn't make notes on every function as to which versions have that function.The book should be beneficial to users of any version 4.5 and

Re: New Book

2004-02-24 Thread jeff
No offense taken at all!It was intended to amuse.You should've seen the fight I had with our editors to get that chapter in, though.They literally didn't know how to deal with fiction.It was almost unbelievable.I'm glad you enjoyed it. - Jeff On 24 Feb 2004 at 18:43, [EMAIL PROTECTED] wrote:

RE: Help: UTF-16 in ColdFusion 5???

2004-02-24 Thread Dave Watts
I'm using the Microsoft XML Services (v4) parser with CF5 on Windows. I'm getting an error and this page http://support.microsoft.com/default.aspx?scid=kb;EN-US;q247708 explains that the reason is because I have to convert my ColdFusion 5 string to UTF-16 before I can pass the

Re: New Book

2004-02-24 Thread Irvin Gomez
Good luck with your book, Jeff! I ordered it and will provide some feedback. Irvin This message is an advertisement of sorts, and something of a birth announcement as well. I hope you don't mind my taking a bit of your bandwidth with it: *** My new book--ColdFusion Lists, Arrays,

Re: New Book

2004-02-24 Thread jeff
Thanks, Irvin.I look forward to hearing from you. - Jeff On 24 Feb 2004 at 14:26, Irvin Gomez wrote: Good luck with your book, Jeff! I ordered it and will provide some feedback. Irvin This message is an advertisement of sorts, and something of a birth announcement as well. I

Execution time for cfapplication tag

2004-02-24 Thread Claudia Hoag
Hello, My Application.cfm is taking 390ms to run, which is actually the cfapplication tag alone taking 350ms. Shouldn't it run faster than that? Is that because I'm using a database for clientstorage? (it's MS SQL 2k) Here's the tag: cfapplication name=myapp loginStorage=cookie

bank of america processing

2004-02-24 Thread Matt Robertson
Does anyone have B of A cc processing enabled on CF 6.1?If so can you share your (sanitized) cfhttp call with me?Mine has been working since Q3 last year, but suddenly seems to have stopped.I had a January 9 transaction work great, and one yesterday blew up (nothing in between... Hi-dollar

RE: bank of america processing

2004-02-24 Thread Barney Boisvert
Does the interface involve sending a file to BofA?When using CFHTTP to interface with MediaLinq faxing service, it wouldn't accept the file uploads as valid.I ended up writing a function library that would build and send HTTP calls using HTTPClient (the same library that CFHTTP is built on), but

vspider on CFMX J2EE Linux: Works or not?

2004-02-24 Thread Jamie Jackson
Just wondering whether I wasted a couple of days of work developing an application to ease the creation of vspider searches. (ARGGH!) This link (Original MX release notes) indicates that vspider doesn't work at all on Linux:

Re: Break the block, and SURVIVE, any way?

2004-02-24 Thread Don
Yes, your follow-up makes a lot of sense to me except the GET method in the following block, is it a typo? meant to be POST? I thought cfhttpparam subtag is used with POST method only. Thanks. !--- Now send the cookies back to the server on our next request --- cfhttp url="" http://

Re: Cold Fusion and Oracle Stored Procedures

2004-02-24 Thread Richard Crawford
Thomas Chiverton wrote: Solution: Use native CFMX drivers. Which is a shame :-( I dunno if it's worth putting in on the wish list... I figured out to return a ref cursor, and this appears to return a result set fine.However, now I'm getting an error reading, [Oracle JDBC Driver]Unsupported

RE: REFind

2004-02-24 Thread Taco Fleur
if you're careful? What does that mean? I guess I was not careful then, as far as I could see I had to escape the period in one of my character classes.. Taco Fleur Bloghttp://www.tacofleur.com/index/blog/ http://www.tacofleur.com/index/blog/ Methodology

RE: Break the block, and SURVIVE, any way?

2004-02-24 Thread Hagan, Ryan Mr (Contractor ACI)
Yep, typo.Sorry about that. -Original Message- From: Chunshen Li [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 24, 2004 1:51 PM To: CF-Talk Subject: Re: Break the block, and SURVIVE, any way? Yes, your follow-up makes a lot of sense to me except the GET method in the following block,

RE: Execution time for cfapplication tag

2004-02-24 Thread Nathan Strutz
There's a good chance that your client variable storage is the problem. How large is the database? Is there any way you can do without it? I personally have some reservations about using client database storage. The idea is great, but the implementation is poor. On my SQL 2k server, we can watch

Re: REFind

2004-02-24 Thread Ben Doom
What I meant by being careful has to do with the placement of -, ], and [ in the class.- is easy:make it the first or last char, and it's literal.[] I can never remember, so I escape. I just checked, and in 6.1 you don't have to escape a period in a character class.I remember not having to in

Re: Cold Fusion and Oracle Stored Procedures

2004-02-24 Thread Rob Rohan
On Tue, 2004-02-24 at 11:50, Richard Crawford wrote: Thomas Chiverton wrote: Solution: Use native CFMX drivers. Which is a shame :-( I dunno if it's worth putting in on the wish list... I figured out to return a ref cursor, and this appears to return a result set fine.However, now I'm

RE: Execution time for cfapplication tag

2004-02-24 Thread Ben Forta
Or use SESSION variables, which can be shared quite easily and effectively when CF is deployed on top of a J2EE server. And SESSION supports far more data types than does CLIENT too. --- Ben _ From: Nathan Strutz [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 24, 2004 2:57 PM To:

RE: Help: UTF-16 in ColdFusion 5???

2004-02-24 Thread Jon Block
Dave I have no idea which are the invalid characters and thats what is driving me crazy. I was hoping someone may have had a need to do this in the past and created some UDF or CFX that would do what I'm looking for... any ideas? Jon -Original Message- From: Dave Watts [mailto:[EMAIL

Re: Break the block, and SURVIVE, any way?

2004-02-24 Thread Don
Exercise in vain?It still redirect to yahoo. First try your whole block of code. Second try just the following block of code for debugging. cftry cfhttp url="" ThrowOnError=yes redirect=No useragent=#cgi.http_user_agent# method=get /cfhttp cfcatch type=any/cfcatch /cftry !--- Take a look at the

  1   2   >