Code Errors with Coldfusion - Please Help ?

2003-07-14 Thread Ian Vaughan
Hi I would appreciarte it if someone on the list could try to help me solve this problem please, I am trying the following code against an Oracle database and it is returning the following error from this code ? cfquery name=UserGroups datasource=intranetv8 SELECT * FROM usergroupmembership,

coding guidelines part 2

2003-07-14 Thread Rich Hims
On Wednesday, May 21, 2003, at 15:30 US/Pacific, Sean A Corfield wrote: See my other post (on Structs in CFMX - Java) where I timed both: Sorry, but could you link us to this? Is CFMX-Java a houseoffusion list, 'cos I couldn't see it in the navigation list. [code omitted] Running it for 5000

RE: Code Errors with Coldfusion - Please Help ?

2003-07-14 Thread Tyagi, Badal
I think you are using wrong Query name, this line should be... cfset session.groupname = QuotedValueList(UserGroups.groupname) regards badal Tyagi HCL Perot Systems Noida, India -Original Message- From: Ian Vaughan [mailto:[EMAIL PROTECTED] Sent: Monday, July 14, 2003 2:01 PM To:

Re: Code Errors with Coldfusion - Please Help ?

2003-07-14 Thread Ian Vaughan
Just changed that line to what you suggested and am getting an Oracle error Queries UserGroups (Records=0, Time=26ms) SQL = SELECT * FROM usergroupmembership, groups WHERE UserID = 1 AND usergroupmembership.groupid = groups.groupid Error Occurred While Processing Request Error Diagnostic

RE: Code Errors with Coldfusion - Please Help ?

2003-07-14 Thread Tyagi, Badal
Now this shows that your first query is running fine as it was earlier but its record count is zero, therefore in variable session.groupname nothing is stored and without checking its record count you are performing another Query where you are using this variable which is throwing error. So first

Re: Code Errors with Coldfusion - Please Help ?

2003-07-14 Thread Ian Vaughan
I got rid of the error message by placing single quotes around it such as security IN '(#PreserveSingleQuotes(session.groupname)#)' However I turned on debugging and the query is still showing up with nothing in it Queries UserGroups (Records=0, Time=169ms) SQL = SELECT * FROM

RE: Code Errors with Coldfusion - Please Help ?

2003-07-14 Thread Robertson-Ravo, Neil (RX)
have ran this within Query analyser or equiv? and check that the database is getting any records? -Original Message- From: Ian Vaughan [mailto:[EMAIL PROTECTED] Sent: 14 July 2003 13:37 To: CF-Talk Subject: Re: Code Errors with Coldfusion - Please Help ? I got rid of the error message

Cfhttp

2003-07-14 Thread Ryan Mitchell
Hello Is there any way to preserve session state over cfhttp... Im doing multiple requests on a web page, and the page uses sessions, and so I cant login etc via cfhttp as it doesn¹t seem to preserve sessions... TIA, Ryan ~|

RE: Cfhttp

2003-07-14 Thread Robertson-Ravo, Neil (RX)
erm... I would say no, as it would be unsafe...though someone may know how. -Original Message- From: Ryan Mitchell [mailto:[EMAIL PROTECTED] Sent: 14 July 2003 13:46 To: CF-Talk Subject: Cfhttp Hello Is there any way to preserve session state over cfhttp... Im doing multiple requests

Re: Code Errors with Coldfusion - Please Help ?

2003-07-14 Thread Jochem van Dieten
Ian Vaughan wrote: cfquery name=UserGroups datasource=intranetv8 SELECT * FROM usergroupmembership, groups WHERE UserID = #Session.ID# AND usergroupmembership.groupid = groups.groupid /cfquery cfset allowedUserGroupList = ArrayToList(UserGroups[groupname]) ,all CFQUERY name=list

RE: Cfhttp

2003-07-14 Thread Dave Watts
Is there any way to preserve session state over cfhttp... erm... I would say no, as it would be unsafe...though someone may know how. Why would it be unsafe? Or at least, why would it be any less safe than any other HTTP client? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/

RE: Cfhttp

2003-07-14 Thread Philip Arnold
Is there any way to preserve session state over cfhttp... Im doing multiple requests on a web page, and the page uses sessions, and so I cant login etc via cfhttp as it doesn¹t seem to preserve sessions... If you can pass the CFID and CFTOKEN via the URL, it should keep the same state... But

RE: Cfhttp

2003-07-14 Thread Dave Watts
Is there any way to preserve session state over cfhttp... Im doing multiple requests on a web page, and the page uses sessions, and so I cant login etc via cfhttp as it doesn¹t seem to preserve sessions... Yes, you can preserve session state. You'll need to return the session token on each

RE: Cfhttp

2003-07-14 Thread Robertson-Ravo, Neil (RX)
Dunno, its Mondayisnt everything unsafe ;-) -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: 14 July 2003 14:11 To: CF-Talk Subject: RE: Cfhttp Is there any way to preserve session state over cfhttp... erm... I would say no, as it would be

Re: Code Errors with Coldfusion - Please Help ?

2003-07-14 Thread Ian Vaughan
Jochem Just run what you sent, no errors returned but do not think that parameter 2 is not working as it has again not been populated. I am using Coldfusion 4.5. What are the benefits of doing it your way ?? Queries UserGroups (Records=0, Time=27ms) SQL = SELECT * FROM usergroupmembership,

RE: Code Errors with Coldfusion - Please Help ?

2003-07-14 Thread Douglas.Knudsen
ugh, using single ticks like that completely changed your SQL. What you should be doing is checking if your first query returned any rows. If not, do not use the IN clause. something like this SELECT * FROM itlinks WHERE linkarea='#URL.area#' AND ( cfif UserGroups.recordcount GT 0

RE: CSS Layouts

2003-07-14 Thread Kola Oyedeji
Hi This may be of some help but you'll still need to adjust it to get a header shown. Kola -Original Message- From: Jeff Chastain [mailto:[EMAIL PROTECTED] Sent: 13 July 2003 23:01 To: CF-Talk Subject: OT: CSS Layouts I am looking for a CSS layout that fits the following

Anyone using the Tigra Menu?

2003-07-14 Thread Randell B Adkins
I am trying to understand how to have top-level menu images and use the roller over affect. When you mouseover a menu items, the sub-items (TEXT) appear and the actual MAIN MENU image changes to the Rollerover affect image. How does one do this? BTW: I am using the Tigra Menu Gold. There

CF Tags for Authorize.Net transactions

2003-07-14 Thread Steve Drucker
Regards, Steve Drucker CEO Fig Leaf Software www.figleaf.com 1-877-FIG-LEAF There are quite a few authorize.net tags available through the developer's exchange. Does anyone have a favorite? Regards, Steve Drucker CEO Fig Leaf Software http://www.figleaf.com http://training.figleaf.com

Re: Code Errors with Coldfusion - Please Help ?

2003-07-14 Thread Ian Vaughan
Douglas It seems as if the session.groupname is not getting populated ? So I am not sure if this query is not working as it should?? Even though it works as it should against an Access database. cfquery name=UserGroups datasource=intranetv8 SELECT * FROM usergroupmembership, groups WHERE UserID

Re: Code Errors with Coldfusion - Please Help ?

2003-07-14 Thread Ian Vaughan
So what query do I need to run this SELECT * FROM usergroupmembership, groups WHERE UserID = #Session.ID# AND usergroupmembership.groupid = groups.groupid - Original Message - From: Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July 14, 2003

Re: Refresh application-scoped variables

2003-07-14 Thread Christian Cantrell
On Monday, July 14, 2003, at 01:19 AM, Sean A Corfield wrote: This is cool but what's to stop users from maliciously putting flushinit=true on the URL and repeatedly forcing your application to re-initialize? Just curious... The same thing that prevents users from maliciously screwing with

RE: coding guidelines part 2

2003-07-14 Thread Kola Oyedeji
For me, isDefined takes 1229ms structKeyExists takes 1545ms [or 1286/1526, or 1278/1519: isDefined is consistently faster]. Could this be because I'm running ColdFusion 5, not MX? Why would the two versions produce such drastically different results? Rich Hims Probably because CFMX

RE: CSS Layouts

2003-07-14 Thread Jeff Chastain
Kola, Thanks ... but, did I miss something here? I don't see a link or anything. Thanks -- Jeff -Original Message- From: Kola Oyedeji [mailto:[EMAIL PROTECTED] Sent: Monday, July 14, 2003 8:24 AM To: CF-Talk Subject: RE: CSS Layouts Hi This may be of some help but you'll still need

RE: Code Errors with Coldfusion - Please Help ?

2003-07-14 Thread Douglas.Knudsen
I dunno your table structure, perhaps in your Oracle DB the userid you are testing does not exist? Perhaps the groupid for your userid DNE? Although you should have the FK relationship set to not allow disjoint sets of groupids in each of your tables. You may also want to add ticks around

RE: Refresh application-scoped variables

2003-07-14 Thread Raymond Camden
You can also simply do cfif isDefined(url.init) and isUserInGroup(...) In other words, only allow a logged-in admin to flush the cache this way. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

RE: datasource connections

2003-07-14 Thread Kola Oyedeji
Barney This may shed some more light on how connections are handled in CF (pre-MX) http://www.macromedia.com/support/coldfusion/ts/documents/tn18061.htm Kola -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: 11 July 2003 22:38 To: CF-Talk Subject: datasource

RE: CSS Layouts

2003-07-14 Thread Kola Oyedeji
Doh.. http://www.bluerobot.com/web/layouts sorry Kola -Original Message- From: Jeff Chastain [mailto:[EMAIL PROTECTED] Sent: 14 July 2003 14:59 To: CF-Talk Subject: RE: CSS Layouts Kola, Thanks ... but, did I miss something here? I don't see a link or anything. Thanks

Re: CF Tags for Authorize.Net transactions

2003-07-14 Thread Clint
I used this one after trying some others in the tag gallery and it worked great. http://www.oleani.com/oleani/products_cfauthorize.cfm Clint - Original Message - From: Steve Drucker [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July 14, 2003 8:39 AM Subject: CF Tags for

Re: Code Errors with Coldfusion - Please Help ?

2003-07-14 Thread Jochem van Dieten
Ian Vaughan wrote: Just run what you sent, no errors returned but do not think that parameter 2 is not working as it has again not been populated. Just modify your first query so it returns rows. What are the benefits of doing it your way ?? Speed and security. Queries UserGroups

Bulk CF Encryption App

2003-07-14 Thread Joshua Miller
Can anyone recommend a good bulk CFML encrypt or? I've tried a few as trial versions and they both choke out on my directory of 77 CFML templates, throw errors of all sorts and generally don't work. Anyone have any recommendations or is the best way to do it one at a time from the command-line?

SOT: FireFly vs DRK

2003-07-14 Thread Kronenberger, Douglas
Quick question. Should I get FireFly or just get the DRKs. Or maybe which one should I get first. I'm just starting Flash Remoting ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Cfhttp

2003-07-14 Thread Mark A. Kruger - CFG
Ryan, Read the header information from the first request and find the CFID and the CFTOKEN (cookies), then pass them back in subsequent requests as url variables. -mark -Original Message- From: Ryan Mitchell [mailto:[EMAIL PROTECTED] Sent: Monday, July 14, 2003 7:46 AM To: CF-Talk

Re: FireFly vs DRK

2003-07-14 Thread Clint
In my opinion, you have CFMX and are going to do remoting, just get the DRK. I have tried using the FireFly components and they are a pain in the rear. Clint - Original Message - From: Kronenberger, Douglas [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July 14, 2003 9:40

CFC question

2003-07-14 Thread Douglas.Knudsen
Ok, I built a CFC replete with some methods. One method, call it foo, is to be called only from WITHIN the CFC. Now, I call the method like this cfset goo = this.foo(arg) If the method is declared with a specifier of public or package, all is good. But if I declare it as private, it bombs

RE: FireFly vs DRK

2003-07-14 Thread Robertson-Ravo, Neil (RX)
you dont even need the DRK top do remoting? -Original Message- From: Clint [mailto:[EMAIL PROTECTED] Sent: 14 July 2003 15:33 To: CF-Talk Subject: Re: FireFly vs DRK In my opinion, you have CFMX and are going to do remoting, just get the DRK. I have tried using the FireFly components

Re: FireFly vs DRK

2003-07-14 Thread Clint
No, but there are good examples and some cool components that help in Flash App programming I would spend my money on the DRK and not the FireFly components... Clint - Original Message - From: Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July

OT: ArgoSoft

2003-07-14 Thread cfhelp
I just got switched over to ArgoSoft Mail and it's absolutely wonderful. I can see all the incoming mail request in realtime use the ORDB database and best of all there are Aliases for the usernames so the old eMail clients can use it (the ones that do not allow a @ in the username). So I am so

RE: CFC question

2003-07-14 Thread Mike Townend
Change the line so it reads CFSET goo = foo(arg) And it shoud then run the function HTH -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, July 14, 2003 15:34 To: CF-Talk Subject: CFC question Ok, I built a CFC replete with some methods. One

RE: CFC question

2003-07-14 Thread Raymond Camden
When you say, x = this.foo, it acts as an outside call. Just do cfset goo = foo(arg) === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia

RE: FireFly vs DRK

2003-07-14 Thread Philip Arnold
Quick question. Should I get FireFly or just get the DRKs. Or maybe which one should I get first. I'm just starting Flash Remoting If you're serious about using FireFly, wait for the next release The current one has some real usability problems (like not supplying the information from the

RE: CFC question

2003-07-14 Thread Douglas.Knudsen
ah! danke! That did it. Doug -Original Message- From: Mike Townend [mailto:[EMAIL PROTECTED] Sent: Monday, July 14, 2003 10:39 AM To: CF-Talk Subject: RE: CFC question Change the line so it reads CFSET goo = foo(arg) And it shoud then run the function HTH -Original

Re: Cfhttp (now regex help needed...)

2003-07-14 Thread Ryan Mitchell
Ok, cool i've got this aspect working, thanks dave... Now... I am doing a cfhttp on a php page and need to return the php sid, so basically I need to search through the string and find sid=. where the Represent a 32 char alphanumeric string... I've tried

Re: CFC question

2003-07-14 Thread Kwang Suh
Yikes. What was the reasoning behind this? - Original Message - From: Raymond Camden [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July 14, 2003 8:40 AM Subject: RE: CFC question When you say, x = this.foo, it acts as an outside call. Just do cfset goo = foo(arg)

RE: Cfhttp (now regex help needed...)

2003-07-14 Thread Kola Oyedeji
Perhaps casing issues? Is sid always lower case? Also will the string always be 32 Characters, if it’s a url is it encoded? Does this help any? ReFindNoCase('sid=([[:alnum:]]){32}',cfhttp.FileContent) Kola -Original Message- From: Ryan Mitchell [mailto:[EMAIL PROTECTED] Sent: 14

RE: Cfhttp (now regex help needed...)

2003-07-14 Thread Ben Doom
How big is the php page that's coming back? ReFind() has some character limitations (about 22k or so), so if the page is any bigger, it just fails. No error, no message, no grace -- it just doesn't find anything. Assuming the page is small enough, you should be looking for something like

Reinstall CFMX?? Yelp...

2003-07-14 Thread Candace Cottrell
*yelp* After a botched intranet relaunch last night, I found out realtively quickly that flash remoting was not working on our server. No blank page. No happy data from the cfcs. *sigh* Is there any way to get the coveted blank page without reinstalling? If this is one of those STFA

Functionality, Usability and Pricing

2003-07-14 Thread LI, Chunshen \(Don\)
I believe, the Usability thread all in all has produced some positive results thanks to almost everyone who responded, which I appreciated. Now, I'd like to go a step further. Forgive me if you perceive the topic OT. Functionality IMHO, an application or utility must be able to accomplish what

RE: Reinstall CFMX?? Yelp...

2003-07-14 Thread Mike Townend
What I tend to do is make sure that the website as the JRunScripts Virt. Dir. There and that its set to allow executables. The other thing is to re-run the connector scripts in the bin dir... Run the remove_all one, then the connector for your webserver HTH -Original Message- From:

cfimport not allowing dynamic taglib attribute

2003-07-14 Thread Jordan Thomas
Hi, It seems that CFLIB doesn't allow a dynamic taglib attribute. I keep getting a This expression must have a constant value. error. Is there some kind of work around for this? Simply so that I can specify the value in one place and then have it filter through the rest of my app. thanks Jordan

RE: Reinstall CFMX?? Yelp...

2003-07-14 Thread Candace Cottrell
Oh thank you thank you. Running the connectors worked! Candace K. Cottrell, Web Developer The Children's Medical Center One Children's Plaza Dayton, OH 45404 937-641-4293 http://www.childrensdayton.org [EMAIL PROTECTED] [EMAIL PROTECTED] 7/14/2003 11:20:30 AM What I tend to do is

RE: cfimport not allowing dynamic taglib attribute

2003-07-14 Thread Reilly, James
Jordan, This is true; The taglib attribute only accept constant value, you cannot use a variable to define the location of the custom tags. It is not very practical: if the location changes, you'll have to perform an extended search replace. (This was a cut and paste from another web

Re: Cfhttp (now regex help needed...)

2003-07-14 Thread Ryan Mitchell
Thanks, got it doing what I want now!!! On 14/7/03 16:08, Ben Doom [EMAIL PROTECTED] wrote: How big is the php page that's coming back? ReFind() has some character limitations (about 22k or so), so if the page is any bigger, it just fails. No error, no message, no grace -- it just doesn't

Re: FireFly vs DRK

2003-07-14 Thread Mike Chambers
What do you need to do? mike chambers [EMAIL PROTECTED] - Original Message - From: Kronenberger, Douglas [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July 14, 2003 10:40 AM Subject: SOT: FireFly vs DRK Quick question. Should I get FireFly or just get the DRKs. Or

RE: cfimport not allowing dynamic taglib attribute

2003-07-14 Thread Jordan Thomas
That's what I meant (cfimport) :O) thanks for the info. Seems like a given that they would have already done this. cheers Jordan -Original Message- From: Reilly, James [mailto:[EMAIL PROTECTED] Sent: Monday, 14 July 2003 5:37 PM To: CF-Talk Subject: RE: cfimport not allowing

RE: coding guidelines part 2

2003-07-14 Thread Jim Davis
Could this be because I'm running ColdFusion 5, not MX? Why would the two versions produce such drastically different results? Rich Hims There are quite a few cases where there two versions produce wildly different results from the same code. I re-did one of my Code Challenges using CF 4.5

RE: Bulk CF Encryption App

2003-07-14 Thread Mosh Teitelbaum
What's wrong with the built-in encoder? It accepts wildcards in the file specification and can recursively encode files/directories. Something like: cfencode source\*.cfm target\ /r /v 2 -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW:

Endless Loops

2003-07-14 Thread Ian Skinner
Whenever you do one of those timeless lapses of logic that creates an endless loop in your ColdFusion code, (or does this just happen to me?). Anyway, you stop the page processing from your browser with the stop button. Does the CF Applications Service ever get tired of running that endless loop

RE: Endless Loops

2003-07-14 Thread Mosh Teitelbaum
You can either stop and restart the CF service or wait until the request times out on its own (I think the timeout default is 5 minutes). -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From:

Re: Endless Loops

2003-07-14 Thread Jeff Garza
Typically, it will run until it reaches the script timeout that's set in the CF Administrator, if you don't have this set, I think it will run until you restart the CF Service. Jeff - Original Message - From: Ian Skinner [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July

(OT) RegEx editor

2003-07-14 Thread Josen Ruiseco
i would love to put some words in a form box.. say for instance... [EMAIL PROTECTED] and then the regex interprets that, and turns it into some sort of @[EMAIL PROTECTED]([EMAIL PROTECTED])%($#([EMAIL PROTECTED])*!@)#$_ thing. make sense? and maybe a wizard type thing...where it could say,

Capture Crashes BESIDES Server logs

2003-07-14 Thread Jason Miller
Hello group - I was wondering if there was some code that I can place ona few critical pages to capture any issues or crashes BESIDES server logs. Is this possible? Maybe if an element or on page load doesn't load have error or notice emailed to me? I would very much appreciate a simple, low

RE: Capture Crashes BESIDES Server logs

2003-07-14 Thread Douglas.Knudsen
look at try/catch logic via cftry and cfcatch. You can have custom errors defined too that you can catch. look at cferror. Also, look into cflog tag which can be used to make entries in the CF logs or your own logs. Doug -Original Message- From: Jason Miller [mailto:[EMAIL

Encrypt() putting single quote in string, causes SQL error when trying to SELECT

2003-07-14 Thread James Johnson
Hi, Have an interesting problem. I'm using Encrypt() to store sensitive user data in SQL Server. On some strings, the function is encrypting with a single quote as one of the chars. This is causing a SQL error when I'm trying to either enter or retrieve the data with cfquery. Has anyone run

RE: Endless Loops

2003-07-14 Thread Michael C. Jackson
Yup, it's all based on script timeouts - Generally a good reason to have that set to something sane, like 5 minutes. CF doesn't have anything evil like the old while (1) {fork;} trick you can do in Perl, does it? Or am I simply being a heathen by bringing up Perl here? :) Michael Jackson

Re: coding guidelines part 2

2003-07-14 Thread Sean A Corfield
On Monday, Jul 14, 2003, at 01:49 US/Pacific, Rich Hims wrote: On Wednesday, May 21, 2003, at 15:30 US/Pacific, Sean A Corfield wrote: See my other post (on Structs in CFMX - Java) where I timed both: Sorry, but could you link us to this? Is CFMX-Java a houseoffusion list, 'cos I couldn't

Re: Endless Loops

2003-07-14 Thread Jeff Garza
Heathen. G Jeff - Original Message - From: Michael C. Jackson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July 14, 2003 9:53 AM Subject: RE: Endless Loops Yup, it's all based on script timeouts - Generally a good reason to have that set to something sane, like 5

Digitally Signing Emails

2003-07-14 Thread DeShazo, Jonathan P. (Keane)
Hello everyone, Has anyone run into using a certificate to digitally sign emails generated by CFMAIL? Is this a built-in option in MX? We are using 4.5 now but will be migrating to MX sometime soon. Any help is greatly appreciated! Jon

RE: FireFly vs DRK

2003-07-14 Thread Jaye Morris - jayeZERO.com
Could you detail that message, I am interested to hear that. // Jaye Morris - Multimedia Applications Developer // [EMAIL PROTECTED] - www.navtrak.net // [EMAIL PROTECTED] - www.jayeZERO.com -Original Message- From: Philip Arnold [mailto:[EMAIL PROTECTED] Sent: Monday, July 14, 2003

Re: OT: CSS Layouts

2003-07-14 Thread jon hall
I'm not sure using this would be the best idea for someone just getting into css layouts, but it help get rid of a lot of the leg work. At least it isn't a copy/paste solution. http://www.fu2k.org/alex/css/layouts/3Col_NN4_FMFM.mhtml -- jon mailto:[EMAIL PROTECTED] Sunday, July 13, 2003,

RE: FireFly vs DRK

2003-07-14 Thread Candace Cottrell
Me too, coinsidering I bought it (but havent got a chance to try it out) Also, anyone know of any good tutorials? I have checked at mm.com, but those are fairly limited from what I could gather. Candace K. Cottrell, Web Developer The Children's Medical Center One Children's Plaza Dayton,

RE: FireFly vs DRK

2003-07-14 Thread Philip Arnold
The current one has some real usability problems (like not supplying the information from the datasource and such) Could you detail that message, I am interested to hear that. The problem is that when you connect to a datasource, it only makes the connectors, you have to know the name of the

RE: Encrypt() putting single quote in string, causes SQL error when trying to SELECT

2003-07-14 Thread Hassan_Arteaga_Rodríguez
U should use in every query when u try to retrieve or update or insert data into a field of type String(I mean varchar, nvarchar, etc...) the function replace(Strvalue, ','') Regards, PD: This developer mistake let to the attacker one simple SQL data injection in u Data Base. -- M. Sc. Hassan

OT: approaching clients of (former) employer

2003-07-14 Thread Gyrus
Hi, Just wondered if any of the people here a bit wiser to the ways of the industry and legal matters could give us their opinion on a slightly sticky situation that's cropped up for us. We'd really appreciate any advice. I'll say upfront that we're UK-based, so I'm not sure if any legal

Any problems with BLOBs and CF5?

2003-07-14 Thread Stacy Young
Has anyone have any issues with using BLOBs on Oracle 8i and CF5? Looking to do TIFF image retrieval from an existing DB...base64 encoding not an option. Appreciate any input... Stace AVIS IMPORTANT: --- Les informations contenues dans le present document et ses

RE: Any problems with BLOBs and CF5?

2003-07-14 Thread Stacy Young
I'm only READING the blob entries...no requirement to INSERT or UPDATE from the CF side. Cheers, Stace -Original Message- From: Stacy Young Sent: Monday, July 14, 2003 1:46 PM To: CF-Talk Subject: Any problems with BLOBs and CF5? Has anyone have any issues with using BLOBs on Oracle

Re: OT: approaching clients of (former) employer

2003-07-14 Thread Jerry Johnson
I would say not only market the clients, but aggressively market them. It sounds like you would be doing the clients a good turn. Allow them to capitalize on existing investment and even save some money (it sounds like your prices are lower). Explain the situation as part of your pitch, making

RE: OT: approaching clients of (former) employer

2003-07-14 Thread John Wilker
Yeah I would agree. Companies poach other companies clients all the time anyway, and having no documented agreements you are fine. The clients are likely being dazzled with the Why you should ditch your investnment and start over speach so you should come in with the safe time money and keep what

RE: approaching clients of (former) employer

2003-07-14 Thread Mosh Teitelbaum
So first, standard disclaimer... IANAL so take this with one helluva grain of salt. Also, I can only speak of experience in the US, a society which is quite a bit more litigious than, um, everyone else. That said, what I have to say is probably not what you want to hear. The short of it is

Re: OT: approaching clients of (former) employer

2003-07-14 Thread Jim Campbell
Go after them, and be rapacious about it. Don't tip your hand to Company B - naturally they want to dissuade you from trying to wrest their clients away, but such is the free market. Though I'm in the States, and am not familiar with UK business law, I don't imagine you can't use your

RE: FireFly vs DRK

2003-07-14 Thread Kronenberger, Douglas
Getting information in and out of a database. I need a grid control that can be filtered by criteria the user selects (Division, Office, Project, etc.). I also have a dropdown that content is dependant on what's selected in another dropdown. After figuring out I needed to write the cf script to

HTTP response header from web server

2003-07-14 Thread Jon Block
I'm working with a flash movie that is directing me to the wrong page when I click on it. I can't figure out why. The flash designer tells me there is nothing wrong with the flash file, yet things work when I use a simple text link and a tag. How do I capture the response headers from the web

correction... RE: HTTP response header from web server

2003-07-14 Thread Jon Block
Sorry, I said response headers from the web server. What I meant to say is how can I capture the request that my browser is making to the web server when I click on the flash movie. Thanks, Jon -Original Message- From: Jon Block [mailto:[EMAIL PROTECTED] Sent: Monday, July 14, 2003 3:03

MM Survey Status

2003-07-14 Thread LI, Chunshen \(Don\)
Hi, Does anyone know if MM's recent Survey is still open? Thanks. Li, Chunshen (Don) ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: FireFly vs DRK

2003-07-14 Thread Christian Cantrell
On Monday, July 14, 2003, at 01:19 PM, Candace Cottrell wrote: Also, anyone know of any good tutorials? I have checked at mm.com, but those are fairly limited from what I could gather. Have you seen Ben's article? http://www.macromedia.com/devnet/mx/coldfusion/articles/data_conn.html

CFCHART help, please

2003-07-14 Thread Kennerly, Rick H CIV
on a bar chart I have scale from 1-6. However, CFCHART persists in dividing the chart scale into 10 equal parts, so if I set the scale from/scale to to 0 6 (or 1 6) I end up with numbers like .667, 1.333, 2, 2.673 etc for the divisions. This is most unsightly. Is there a work around? Am I

Anyone using Jakarta Struts for cfmx?

2003-07-14 Thread Smith, Don , CTR , WHS/PSD
Is anyone using Jakarta Struts for CFMX and can they comment toward its use? I am looking for a published development framework that would be flexible enough for development in, plus allow our team to investigate new technologies outside of CFMX -I like what I read of Struts' integration of Java

Re: Anyone using Jakarta Struts for cfmx?

2003-07-14 Thread John Paul Ashenfelter
Having done a couple Struts projects, you need a couple of good Java folks to help wade through implementing Struts. I'd look at Fusebox (3 or 4, not MX nee Mach-II) if you're looking for a plug and play framework *for ColdFusion*. Struts has many more built in features (eg the validator) but is a

Re: FireFly vs DRK

2003-07-14 Thread Candace Cottrell
Thanks Christian, I hadn't seen that one. Candace K. Cottrell, Web Developer The Children's Medical Center One Children's Plaza Dayton, OH 45404 937-641-4293 http://www.childrensdayton.org [EMAIL PROTECTED] [EMAIL PROTECTED] 7/14/2003 3:25:50 PM On Monday, July 14, 2003, at 01:19 PM,

RE: Anyone using Jakarta Struts for cfmx?

2003-07-14 Thread Reilly, James
Here is an article on using Struts with in CFMX: http://www.macromedia.com/devnet/mx/coldfusion/articles/struts.html I have not used it with in CFMX for J2EE, but just in JRun: http://www.macromedia.com/support/jrun/ts/documents/tn18297.htm Note: The installation in this article is ok,

Re: FireFly vs DRK

2003-07-14 Thread Ryan Mitchell
Christian... When will firefly (Flash MX DCK) be available on Mac OSX?? The tech specs list only pc compatability... !! On 14/7/03 21:00, Candace Cottrell [EMAIL PROTECTED] wrote: Thanks Christian, I hadn't seen that one. Candace K. Cottrell, Web Developer The Children's Medical Center One

[Second Try] COM CFObject Question

2003-07-14 Thread Chris
Is there any way to assign a value to a function using cf4.5 and cfscript? Please see original post below. Thanks, Chris I have a quick COM/cfobject question that I hope someone could help me with. I am trying to impliment the following function: s.ClientProperty(ServerHTTPRequest) = true;

Unknown Exception Conditions

2003-07-14 Thread webmaster
I see these in the log...on pages that are running just fine and never reporting an error to an end user. Can anyone shed some light, point a direction to research this, figure out what is up? If there is an error, why does the page process and keep on trucking? CF 5 pro on Win2k server, 1 2ghz

CFMX MAIL

2003-07-14 Thread Lonny Eckert
We are looking to come up with a better solution in regards to Version 5 of CFMAIL. I've done some researching out of the archives and noted that using a different mail server and writing emails via CFFILE was a solution suggested by serveral people. I understand that CFMAIL is based on the

OT: UPS and CF

2003-07-14 Thread Bryan Stevenson
Hey All, I know we have some folks on this list that have some extensive experience integrating with UPSso hopefully I can get some info. The big one I'm unsure of at the moment is how to either get the tracking number of a package into non-UPS system database (or DB), or give the e-mail

ot: video formats streaming

2003-07-14 Thread Ihrig Paul E Cont 88 ABW/EM
just curious what you guys use to stream video? right now i have a ton of *.rm clips i have converted them to mpeg, but wound up bloating the size a bit. not sure if i should run a real server for streaming or if there is a way to let a viewer watch a mpeg with out them being able to down load

Re: CFMX MAIL

2003-07-14 Thread Doug White
Zero Byte mail still is a problem. You must build in error traps to catch these before adding them to the mail queue. As for throughput, your bandwidth is going to play a large part in transmitting that much email volume. Secondary will be the mail server capabilities.

Dynamic CFC function call

2003-07-14 Thread Cedric Villat
I'm trying to pass a function name via a URL and then call that function. I want to do something like this (Assuming mycfc has been created already): cfscript mycfc.#url.function#(); /cfscript Any idea how I can do this? I am getting an error because of the #'s. Anyone? Cedric

Re: Anyone using Jakarta Struts for cfmx?

2003-07-14 Thread John Paul Ashenfelter
Here is an article on using Struts with in CFMX: http://www.macromedia.com/devnet/mx/coldfusion/articles/struts.html Yeah, I've seen that. CFCs as a model instead of JavaBeans, EJB, etc and baking CFML business logic into CFM pages in the View instead of JSP. How is either of those things a

CFMX MAIL

2003-07-14 Thread Cedric Villat
Doug, How would one trap the zero-byte problem when generating a cfmail? Cedric Zero Byte mail still is a problem. You must build in error traps to catch these before adding them to the mail queue. As for throughput, your bandwidth is going to play a large part in transmitting that much email

  1   2   >