Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Robertson-Ravo, Neil (RX)
Not true, for small queries etc, a simple inline SQL block in a cfquery is as fast. Only in some circumstances will you see huge performance gains using an SP. This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Robertson-Ravo, Neil (RX)
No, you do not, not really. This is not how SQL Server works. You are still using inline compiled on demand SQL. This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in England, Number

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Robertson-Ravo, Neil (RX)
an addage is the an ability for other applications to use your logic when using SP. I am not sure why there seems to be a recurring issue with changing an SP when a simply F5 in QA works a charm! This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Dan Plesse
I would love to test out my pure java embedded db in CF solution against any SP from Oracle or any of the other DBs. Just give me a dataset and I will knock one right out of the park. Write to me offline and I will set you up (for free) and you can test it out yourself. No more DBA's and pia SP

(Admin) New Hardware for House of Fusion

2006-08-28 Thread Michael Dinowitz
The entire House of Fusion website has been moved over to a new machine. This is a dual CPU, 2 gig machine which should handle the increase in traffic I've been seeing. If anyone sees any problems with the site, please email me ASAP so I can make sure it's fixed. Thanks

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread James Holmes
If I have a cluster of CF boxes, can they share the same embedded DB? On 8/28/06, Dan Plesse [EMAIL PROTECTED] wrote: I would love to test out my pure java embedded db in CF solution against any SP from Oracle or any of the other DBs. Just give me a dataset and I will knock one right out of

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Robertson-Ravo, Neil (RX)
Dan, I think in all honesty the only person to use this your solution would be you. Do you really think it is going to compete in the commercial DB market? Do you think that it would ever replace the need for Oracle/MSSQL? This e-mail is from Reed Exhibitions (Oriel House, 26 The

CSS: Does anybody know how to fix this IE/CSS problem?

2006-08-28 Thread Will Tomlinson
I'm using lightbox ( http://www.dynamicdrive.com/dynamicindex4/lightbox/index.htm )and there's a problem in IE. The select menu shows up on TOP of the image viewer. I figure somethin's clashin. Is there a way to fix this? https://www947.ssldomain.com/wtomlinson/Store/productdetail.cfm?PID=165

RE: (Admin) New Hardware for House of Fusion

2006-08-28 Thread Ben Nadel
Sweeet :) ... Ben Nadel www.bennadel.com Certified Advanced ColdFusion Developer Need Help? www.bennadel.com/ask-ben/ -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Monday, August 28, 2006 5:12 AM To: CF-Talk Subject: (Admin) New

RE: Does anybody know how to fix this IE/CSS problem?

2006-08-28 Thread Sandra Clark
That is a bug in IE6 which will be fixed in IE7. But until then, there is nothing to do except arrange the items so that the image overlay is lower than the select box. I'm not seeing a problem with FF, can you be more specific. Sandra Clark ==

valuelist and variable column name

2006-08-28 Thread Gareth Hughes
I'm struggling to get ValueList to work on a column name which is a variable: cfset varColumnName = actualColumnName cfdump var=myQuery[varColumnName][1] !--- this line works --- cfset myList = valueList(myQuery[varColumnName]) !--- this line doesn't work --- I thought the square bracket

Re: valuelist and variable column name

2006-08-28 Thread srinivas ganta
Hi Hughes Try this cfset myList = valueList(myQuery.varColumnName]) Srinivas On 8/28/06, Gareth Hughes [EMAIL PROTECTED] wrote: I'm struggling to get ValueList to work on a column name which is a variable: cfset varColumnName = actualColumnName cfdump var=myQuery[varColumnName][1] !---

Re: valuelist and variable column name

2006-08-28 Thread srinivas ganta
cfset myList = valueList(evaluate(myQuery. varColumnName)) Thanks Srinivas On 8/28/06, Gareth Hughes [EMAIL PROTECTED] wrote: I'm struggling to get ValueList to work on a column name which is a variable: cfset varColumnName = actualColumnName cfdump var=myQuery[varColumnName][1] !--- this

Re: valuelist and variable column name

2006-08-28 Thread Gareth Hughes
Not sure what you're suggesting here, you've only got one square bracket. But I've tried as many combinations as I can think of with wrapping the brackets around the column name, the query and column name, with dot, without dot etc and I can't make it work. Evaluate? - Original Message

regex help

