Re: Memory leak detection

2008-02-26 Thread Richard Steele
Wouldn't I have to do load testing using the Development server in order to see this? If so, what load testing software do you recommend? We're using CF8 Standard on our production server. Can I add a remote server (my production server at my ISP) to my local CF8 Developer or even a local

Re: Memory leak detection

2008-02-26 Thread Richard Steele
Hey Mark, Thanks for the link. If it comes down to it, who do you recommend to hire as an expert that can analyze our code to find the problem? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to

Re: Parsing Selected Parts of a CSV file

2008-02-26 Thread C S
I don't think it's necessary for the loop to work, but at the time I think I ended up putting listFix() on everything coming out of the CSV I was parsing. Taking it out doesn't change anything. That is not the only issue. Is each line in your CSV really delimited by a tab (9) or is some

Manually inserting Ajax script calls

2008-02-26 Thread Mark Leder
Been playing around with some of the new CF8 Ajax tools. I notice that when a tool is placed on a page (in this case cftooltip), the scripts needed to run the tooltip are inserted automatically at runtime in the head of the document. Since I have a CMS where I would want to control the

InsertStruct

2008-02-26 Thread Jenny Gavin-Wear
I can't find an example of the correct syntax for the AllowOverWrite option, does anyone have an example, please? Jenny cfset Response = StructNew() cfloop list=#CFHTTP.FileContent# index=line delimiters=#chr(13)# cfset line = Trim( line ) cfset

RE: Google Map API

2008-02-26 Thread Adrian Lynch
Yup, but would passing the lat and long the wrong way be causing the marker to be placed somewhere else? -Original Message- From: Jenny Gavin-Wear Sent: 26 February 2008 13:30 To: CF-Talk Subject: RE: Google Map API Thanks Adrian, If you try it, you can see the map is generated, it's

RE: InsertStruct

2008-02-26 Thread Adrian Lynch
Just a guess, but I think AllowOverwrite will be a boolean value. Adrian -Original Message- From: Jenny Gavin-Wear Sent: 26 February 2008 13:25 To: CF-Talk Subject: InsertStruct I can't find an example of the correct syntax for the AllowOverWrite option, does anyone have an example,

Re: Parsing Selected Parts of a CSV file

2008-02-26 Thread C S
That is not the only issue. Is each line in your CSV really delimited by a tab (9) or is some combination of line feed/carriage return? Darn. Seems all of my back logged responses are appearing at once ;) ~| Adobe®

Re: InsertStruct

2008-02-26 Thread C S
I can't find an example of the correct syntax for the AllowOverWrite option, does anyone have an example, please? I can't find an example of the correct syntax for the AllowOverWrite option, does anyone have an example, please? Note, using false causes CF to throw an exception if the key already

catch jquery validation NEQ

2008-02-26 Thread Paul Ihrig
hey guys i need some help understanding cftry/catch and how i could do server side check for equality as well as js check using jquery. my cfif/cfabort statement work to stop an insertion of duplicate id. but its not elegant. also the cftry catch / throw error never worked. so here is some

RE: InsertStruct

