RE: regex help

2003-06-16 Thread Greg McDaniel
Too bad it does not install on W2K. :`( -Original Message- From: Marlon Moyer [mailto:[EMAIL PROTECTED] Sent: Monday, June 16, 2003 12:55 PM To: CF-Talk Subject: RE: regex help Michael, I also use this program to help test regex's. It's quicker than using cf most of the time.

How to call CFSTOREDPROC without parms

2003-06-13 Thread Greg McDaniel
I have a simple stored procedure in Oracle that takes no parms and returns no data. I can run this proc in sqlplus, works great. Run this from Coldfusion cfstoredproc name=cleanup datasource=#dsn#/cfstoredproc returns: ORA-06550: line 1, column 18: PLS-00222: no function with name 'CLEANUP'

RE: cf studio users

2003-06-09 Thread Greg McDaniel
I'm interested. Greg M -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2003 2:44 PM To: CF-Talk Subject: RE: cf studio users ColdFusionProNews is? === Raymond Camden,

RE: cfapplication and cookies

2003-03-20 Thread Greg McDaniel
Would this trick also work with ClientManagement instead of SessionManagement? Greg -Original Message- From: Darren Houle [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 9:59 AM To: CF-Talk Subject: RE: cfapplication and cookies I may be misunderstanding your exact wants but

cfapplication and cookies

2003-03-19 Thread Greg McDaniel
This is probably a complex simple question, but here goes. What settings do I need to put into cfapplication to accomplish the following? No Cookie written to the Browswer Client Variables Stored in a Database Greg M

RE: cfapplication and cookies

2003-03-19 Thread Greg McDaniel
I do want to use cookies, but I don't want them written to the hard drive, it should be in memory only. I had found a snippet somewhere that said if you did not set the cookie with an expiration time the cookie would disappear when the browser was closed. Something like this: cfcookie name=xxx

RE: Looping Client Vars

2003-03-14 Thread Greg McDaniel
You can use cfset client_var_list = #GetClientVariablesList()# cfloop index=list_element list=#variables.client_var_list# delimiters=, cfset temp = DeleteClientVariable(#list_element#) /cfloop Greg -Original Message- From: Ryan [mailto:[EMAIL PROTECTED] Sent: Friday, March 14,

Clusters Coldfusion form submissions

2003-03-13 Thread Greg McDaniel
I have two websites running identical code. One is a standalone. The other is a cluster. (Not Cluster Cats) I have a form that submits a page. form name=formname action=http://www.verifyx.com/safe.cfm; method=post... input name=fieldname1 type=hidden... I set the hidden form

Losing Variable Scopes

2003-03-06 Thread Greg McDaniel
I'm running two identical web sites on different platforms. I'm running a Solaris/Weblogic/BlueDragon/Fusebox application on a Solaris machine and I'm having issues with losing the attributes and form scopes between submit and the server side validation. In addition, iPlanet is the web server

CFX_JSpellCheck

2003-02-28 Thread Greg McDaniel
Does anyone have any experience with the CFX_JSpellCheck tag from CFDEV and Fusebox? Greg McDaniel ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists

[OT] CFID and CFTOKEN on POPUP Windows

2003-02-28 Thread Greg McDaniel
I have a CF App with pop-up windows. The pop-up windows call server side tags and SQL. Is it better to have the pop-up windows generate their own CFID/CFTOKEN pairs, or do they need to use the same pair as the parent window? Greg McDaniel

RE: [OT] CFID and CFTOKEN on POPUP Windows

2003-02-28 Thread Greg McDaniel
Thanks to you both for the clarification. Greg McDaniel -Original Message- From: Critz [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 11:22 AM To: CF-Talk Subject: Re: [OT] CFID and CFTOKEN on POPUP Windows oi Greg!! well if you want them associated with the same session

OT: Javascript List?

2003-02-21 Thread Greg McDaniel
Could someone please recommend a Javascript List that is at least as good as CF-Talk? Greg M. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

CF and Char(1) in Oracle

2003-02-17 Thread Greg McDaniel
In my code I select fields that are defined as char(1) in Oracle and I get back the expected value plus a bunch of garbage padded to the right. Trimming the field doesn't get rid of it, so I usually end up using substr(x,1,1). Has anyone else seen this kind of behavior? Do you know why it is

List Down?

2003-02-10 Thread Greg McDaniel
Is the CF-TALK list down? I stopped receiving messages Sunday and 10:00am. Greg M. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Xml, and attributes..

2003-02-10 Thread Greg McDaniel
Is CF-TALK down? I haven't received any messages since Sunday and 10:00am. Greg M. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Jeremy Allaire leaving MM

2003-02-06 Thread Greg McDaniel
Hmmm, didn't M$ hire away from Borland the primary Delphi developer several years ago? I wonder if Jeremy has been tempted by the Dark Side. Greg -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 10:01 AM To: CF-Talk Subject: RE:

Studio 5 development mappings problem (RDS)

2003-01-24 Thread Greg McDaniel
Does anyone have any tips about what might be happening when an RDS connection repeatedly fails when debugging a website? Greg M ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

proper cfparam usage

2003-01-10 Thread Greg McDaniel
Can anyone tell me if this is a proper/valid usage for cfparam? I'm debugging someone else's application and I've never seen it used this way before. cfparam name=request.create_date default=#DateTimeFormat(request.current_date)# type=date Thanks, Greg M

RE: proper cfparam usage

2003-01-10 Thread Greg McDaniel
Thanks Michael. -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Friday, January 10, 2003 7:44 AM To: CF-Talk Subject: Re: proper cfparam usage It's legal. The default is only used when the variable does not exist and dateformatted data is still a date. Just be

cftry cftransaction across multiple includes

2003-01-03 Thread Greg McDaniel
I have several insert query statements that are CFIncluded as separate files inside a single CFCase statement. cfcase. cfinclude = qry_insert1.cfm. cfinclude = qry_insert2.cfm. cfinclude = qry_insert3.cfm. cfinclude = qry_insert4.cfm. /cfcase. Can I put cftry and cftransaction begin in the first

RE: cftry cftransaction across multiple includes

2003-01-03 Thread Greg McDaniel
Thank you Paul that did the trick. Greg M. -Original Message- From: paul smith [mailto:[EMAIL PROTECTED]] Sent: Friday, January 03, 2003 10:10 AM To: CF-Talk Subject: Re: cftry cftransaction across multiple includes I would put the CFTRANSACTION before the first CFINCLUDE and

RDS Timing Out.

2002-12-02 Thread Greg McDaniel
When I start CFStudio, I get a non-descript popup box that says Operation timed out. When I try to debug a page it eventually says Operation timed out. The entire CFStudio crashes even if there is no activity going on within CFStudio or CF5 Server. I searched through the Archives and through

cfx_jspellcheck as fuse?

2002-11-22 Thread Greg McDaniel
Has anyone implemented the CFX_JSpellCheck from CFDev.com as a fuse? or even used it? Greg McDaniel ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists

RE: [OT][OT] Zip Code Lookup

2002-11-19 Thread Greg McDaniel
Is there a Zip Code lookup that includes the Zip Code + 4? It would be a huge database. --Greg -Original Message- From: jon roig [mailto:[EMAIL PROTECTED]] Sent: Monday, November 18, 2002 1:53 PM To: CF-Talk Subject: RE: [OT] Zip Code Lookup If you're using the JCSM database, here's a

RE: Compare code on two pages...

2002-11-12 Thread Greg McDaniel
I use Beyond Compare and it allows you easily see the differences and to move code between the two files. Excellent tool. Greg -Original Message- From: Sandy Clark [mailto:slLists;shayna.com] Sent: Tuesday, November 12, 2002 11:23 AM To: CF-Talk Subject: RE: Compare code on two pages...

XML Conversations from CF 5

2002-10-18 Thread Greg McDaniel
Has anyone done anything like this? The code below works with MSXML, but I want to dump that in favor of a J2EE compatible call. I want to send an XML stream to a service and read the response from that service without using Microsoft's MSXML service. -- I set a variable equal to list of

How is CFMX J2EE implemented?

2002-10-11 Thread Greg McDaniel
in their J2EE environment. My client is trying to lower their total cost of ownership by dumping CF and going to a pure J2EE environment. Greg McDaniel ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

RE: SOT: RegEx

2002-10-10 Thread Greg McDaniel
If it always bounded by JPEG and DirectClass, you could use the getContainer tag. Greg -Original Message- From: Everett, Al [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 10, 2002 11:15 AM To: CF-Talk Subject: RE: SOT: RegEx I thought of that too, but what if there's a space in

RE: RegEx

2002-10-10 Thread Greg McDaniel
Sorry, getContainer is not a tag, it is a UDF that you can find on cflib.org. Greg -Original Message- From: Willy Ray [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 10, 2002 10:55 AM To: CF-Talk Subject: SOT: RegEx Ok, I have a string that looks like this: /web/path/to/myfile.jpg

RE: Any Fusebox and CFMX issues?

2002-08-26 Thread Greg McDaniel
Hal, Does your statement about CFMX and Fusebox mean that we should throw out FB as a methodology until FB4 comes along if we are developing with CFMX? snipped On the point that it doesn't leverage CFMX - I agree, but then how could it? It was designed a year prior to CFMX. Maybe it

DateTime problem?

2002-08-14 Thread Greg McDaniel
It looks like these commands all return time in GMT. CFSCRIPT lsNow = Now(); lsParseNow = ParseDateTime(Now()); lsDateValue1 = ParseDateTime('07/31/2002 8:18:00','STANDARD'); lsDateValue2 = LSParseDateTime('07/31/2002 8:18:00'); lsDateValue3 = CreateDateTime(2002,7,31,8,18,0); /CFSCRIPT

RE: DateTime problem?

2002-08-14 Thread Greg McDaniel
A little more background may be helpful. I'm getting dates from a real-time system in the form of ddmmm/hhmm but no year, so I have to figure out the year based on what month it is as compared to the current local date. (e.g. If my server date is Jan 1, 2002 03:00:00 and my real-time system

RE: CFMX and XML

2002-08-12 Thread Greg McDaniel
Mathew, Jon and Brook, Thank you for all of your input. I've looked into CFX xml tags, but not CFX http tags. JSP looks like an answer that will work. Who would have thought that sending and receiving an XML string would be such an effort. Greg

CFMX and XML

2002-08-09 Thread Greg McDaniel
--- cfset tmpVar = objHTTP.send (#ccReqXML#) Greg McDaniel __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

RE: Oracle Error

2002-02-07 Thread Greg McDaniel
it communicates to make sure it has an adequate range to speak through. Greg McDaniel -Original Message- From: Debbie McDaniel [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 07, 2002 10:58 AM To: CF-Talk Subject: Oracle Error msg snipped