2006-08-28 Thread Doug Brown
Was wondering how I would strip out everything between a href=this,that and the otherword/a and just leave the word? Any ideas ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date

RE: valuelist and variable column name

2006-08-28 Thread Dawson, Michael
I think this is one of those instances where it just won't work. I ran across this issue a year or so back. I'm pretty sure it was with the valueList() function. M!ke -Original Message- From: Gareth Hughes [mailto:[EMAIL PROTECTED] Sent: Monday, August 28, 2006 7:13 AM To: CF-Talk

RE: regex help

2006-08-28 Thread Ben Nadel
Try this: #REReplaceNoCase( a href=this,that and the otherword/a, (a[^]*)((?!/a).)*?(/a[^]*), \2, ALL )# That uses a negative look ahead... I can't remember if that is supported in CF directly or not. If it is not, try this: #REReplaceNoCase( a

Re: valuelist and variable column name

2006-08-28 Thread Gareth Hughes
Ah, thanks Mike, I'll work around it. Srinivas, evaluate doesn't work either but thanks anyway. - Original Message - From: Dawson, Michael [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, August 28, 2006 1:18 PM Subject: RE: valuelist and variable column name I

Re: (Admin) New Hardware for House of Fusion

2006-08-28 Thread Michael Dinowitz
Only if I iron out the little issues of back and forth mail server/site caching, logging and a few other misc fun things. That and put a new, non-Google banner on the site to get editorial assistants/interns and all this while some contractor tears down the ceiling of my home office. Fun

Re: valuelist and variable column name

2006-08-28 Thread James Holmes
Why use evaluate() as a fudge for valueList() when you can just use arrayToList()? cfset myList = arrayToList(myQuery[varColumnName]) On 8/28/06, Gareth Hughes [EMAIL PROTECTED] wrote: Not sure what you're suggesting here, you've only got one square bracket. But I've tried as many

Re: regex help

2006-08-28 Thread Steve Bryant
Doug, Do you want to strip out all HTML, or just a tags? What about words that appear otside of the link? For example: another a href=this,that and the otherword/a problem Should that become: another word problem or: word If you want to strip out all html, and leave words outside the tag,

RE: Does anybody know how to fix this IE/CSS problem?

2006-08-28 Thread Bobby Hartsfield
AFAIK... you can only hide the select onclick of the lightbox trigger(s) ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Monday, August 28, 2006 6:26 AM To: CF-Talk Subject: CSS: Does

Re: valuelist and variable column name

2006-08-28 Thread Gareth Hughes
Nice. Thanks James. - Original Message - From: James Holmes [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, August 28, 2006 1:39 PM Subject: Re: valuelist and variable column name Why use evaluate() as a fudge for valueList() when you can just use arrayToList()?

multi page (wizard like) forms

2006-08-28 Thread Ali Majdzadeh
Hi everybody: I need to make a multipage form(wizard like form) that insert data into several tables(4-5 tables). I searched for a solution a lot but couldn't find an easy way that can let me make the pages with DW/CFM. I heard many people recommended useing SESSION VARRIABLES. I am a novice in

RE: multi page (wizard like) forms

2006-08-28 Thread Jeremy Bunton
Hello, There is a form to session custom tag out there somewhere that I have used, it pretty much turns every form var to a session var with the same name at post time. You could use that and then run some large queries at the end to do all the inserts from those session vars. JLB

RE: Uploading X number of photos at one time?

2006-08-28 Thread Andy Matthews
Right... When I said original size, I simply meant the image he's going to upload. He's knows a decent amount about photography so I'll just make sure he runs a Photoshop action on the images to reduce them to say 1000 or less before upload. !//-- andy matthews web developer

Re: multi page (wizard like) forms

2006-08-28 Thread srinivas ganta
Hi Benign, Alternate way to this is store the first page form variables in the second page as hidden fields and so on.if u store all the variables in session scope it limits the coldfusion prformance. Thanks Srinivas On 8/28/06, Ali Majdzadeh [EMAIL PROTECTED] wrote: Hi everybody: I

Re: regex help

2006-08-28 Thread Doug Brown
Well, what I really want to do is takethe page source and whatever the page might have in it and strip everyting but what is between the a/a tags in the page Does this help? - Original Message - From: Steve Bryant [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent:

RE: Case

2006-08-28 Thread Andy Matthews
I'm sure there's a function on www.cflib.org that would suit your needs. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Jenny Gavin-Wear

Re: regex help

2006-08-28 Thread Michael Dinowitz
ColdFusion MX supports positive and negative look aheads. Try this: #REReplaceNoCase( a href=this,that and the otherword/a, (a[^]*)((?!/a).)*?(/a[^]*), \2, ALL )# That uses a negative look ahead... I can't remember if that is supported in CF directly or not. If it is

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Teddy Payne
Well, there has been a strong aversion to my original thread and some agreement with various aspects. Let me add that I thank everyone for their comments. My usage of stored procedures is my personal style of coding. I consider stored procedures a good way to abstract my data code and enforce

CFChart Breaks in IE6

2006-08-28 Thread Mark Leder
Hi All, Using MX 7.02 with IIS6. Been using a cfchart routine to display simple data for some time now. Has always worked with no errors (JS or otherwise) in FF. Breaks in IE6 with a JS error message thrown stating an object expected. I was originally thinking that it was a Flash version

RE: regex help

2006-08-28 Thread Ben Nadel
Ok cool, then it's look behinds that are not supported. I know one of them is not supported. ... Ben Nadel www.bennadel.com Certified Advanced ColdFusion Developer Need Help? www.bennadel.com/ask-ben/ -Original Message- From: Michael Dinowitz [mailto:[EMAIL

CF Administrator

2006-08-28 Thread Peter Tanswell
Hi there I have just run the CF 7:02 upgrade and now when I try to browse to the CF Administrator I keep getting an error saying: The web site has experienced an unexpected error. File not found ?CFIDE/administrator/index.cfm And then further down in the output 23:48:06.006 coldfusion

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Zaphod Beeblebrox
Then my sql server trace logs must be lying. On 8/28/06, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: No, you do not, not really. This is not how SQL Server works. You are still using inline compiled on demand SQL. -- I took a walk around the world to ease my troubled mind I left

Re: CFChart Breaks in IE6

2006-08-28 Thread James Holmes
The problem is that CF already does wrap JS code around it, but you don't have the /cfide directory mapped for your site. You can make the mapping or copy the relevant scripts from the /cfide/scripts/ folder. Look at the source of the page and you'll see what I mean. On 8/28/06, Mark Leder

Re: multi page (wizard like) forms

2006-08-28 Thread Ali Majdzadeh
Hi: Thanks for the reply. Can you please explain it more. I am working on a cancer patient registery application and I do it for the patients. I really need some help and tutorials to do such a thing. Thanks again Benign ~|

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Robertson-Ravo, Neil (RX)
No, they are correct, you are just reading them incorrectly (in as far as what they are doing) This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Teddy Payne
Neil, I am not sure you see the overall point. Both the in-line compiled queries and stored procedures have good results. Most of the issues that I read were about maintenance of code. I am not sure telling people that they are incorrect is the best way to share technological debates, but

Re: regex help

2006-08-28 Thread Steve Bryant
Doug, This function will return an array of the link labels (the text between each a tag) in a string. cfscript function getLinkLabels(string) { var result = ArrayNew(1); var anchors = ReFindNoCase(a[^]*[^(/a)]*/a,string,1,true); var i = 0; var tag = ;

CFChart Breaks in IE6

2006-08-28 Thread Mark Leder
Hi All, Using MX 7.02 with IIS6. Been using a cfchart routine to display simple data for some time now. Has always worked with no errors (JS or otherwise) in FF. Breaks in IE6 with a JS error message thrown stating an object expected. I was originally thinking that it was a Flash version

RE: regex help

2006-08-28 Thread Dan G. Switzer, II
Doug, Was wondering how I would strip out everything between a href=this,that and the otherword/a and just leave the word? Rahul Narula, who works for Adobe on the web team, just posted this recently: http://rahulnarula.blogspot.com/2006/08/regex-treat.html (Watch out for line wrapping in

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Robertson-Ravo, Neil (RX)
I am also not sure what you mean? I am all for SP work - like you! There is no correct way, use what fits your needs and style. This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in England,

cfx_pdf and cf7?

2006-08-28 Thread Douglas Knudsen
ok, just upgraded to cf7 finally. Yeah, big corp stuff. Anyhoo, one app we have uses cfx_pdf. Somehow testing this one piece got missed in testing b4 the upgrade, oops. I can't seem to get cfx_pdf to work. I know CF7 has pdf tools now, but that may take a few days to convert. Any ideas?

Re: cfx_pdf and cf7?

2006-08-28 Thread Robertson-Ravo, Neil (RX)
Yeah, this is known I think - cf7 uses iText, as does cfx_pdf - you get errors when trying to run them together as cfx_pdf packages it's on library of iText functions. I am sure there are fixes out there - have a Google! This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,

RE: (Admin) New Hardware for House of Fusion

2006-08-28 Thread Ben Nadel
Michael, If you need a spare desk to sit at for a day or two, you are always welcome at Nylon. 212.691.1134. ... Ben Nadel www.bennadel.com Certified Advanced ColdFusion Developer Need Help? www.bennadel.com/ask-ben/ -Original Message- From: Michael Dinowitz

RE: cfx_pdf and cf7?

2006-08-28 Thread Andy Matthews
This might sound overly simplistic, but it looks like the reference to the custom tag is wrong. Seems like it's looking for CFX_CFX_PDF but you said the custom tag name was CFX_PDF. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL

Re: cfx_pdf and cf7?

2006-08-28 Thread James Holmes
I think there's also an extra CFX in the tag name there: CFX_CFX_PDF On 8/28/06, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Yeah, this is known I think - cf7 uses iText, as does cfx_pdf - you get errors when trying to run them together as cfx_pdf packages it's on library of iText

Re: cfx_pdf and cf7?

2006-08-28 Thread Douglas Knudsen
nope, no extra cfx_. The cfx tag info was transfered in via CFAdmin Archive tools form a working valid install of cfx_pdf on CFMX 6. Now, under CF7 its broke and I can't enter the required data for it in teh CFAdmin tool. CFadmin just reloads the edit tag info page, silly silly. Niel's explain

Re: Uploading X number of photos at one time?

2006-08-28 Thread Larry Lyons
I'm building an admin section for a client to manage inventory of his products. The products are higher-end so he'd like to have up to 10 photos for each item. I will need to create multiple sizes of each picture using Rick Root's Image.cfc. What might be the best way to work with anywhere from 1

Re: Uploading X number of photos at one time?

2006-08-28 Thread Aaron Rouse
What you have pasted is similar to the methods I have taken in the past for this. One could however use something like DWRUtil that comes with ajaxCFC, here is a quick example I made via one of his online ones. I did not test it out extensively, was just trying to throw out an option that I had

RE: Uploading X number of photos at one time?

2006-08-28 Thread Andy Matthews
Sorry that I didn't respond to this post. Is it possible to limit the amount of upload fields the user can add? !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original

Re: Uploading X number of photos at one time?

2006-08-28 Thread Aaron Rouse
You could reference his field counter and once it is to a certain number then disable the link that adds more rows. On 8/28/06, Andy Matthews [EMAIL PROTECTED] wrote: Sorry that I didn't respond to this post. Is it possible to limit the amount of upload fields the user can add?

Any idea why this cookie isn't working properly?

2006-08-28 Thread Andy Matthews
I have a Flash video on my company site http://icglink.com/indexNEW.cfm My boss wants it to play only once (first time viewing it), then show a play button for future visits. I thought this would be fairly straightforward but it's really giving me grief. At the top of the page: cfparam

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Teddy Payne
I must have misread somewhere. I apologize for misinterpreting the thread. Cheers, Teddy ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers,

RE: CFChart Breaks in IE6

2006-08-28 Thread Mark Leder
I've always had a mapping to /cfide in CFAdmin (for all sites), pointing to c:\cfusionmx7\wwwroot\cfide. So why would it work in the past and not now? Doing some more research uncovered a bug in 7.02 updater, but on review, that didn't solve the problem for me. Thanks, Mark -Original

Where you one put encoding hints in an Application.cfc?

2006-08-28 Thread Ian Skinner
Where would one put encoding hints like these in an Application.cfc file. !--- Set encoding hints for processing special characters. --- cfprocessingdirective pageencoding=windows-1252 / cfset setEncoding(form,windows-1252) / cfset setEncoding(url,windows-1252) / cfcontent type=text/html;

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Jochem van Dieten
Dan Plesse wrote: I would love to test out my pure java embedded db in CF solution against any SP from Oracle or any of the other DBs. I have a hard time believing that it can scale and perform: http://db.lcs.mit.edu/madden/html/javapaper.pdf Perhaps you can elaborate on the design of your

RE: Where you one put encoding hints in an Application.cfc?

2006-08-28 Thread Andy Matthews
Why not put it in onApplicationStart? !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: Where you one put encoding hints in an Application.cfc?

2006-08-28 Thread Ian Skinner
Why not put it in onApplicationStart? Well, I'm not sure why not, which is why I asked the question. My thinking was that these encoding hints need to run every request, they aren't something that would be automatically remembered are they? Thus if they where in the application start, they

PDF creation: CFDocument, iText; CF or Java libs?

2006-08-28 Thread Kris Jones
Hi folks, I've been trying to refactor a long-running procedure that creates PDFs using CFDocument, then a 3rd-party tool (via CFExecute) to merge the PDFs to a single file in a specific order. After seeing discussion on this list regarding string manipulation being so much faster using direct

RE: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Dave Watts
I would love to test out my pure java embedded db in CF solution against any SP from Oracle or any of the other DBs. Just give me a dataset and I will knock one right out of the park. Write to me offline and I will set you up (for free) and you can test it out yourself. No more DBA's

Re: Where you one put encoding hints in an Application.cfc?

2006-08-28 Thread Paul Hastings
Ian Skinner wrote: Where would one put encoding hints like these in an Application.cfc file. !--- Set encoding hints for processing special characters. --- cfprocessingdirective pageencoding=windows-1252 / you can't use cfprocessingdirective in application.cfm i guess application.cfc. it's

Re: PDF creation: CFDocument, iText; CF or Java libs?

2006-08-28 Thread Paul Hastings
Kris Jones wrote: Since I know nothing about iText, I don't really want to go down that road unless I know that it will be worth it (performance-wise). I know there are few iText gurus on the list, maybe someone has some experience with this? the only way you can *know* which one is faster is

RE: cfx_pdf and cf7?

2006-08-28 Thread Ken Ferguson
Hmmm, did you put the expected jars in the lib directory where you took out the others? I've never used cfx_pdf, so I'm not really sure what's going on with it. We use itext directly in a bunch of places and had to go back and refactor the jars when we upgraded to 7. Who was the author of the

supported Locales workaround?

2006-08-28 Thread William Bowen
Hi all, I am looking for a possible way to work around an unsupported language in CFMX 6.1. I have a request from an internal customer to create a Polish language site, but unfortunatly Polish is not on the supportLocales list. Is there a way I can make this work? Thanks! will

Re: PDF creation: CFDocument, iText; CF or Java libs?

2006-08-28 Thread Kris Jones
Thanks Paul. I believe that the bottleneck in the procedure I'm working on is the CFDocument call, rather than the 3rd-party split/merge program we're calling. I'm happy to look into iText, just hoping that others have some experiential knowledge about performance gains. Cheers, Kris On

Re: cfx_pdf and cf7?

2006-08-28 Thread Robertson-Ravo, Neil (RX)
Yeah, that was it! This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It is for the

RE: Where you one put encoding hints in an Application.cfc?

2006-08-28 Thread Ian Skinner
quote Why not just put it in the application constructor (the space in the .cfc component tags outside of functions)... The Application.cfc get created every page call (as far as I know). Except the cfcontent tag, you probably would want to put after most of the pre-page-processing as you are

Re: Case

2006-08-28 Thread Richard Dillman
could always wrap some CSS around it but it has to be lower case to begin with for CSS to work. span style=text-transform:capitalize#LCASE(FNAME)# /span im sure there are other things in UDF's out there but it always winds up in a discussion of McDonald and such type of mixed case names. And to

RE: Uploading X number of photos at one time?

2006-08-28 Thread Ray Champagne
Andy, check out that blog link someone threw in this AM. You can limit it using that script without any modifications. While I like this solution, I think the one posted earlier is much slicker. Is slicker a word? Anyways, check it out before you try modifying this one to do what you need.

Re: cfx_pdf and cf7?

2006-08-28 Thread Douglas Knudsen
cfx_pdf is by easel2. I dropped the self-contained CFX_PDF.jar file in /servers/lib so all my CF instances can see it, and they do. The tag registers fine, just get this darn null error. Odd thing is in the System Information screen in teh CFAdmin tool, I see two copies of everything in

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Dan Plesse
It should. Why don't you try it and find out for yourself? On 8/28/06, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Dan, I think in all honesty the only person to use this your solution would be you. Do you really think it is going to compete in the commercial DB market? Do you think

RE: CFChart Breaks in IE6

2006-08-28 Thread Mark Leder
Here's the cfchart Flash widget generated inside FF 1.56. I've changed nothing in months, why is it now broken in IE? OBJECT classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354 codebase=http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,2 ,0

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Robertson-Ravo, Neil (RX)
Nah, I will place my faith in Bill and Co. :-) This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be

RE: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Russ
I really doubt that your solution can outperform the DBA vendors. There's a lot of engineering that goes into those solutions, and it's usually not something that one man can develop. Even if your solution performs better for small datasets, can it handle working with large ones? Can your

RE: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Kevin Aebig
Not to mention that there's strength in numbers. Why would someone want to switch when they can find numerous online resources to issues / problems they're having with more widely adopted DBs? How can they be sure that you'll continue to support / upgrade this solution? I know that I'd feel

Changes to .cfm files showing up on duplicate/test site cross multiple IIS Sites/Directories. Critical for us!

2006-08-28 Thread millerj
Hello. I'm making a change in a production site and it's showing up in test site even though they are 2 sites, 2 sets of files and IIS has them point to 2 different ips. On server they are 2 completely different folders within wwwroot. let's call one cache.com and the other is beta.cache.com

CFLocation to an exe on another server

2006-08-28 Thread Ben Doom
Here's the quandary: We're trying to redirect to a downloadable executable on another server. If I type the address directly into the address bar of IE/Win, it works fine. If I CFLocation to the file in Firefox, it works fine. If I CFLocation to the file in IE/Win, it drops the .exe

RE: CFChart Breaks in IE6

2006-08-28 Thread Mark Leder
FYI - there is no GraphData.cfm within the CFIDE directory in CFMX7.02, at least not on mine. Thanks, Mark -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Monday, August 28, 2006 2:05 PM To: CF-Talk Subject: RE: CFChart Breaks in IE6 Here's the cfchart Flash widget

Coldfusion and Java

2006-08-28 Thread Mullai Subbiah
I am trying to call a user-defined Java method. I am using CFMX7 and Java 1.4.2 One of the method within the class when called gets executed by Coldfusion. But another method does not seem to be seen by coldfusion. Every time I try to call the method I get a method not found error. The

Re: supported Locales workaround?

2006-08-28 Thread Paul Hastings
William Bowen wrote: Hi all, I am looking for a possible way to work around an unsupported language in CFMX 6.1. I have a request from an internal customer to create a Polish language site, but unfortunatly Polish is not on the supportLocales list. Is there a way I can make this work?

Re: PDF creation: CFDocument, iText; CF or Java libs?

2006-08-28 Thread Paul Hastings
Kris Jones wrote: Thanks Paul. I believe that the bottleneck in the procedure I'm working on is the CFDocument call, rather than the 3rd-party split/merge program we're calling. I'm happy to look into iText, just hoping that others have some experiential knowledge about performance gains.

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Dan Plesse
YES if you use the webserver object Its embedded but it has remote connectivity. If you start the webserver inside a jws container you might also get object persistence benefits. I had trouble adding the driver at runtime, so I take this to mean that the context might be off the CF map. Maybe

RE: Coldfusion and Java

2006-08-28 Thread Richard Kroll
This is a shot in the dark, but I know I've had problems with I did not cast things for java. Did you try JavaCast() on your passed arguments? Rich Kroll -Original Message- From: Mullai Subbiah [mailto:[EMAIL PROTECTED] Sent: Monday, August 28, 2006 2:56 PM To: CF-Talk Subject:

Re: Changes to .cfm files showing up on duplicate/test site cross multiple IIS Sites/Directories. Critical for us!

2006-08-28 Thread Barney Boisvert
In your caching settings in the cfadmin there is a setting for multi-homed servers. By default it's configured for servers that have a single webroot, but if you've got multiple web roots sharing your CF server, you need to disable the option. cheers, barneyb On 8/28/06, millerj @ etcnj. com

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Jochem van Dieten
Kevin Aebig wrote: Not to mention that there's strength in numbers. Why would someone want to switch when they can find numerous online resources to issues / problems they're having with more widely adopted DBs? How can they be sure that you'll continue to support / upgrade this solution?

Re: PDF creation: CFDocument, iText; CF or Java libs?

2006-08-28 Thread Dan Plesse
I have a few examples on java coldfusion list on yahoo called coldfusion java hacks. http://groups.yahoo.com/group/java_coldfusion_hacks/ There is no action on that list, just takers of my hard won work with CF and java. On 8/28/06, Kris Jones [EMAIL PROTECTED] wrote: Thanks Paul. I believe

RE: Coldfusion and Java

2006-08-28 Thread Russ
This is most likely happening because java can't find a method that matches the signature. If you're using cf 7, you will need to use JavaCast to cast the arguments to the proper type. Russ -Original Message- From: Mullai Subbiah [mailto:[EMAIL PROTECTED] Sent: Monday, August 28,

Re: Top 100 ColdFusion Programmers

2006-08-28 Thread Denny Valliant
On 8/27/06, Phillip Senn [EMAIL PROTECTED] wrote: Denny, Where is your blog? I think I'll just use blogger beta, but I haven't added anything yet. Been sorta wishy-washy on what direction I want to go, want to be able to move my posts if I want, etc... I'd use blogCFC if I had a personal CF

Re: CFLocation to an exe on another server

2006-08-28 Thread Paul Giesenhagen
This may sound like a bad solution .. (but it's all I could come up with quickly). Redirect to server 2 to a file that redirects locally to the exe and see if that works (it most likely won't if it is not working already). Paul Giesenhagen QuillDesign 417-885-1375 http://www.quilldesign.com

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Denny Valliant
Things to consider with stored procs: Plus: More logic is in the DB than in CF Con: More logic is in the DB than in CF If you want to switch Data providers, you have a major task- CF and the DB are hard-linked sorta, if that makes sense. And I think that there is a beliefe that stored

Re: CFLocation to an exe on another server

2006-08-28 Thread Ben Doom
Here's the quandary: We're trying to redirect to a downloadable executable on another server. If I type the address directly into the address bar of IE/Win, it works fine. If I CFLocation to the file in Firefox, it works fine. If I CFLocation to the file in IE/Win, it drops the .exe

RE: CFLocation to an exe on another server

2006-08-28 Thread loathe
Use javascript? Use the meta tag? Use the Java page context thing (I can't remember it off the top of my head should be easy to find if you google it). -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED] Sent: Monday, August 28, 2006 3:15 PM To: CF-Talk Subject: Re:

RE: OT: SVN, Ant, CruiseControl, and deployment

2006-08-28 Thread Richard Kroll
Thanks for the feedback. I'm going to start next week working with a few spare servers we have at the moment. I'm going to try to get the process set up across them to replicate our environment and see what I can come up with. I'll provide some feedback once I get everything set up. Rich Kroll

Re: Does anybody know how to fix this IE/CSS problem?

2006-08-28 Thread Will Tomlinson
That is a bug in IE6 which will be fixed in IE7. But until then, there is nothing to do except arrange the items so that the image overlay is lower than the select box. YUCK! Not what I wanted to hear but oh well. I hate IE! The problem with the popup in FF is the black overlay background

RE: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Dave Watts
I find it hard to believe that all this stuff is free and open and no one has tested this before. For the same effect, you could just use PointBase, which ships with JRun/CF. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber

RE: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Dave Watts
It should. Why don't you try it and find out for yourself? I can only speak for myself, but I don't use Oracle and MS SQL Server because they're faster. I use them because they're reliable, can be secured and managed from outside of my application, can support multiple separate applications, and

RE: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread loathe
This is an important point that seems to have been missed in this thread. From the perspective of creating secure applications you can do much more to limit access to your data through stored procedures and actually using the access control systems that are built into the RDBMS of your choice.

RE: Uploading X number of photos at one time?

2006-08-28 Thread Bobby Hartsfield
Yeah, just set a maxUploads variable to the number you want and wrap everything inside the function in an if statement. Something like... var maxUploads = 3; if (document.imgform.fldCount.value == maxUploads) { alert('already at the max number'); } else { //ALL THE REST OF THE CODE HERE }

  1   2   >