2008-02-26 Thread Jenny Gavin-Wear
ignore please .. sorted -Original Message- From: Jenny Gavin-Wear [mailto:[EMAIL PROTECTED] Sent: 26 February 2008 13:25 To: CF-Talk Subject: InsertStruct I can't find an example of the correct syntax for the AllowOverWrite option, does anyone have an example, please? Jenny

RE: Google Map API

2008-02-26 Thread Jenny Gavin-Wear
Thanks Adrian, If you try it, you can see the map is generated, it's just the placing of the marker that's the issue. -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: 24 February 2008 10:55 To: CF-Talk Subject: RE: Google Map API After a quick scan, and maybe not

Re: Memory leak detection

2008-02-26 Thread Cutter (CFRelated)
Talk to the guys at Alagad. Mike is a wizard in these respects. http://www.alagad.com Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Richard Steele wrote: Hey Mark, Thanks for the

Re: catch jquery validation NEQ

2008-02-26 Thread Cutter (CFRelated)
You don't have any code within your cftry to error and be caught. I think what you are really looking for here is to encase your entire call in a cftry, and in your conditional you would use a cfthrow with a custom error type. As far as your JQuery validation goes, you didn't include the code

Re: open source ColdFusion UML CASE tool

2008-02-26 Thread Richard White
In the latest update, the Stub Generator can also generate components based on an XMI data file. XMI is a standard XML format for describing UML diagrams. I have only tested this with Poseidon UML, but as far as I know any UML tool that can export to XMI should work. Note that the

trouble with cfExchange

2008-02-26 Thread Richard Meredith-Hardy
I'm really struggling to get into MSEX on Win server 2003 SBS SP1 I can get into OWA by HTTP in a browser either in my user account, or the account CF8 is running in. IIS Web service extensions are enabled - I started off with just the ones suggested in the instructions, then I activated all of

Re: catch jquery validation NEQ

2008-02-26 Thread Paul Ihrig
cfquery name=isSpecIn datasource=#request.dsn# SELECT COUNT(*) AS testCount FROM prodSpecs WHERE prodPartNum = #FORM.prodPartNum# /cfquery i just want to check to make sure specs_partnum is not isSpecIn.testCount GTE 1 script $().ready(function() { // validate signup form

Re: trouble with cfExchange

2008-02-26 Thread Tom Chiverton
On Tuesday 26 Feb 2008, Richard Meredith-Hardy wrote: cfexchangeConnection action = open username = *** password = ** server = 192.168.0.3/exchange connection = conn1 protocol = http Server here should be just the host name or IP address. -- Tom Chiverton Helping to globally bully

Re: Parsing Selected Parts of a CSV file

2008-02-26 Thread Steve Good
yeah, I had noticed that my delimiters were not correct. I changed them back to chr(10) and chr(13). I still am having issues with null values. Going to just keep plugging away. ~Steve http://goodcf.instantspot.com/blog C S wrote: I don't think it's necessary for the loop to work, but at

Searching for keywords from an entered list...

2008-02-26 Thread Les Mizzell
I'm wanting to modify a site search (field in SQL Server database) so that in a single input field, a user could enter: 1. red 2. red, blue, green, brown 3. red green blue brown and in return, get all results that contained one/some/all of the entered terms. In theory, what would be the

Re: Parsing Selected Parts of a CSV file

2008-02-26 Thread C S
yeah, I had noticed that my delimiters were not correct. I changed them back to chr(10) and chr(13). I still am having issues with null values. Going to just keep plugging away. Since you are using CF8, I would try Azadi's suggestion. But I would also output the #record# value, before and

RE: trouble with cfExchange

2008-02-26 Thread Richard Meredith-Hardy
Tom Yes, I tried that (if you look further down my original mail) but on the basis that I can only get at my exchange in a browser at http://192.168.0.3/exchange or http://t8s/exchange and http://192.168.0.3 or http://t8s takes me to the SBS home page, should I change dns/iis so 192.168.0.3

Re: Searching for keywords from an entered list...

2008-02-26 Thread Sonny Savage
!--- Convert to Comma List --- cfset search_value = red red, blue, green, brown red green blue brown cfset search_value = reReplace(search_value, \W+, ,, all) !--- In Your Query --- column_name IN (cfqueryparam value=#lcv# cfsqltype=cf_sql_varchar list=true) On Tue, Feb 26, 2008 at 11:38 AM,

Re: Searching for keywords from an entered list...

2008-02-26 Thread Raymond Camden
You can treat the search as a list w/ 2 delimiters (, and ). This then gives you a nice list. I'm not sure how you want to handle OR versus AND. If you have another form field Match All or Match Any then you can check that, and simply loop over your list and use either an AND or an OR. On Tue,

ColdFusion companies in Vermont

2008-02-26 Thread Mosh Teitelbaum
All: Does anyone know of any companies in Vermont (preferably around Burlington) that provide ColdFusion development and support? Maybe I just wasn't searching with the right terms but Google came up pretty short. Sorry for the slightly OT post. TIA -- Mosh Teitelbaum evoch, LLC

RE: Searching for keywords from an entered list...

2008-02-26 Thread Richard Meredith-Hardy
I do this in a 2 stage thing as part of an AJAX lookup this is the CF code, #SUGGEST_LOOKUP_STR# is the input string OUTLOOKNAME is a field in the DB made of firstName Surname, CompanyName (or variations thereof) like in Outlook. Result if you type in t returns all items with any word starting in

Adobe, please improve FckEditor integration w/ Cold Fusion 8

2008-02-26 Thread Don L
Here I have three problems with FckEditor in the context of CF8. a) Reliability problem For instance, cross browser problem, it disables FF2's built-in spell checker (are you nuts?). For another instance, for a same app, sometimes the FckEditor loads while other time not. Possible culprit

RE: Adobe, please improve FckEditor integration w/ Cold Fusion 8

2008-02-26 Thread Brad Wood
Have you submitted an enhancement or bug request to www.adobe.com/go/wish/ yet? ~Brad -Original Message- From: Don L [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 26, 2008 11:11 AM To: CF-Talk Subject: Adobe, please improve FckEditor integration w/ Cold Fusion 8 Here I have three

Re: Adobe, please improve FckEditor integration w/ Cold Fusion 8

2008-02-26 Thread Don L
Brad, Thanks for the note. I haven't. And I remember, many years ago, still Allair days probably, in my wish list, I submitted, to the effect of if Cold Fusion could allow developers to develop some basic Desktop app how nice that would be... if they still have a database to look it up,

RE: Adobe, please improve FckEditor integration w/ Cold Fusion 8

2008-02-26 Thread Brad Wood
LOL. You should have just patented the idea back then and ran with it. You would have beat Adobe to the punch. ~Brad -Original Message- From: Don L [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 26, 2008 11:37 AM To: CF-Talk Subject: Re: Adobe, please improve FckEditor integration

Re: Adobe, please improve FckEditor integration w/ Cold Fusion 8

2008-02-26 Thread Chris Hayes
Hi Don http://www.fckeditor.net/roadmap some things already in the pipeline. CF8's integration of the editor is somewhat minimal as the core FCK code is really simple to embed on a page without the use of a CF tag, as are many of the alternative editors. Considering how I can't keep pace

Adding a logo to a MS Word doc - possible?

2008-02-26 Thread Mike Kear
I'm outputting a report from CF7 to a MSWord document, using CFContent, but I need to include a logo graphic. How can i do that? When i look at the document in a browser, it includes the logo. When i save the document instead, then later on look at the document in MS Word, the logo is missing.

cfdocument and load balancing.

2008-02-26 Thread Jeremy Rottman
We recently updated our infrastructure to include HW loadbalacing and a linux based firewall. With this new change, came a basket full of issues. One issue that is most pressing, is when attempting to create a pdf via cfdocument that has images with in the pdf, cfdocument times out every time.

Coldfusion 8 and Tomcat 5 JSP problems

2008-02-26 Thread Bosky, Dave
I'm setting up a new server with Apache 2, Coldfusion 8 for CFM files and Tomcat 5 for Java/JSP files. Coldfusion keeps intercepting all the JSP file requests instead of Tomcat, trying to process them and throwing a license exception error. How can I stop Coldfusion doing this? Thanks, Dave

Re: Adobe, please improve FckEditor integration w/ Cold Fusion 8

2008-02-26 Thread Don L
Hi Chris, On your some things already in the pipeline., I don't get it. I simply want a lean (hey, not mean :) text editor that would work well with cf8, core editing features, Bold, List (ordered unordered), TextColor, Link, that's it, On rolling out my own, I got B and L working for IE (but

Re: Adobe, please improve FckEditor integration w/ Cold Fusion 8

2008-02-26 Thread Don L
Brad, I can't beat anybody, it takes many factors... LOL. You should have just patented the idea back then and ran with it. You would have beat Adobe to the punch. ~Brad ~| Adobe® ColdFusion® 8 software 8 is the most

Re: Coldfusion 8 and Tomcat 5 JSP problems

2008-02-26 Thread Barney Boisvert
Remove the JSP mapping in web.xml, so the webapp will inherit the one that tomcat provides globally. cheers, barneyb On Tue, Feb 26, 2008 at 10:44 AM, Bosky, Dave [EMAIL PROTECTED] wrote: I'm setting up a new server with Apache 2, Coldfusion 8 for CFM files and Tomcat 5 for Java/JSP files.

RE: Searching for keywords from an entered list...

2008-02-26 Thread Dennis Powers
a site search (field in SQL Server database) Are you using Verity to index the database, the Free-text search feature in SQL to index a collection or just a standard SQL query? In one of our file archives we use SQL's search. We created a collection of all the fields (description, author,

Re: Searching for keywords from an entered list...

2008-02-26 Thread Les Mizzell
!--- Convert to Comma List --- cfset search_value = red red, blue, green, brown red green blue brown cfset search_value = reReplace(search_value, \W+, ,, all) !--- In Your Query --- column_name IN (cfqueryparam value=#lcv# cfsqltype=cf_sql_varchar list=true) This should work - until I

A specific FckEditor and/or CF problem

2008-02-26 Thread Don L
Have you come cross something similar? CF code in question cfoutput query=myQRY div id=show#currentrow# bind={fancyExtra#currentrow#}#dataset[currentrow]/div div id=fancyExtra#currentrow#.../div /cfoutput FckEditor in question cfrichtexteditor.js (Line 63 -- 71) var _14=function(){

Re: Adding a logo to a MS Word doc - possible?

2008-02-26 Thread Gerald Guido
A while back we wanted QD way to imbed an image into a spread sheet. We imbeded the image within Excel and saved it as XML. This encoded the image into Base64 or something like that. Then we used the resulting XML to generate the spread sheet. You can use the same process with a Word document.

Re: cfdocument and load balancing.

2008-02-26 Thread Ryan Stille
Jeremy Rottman wrote: We recently updated our infrastructure to include HW loadbalacing and a linux based firewall. With this new change, came a basket full of issues. One issue that is most pressing, is when attempting to create a pdf via cfdocument that has images with in the pdf,

Re: reinit application variables

2008-02-26 Thread Justin T
How do you reset application variables? I am using application.cfc to set some application variables and cant figure out how to reset them so they reload with different data. Thanks, Chad OnApplicationStart() doesn't seem to always work for me. I don't think it clears the scopecache

QofQ and SQL TOP statements...

2008-02-26 Thread Che Vilnonis
QofQ and SQL TOP statements... can these be used together? If so, how? I keep getting an error that looks like this: Query Of Queries syntax error. Encountered (. Incorrect Select Statement, Expecting a 'FROM', but encountered '(' instead, A select statement should have a 'FROM' construct.

RE: QofQ and SQL TOP statements...

2008-02-26 Thread Mark Kruger
Che, TOP is T-SQL specific I believe. You would need to use it in your SQL query (to the Db) then use Q of Q of to join 1 or more queries together. If what you are trying to do is combine 2 queries on the DB - consider UNION -Mark -Original Message- From: Che Vilnonis

RE: QofQ and SQL TOP statements...

2008-02-26 Thread Brad Wood
No, use cfquery maxrows=5 ~Brad -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 26, 2008 2:32 PM To: CF-Talk Subject: QofQ and SQL TOP statements... QofQ and SQL TOP statements... can these be used together? If so, how? I keep getting an error

Re: QofQ and SQL TOP statements...

2008-02-26 Thread Rick Root
no TOP in QoQ. Use cfquery maxrows=10 ... Rick On 2/26/08, Che Vilnonis [EMAIL PROTECTED] wrote: QofQ and SQL TOP statements... can these be used together? If so, how? I keep getting an error that looks like this: Query Of Queries syntax error. Encountered (. Incorrect Select Statement,

RE: QofQ and SQL TOP statements...

2008-02-26 Thread Che Vilnonis
Thanks all. That is what I thought... -Original Message- From: Mark Kruger [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 26, 2008 3:34 PM To: CF-Talk Subject: RE: QofQ and SQL TOP statements... Che, TOP is T-SQL specific I believe. You would need to use it in your SQL query (to

RE: QofQ and SQL TOP statements...

2008-02-26 Thread Bobby Hartsfield
Can't use it in a QoQ. Use maxrows=(N) or use bracket notation to grab the top (N) rows of the initial query Myquery['myColumn'][1] Myquery['myColumn'][2] Myquery['myColumn'][3] Etc... ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Che

RE: Adding a logo to a MS Word doc - possible?

2008-02-26 Thread Rick Sanders
You can save output the document as HTML, then export it to word by assigning the http header as a .doc. Just make sure the image link points to a url (http://www.mudomain.com/images/image.jpg) and it'll export to Word no problem. I do it all the time. Rick Sanders -Original Message-

MXUnit - Release Candidate No.1 Now Available

2008-02-26 Thread Bill Shelton
A long time in the making, los hombres at MXUnit.org (http://mxunit.org/) are proud to announce the first release candidate of their Unit Test Framework *and* Eclipse Plugin for ColdFusion Developers. Features include a simple-to-use extensible framework that allows developers to spend more

Re: ColdFusion based Open Source WebMail

2008-02-26 Thread Tom Mollerus
I know this is well over a year after the original post, but I have an modifiable-source CF webmail client for sale, with a really good interface. I hope this helps anyone who is still looking. http://www.mollerus.net/development/webmail/webmail.cfm Hi, I'm looking for an open source webmail

RE: reinit application variables

2008-02-26 Thread Dave Watts
OnApplicationStart() doesn't seem to always work for me. I don't think it clears the scopecache or some other settings. I want something that will basically restart the server! The onApplicationStart function doesn't clear the scope cache or anything else by default. It does whatever you

cfloop question

2008-02-26 Thread Steve Kahn
I need to send a personalized letter to a list of recipients. Is there a way to set it up so it can also insert the corresponding 'first name' variable also? cfset recipients_email=[EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED] cfloop list=#recipients_email# index=recipient

RE: cfloop question

2008-02-26 Thread Brad Wood
Try creating and looping over a query object instead of a list. Then you can have a column in each record for the first name, last name, e-mail, and whatever else you want. The Cfmail tag actually has a query attribute built in for that purpose. Then you output the variables just like you

test or ntext field and looking in a list...

2008-02-26 Thread Les Mizzell
If the column in question was a text or ntext field, how would best to handle this? column_name IN (cfqueryparam value=#myLIST# cfsqltype=cf_sql_varchar list=true) ~| Adobe® ColdFusion® 8 software 8 is the most

RE: cfloop question

2008-02-26 Thread Steve Kahn
Thanks Brad, I'll see if I can find an example of what you suggested. Best Steve -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 26, 2008 8:02 PM To: CF-Talk Subject: RE: cfloop question Try creating and looping over a query object instead of a

Re: Adobe, please improve FckEditor integration w/ Cold Fusion 8

2008-02-26 Thread Hemant Khandelwal
You may want to visit Rakshith's blog on http://rakshith.net/blog/ He has got some interesting posts on FCKEditor with CF ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: open source ColdFusion UML CASE tool

2008-02-26 Thread Larry Lyons
ArgoUML or Poseidon are two. there are quite a few, just do a google search on it. hi larry thanks for this. do you also know of any good opensource UML case tools? thanks richard ~| Adobe® ColdFusion® 8 software 8 is the

How do I change my localhost setting in CF 8?

2008-02-26 Thread Rick Faircloth
Seems simple enough. but I can't make it happen. I wanted to install IIS to my laptop, since that is what I always use, but my laptop won't install it. Rather than re-install the entire OS, etc., I thought I'd try using the built-in web server of CF 8. I assume I can change the default webroot

Re: Adobe, please improve FckEditor integration w/ Cold Fusion 8

2008-02-26 Thread Don L
You may want to visit Rakshith's blog on http://rakshith.net/blog/ He has got some interesting posts on FCKEditor with CF The FukEditor related blogs were irrelevant to the question in hand. ~| Adobe® ColdFusion® 8 software

RE: How do I change my localhost setting in CF 8?

2008-02-26 Thread Dave Watts
Subject: How do I change my localhost setting in CF 8? Seems simple enough. but I can't make it happen. I wanted to install IIS to my laptop, since that is what I always use, but my laptop won't install it. Rather than re-install the entire OS, etc., I thought I'd try using the

Add the third column into the table after the cfloop is over using cold Fusion and css

2008-02-26 Thread erik tom
In my form i am outputing the buttons in the column format. What i need is sometimes before or after insert the caledar in between those 2 columns. Whatever i do is executing withing a loop. so I can not get 2 columns of rows (separately can) and the calendar in between. Please help this is

Re: auto-fill forms, a B2B application

2008-02-26 Thread James Holmes
CFHTTP can do all of this. On Wed, Feb 27, 2008 at 3:19 PM, Gilbert Midonnet [EMAIL PROTECTED] wrote: I've had an interesting request. I need to be able to auto-fill forms on a third-party's server. Yes we have permission and no, there is no XML alternative. We need to push data to

auto-fill forms, a B2B application

2008-02-26 Thread Gilbert Midonnet
I've had an interesting request. I need to be able to auto-fill forms on a third-party's server. Yes we have permission and no, there is no XML alternative. We need to push data to another server. This is a B2B application. The client company currently gets data from their customers. They

Guru Disputes?

2008-02-26 Thread William Seiter
I was wondering if anyone here has had to deal with a Guru Dispute (as the 'guru')? I was wondering if anyone has any insights on how to resolve the mediation in the guru's favor (the one providing services)? William -- William E. Seiter Have you ever read a book that changed your life? Go

RE: Guru Disputes?

2008-02-26 Thread William Seiter
From Guru.com Client and Contractor don't agree on something. In my case, the money has been in Guru's escrow account and the client has been non-responsive since I finished the project. Now the Client wants all of their money back from the Escrow account. William -- William E. Seiter Have

Re: Guru Disputes?

2008-02-26 Thread James Holmes
I think at this point you need a lawyer to go over the contract under which you did the work. On Wed, Feb 27, 2008 at 11:46 AM, William Seiter [EMAIL PROTECTED] wrote: From Guru.com Client and Contractor don't agree on something. In my case, the money has been in Guru's escrow account and

Re: Guru Disputes?

2008-02-26 Thread Jeffry Houser
I think if you set this up through guru.com then you're bound by their own terms and conditions, which probably call for some form of pre-legal-console arbitration. Talking to a lawyer won't hurt. James Holmes wrote: I think at this point you need a lawyer to go over the contract under