Re: About connection Pooling and Threading in Coldfusion

2007-12-13 Thread Tom Chiverton
On Thursday 13 Dec 2007, hussain shaikh wrote: If we include a query in our cfm page and execute it, does it create a connection everytime the cfm page is accessed or establishes the connection Read the docs on administering CF on LiveDocs, it talks at length about the 'maintain connections'

Re: cfdocument PDF creation - formatting issues

2007-12-13 Thread Azadi Saryev
afaik, it is a known bug, but it manifests itself only with some font/fontsize combinations. try using a different (probably larger) font size. --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Justin Brown wrote: Didn't work. Replaced test test test test emtest/em test test

RE: What do I have to do to get toolbars to show in a cftextarea?

2007-12-13 Thread Rakshith N
The code looks fine. JavaScript is enabled on the browser right? Rakshith http://www.rakshith.net/blog/ -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Thursday, December 13, 2007 11:12 AM To: CF-Talk Subject: What do I have to do to get toolbars to show in a

RE: Limit content in Textarea?

2007-12-13 Thread Adrian Lynch
Without JS there's nothing you can do on the client. Make it clear there is a limit and send them back if they break the limit and let them know how much they were out by. Adrian Lynch -Original Message- From: Steve LaBadie Sent: 12 December 2007 19:24 To: CF-Talk Subject: SOT: Limit

Re: CFChart and SSL

2007-12-13 Thread Dominic Watson
Having more problems now, I am trying to output the contents of cfchart to a file which works when I use CF7 but not CF6.1. I have tried the following to no avail: cfchart chartheight=210 chartwidth=320 format=jpg name=pic cfchartseries type=bar cfchartdata item=blah value=10/ /cfchartseries

Re: CFChart and SSL

2007-12-13 Thread Dominic Watson
The second I post the question, I find the answer! Just use charset=ISO-8859-1 in the cffile write tag. Phew! On 13/12/2007, Dominic Watson [EMAIL PROTECTED] wrote: Having more problems now, I am trying to output the contents of cfchart to a file which works when I use CF7 but not CF6.1. I

RE: What do I have to do to get toolbars to show in a cftextarea?

2007-12-13 Thread Rick Faircloth
Hi, Rakshith, and thanks for the reply. Yes, it's enabled. I use it all the time on my sites. Any other ideas? Rick -Original Message- From: Rakshith N [mailto:[EMAIL PROTECTED] Sent: Thursday, December 13, 2007 6:16 AM To: CF-Talk Subject: RE: What do I have to do to get

or statement problems

2007-12-13 Thread Orlini, Robert
I have an OR mixed into a simple CFIF, however, it will not do an or on both fields: CFIF url.workgroup neq Conference or url.workgroup neq sales rep does not work If I leave it as: CFIF url.workgroup neq Conference it works. If I leave it as: CFIF url.workgroup neq sales rep it works. What

RE: or statement problems

2007-12-13 Thread Dave Watts
I have an OR mixed into a simple CFIF, however, it will not do an or on both fields: CFIF url.workgroup neq Conference or url.workgroup neq sales rep does not work If I leave it as: CFIF url.workgroup neq Conference it works. If I leave it as: CFIF url.workgroup neq sales rep it

RE: or statement problems

2007-12-13 Thread Bruce
I think that you need to have some parenthesis. CFIF (url.workgroup) neq Conference or (url.workgroup) neq sales rep I have not tried this out though. Bruce -Original Message- From: Orlini, Robert Sent: Thursday, December 13, 2007 5:34 AM To: CF-Talk Subject: or statement problems I

RE: or statement problems

2007-12-13 Thread Adrian Lynch
The logic is wrong. If workgroup = Conference it'll enter the cfif, if workgroup = sales rep it'll enter the cfif. Sounds like you want it to enter the block if it isn't Conference AND it isn't sales rep. Try changing the OR to an AND. Adrian Lynch -Original Message- From: Orlini,

Re: or statement problems

2007-12-13 Thread Dominic Watson
Bit of a typo, let me try again: In this case I think you need AND and not OR. With the logic you have below, if url.workgroup = 'sales rep' then 'url.worgroup neq 'Conference'' will evaluate to true and vice verca (the statement will always evaluate to true). Dominic

Re: or statement problems

2007-12-13 Thread Dominic Watson
In this case I think you need AND and not OR. With the logic you have below, url.workgroup = 'sales rep', 'url.worgroup neq 'Conference'' will evaluate to true and vice verca. You may also want to use ListFindNoCase like so: cfif not ListFindNoCase('Conference,sales rep', url.workshop).../cfif

Re: or statement problems

2007-12-13 Thread Tom Chiverton
On Thursday 13 Dec 2007, Todd wrote: CFIF (url.workgroup NEQ Conference) or (url.workgroup NEQ sales rep) Anyway, there's no reason why his statement shouldn't have worked, Well, for some reason of 'worked' foo is not Conference or foo is not sales rep = true or true = true -- Tom Chiverton

RE: or statement problems

2007-12-13 Thread Orlini, Robert
Thank you all! Your useful suggestions (and quick responses) helped me tweak it. Simple fix, but I don't do enough CF work to get all the little things right. This worked: CFIF (url.workgroup NEQ Conference) and (url.workgroup NEQ sales rep) RO -Original Message- From: Tom Chiverton

RE: or statement problems

2007-12-13 Thread Bruce
Yeah, should have tested before posting. Shame on me. When I did try it out the condition is true no matter what. Sorry 'bout that. -Original Message- From: Todd Sent: Thursday, December 13, 2007 5:55 AM To: CF-Talk Subject: Re: or statement problems If you're going to suggest

Re: or statement problems

2007-12-13 Thread Todd
True! On Dec 13, 2007 9:14 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 13 Dec 2007, Todd wrote: CFIF (url.workgroup NEQ Conference) or (url.workgroup NEQ sales rep) Anyway, there's no reason why his statement shouldn't have worked, Well, for some reason of 'worked' foo is

Re: or statement problems

2007-12-13 Thread Todd
If you're going to suggest parenthesis, then they should be written as: CFIF (url.workgroup NEQ Conference) or (url.workgroup NEQ sales rep) Anyway, there's no reason why his statement shouldn't have worked, parenthesis or no. So, he has something else going on. On Dec 13, 2007 8:47 AM, Bruce

RE: or statement problems

2007-12-13 Thread Andy Matthews
I know this is semantics, but when I'm comparing strings, I NEVER used EQ or NEQ. It just doesn't seem to be the right operator. I prefer using IS or IS NOT. YMMV andy -Original Message- From: Orlini, Robert [mailto:[EMAIL PROTECTED] Sent: Thursday, December 13, 2007 8:29 AM To:

CFHTTP and Caching

2007-12-13 Thread Ian Vaughan
Hi I am using CFHTTP to get an RSS feed to display on our website. cfhttp url=http://feeds.bbc.co.uk/weather/feeds/rss/5day/id/2315.xml; method=GET resolveurl=No/cfhttp However what can I use in Coldfusion to cache this CFHTTP request (every 2 hours)so that it does not request the RSS feed

Re: CFHTTP and Caching

2007-12-13 Thread Todd
Use a schedule task to dump the result in the application scope? Every 3 hours or so, go get a new version of the xml? How do you want this to be done? On Dec 13, 2007 9:44 AM, Ian Vaughan [EMAIL PROTECTED] wrote: Hi I am using CFHTTP to get an RSS feed to display on our website. cfhttp

Re: or statement problems

2007-12-13 Thread Todd
NEQ / EQ is valid CF code, so, yeah it is semantics or in this case, a personal preference. On Dec 13, 2007 9:44 AM, Andy Matthews [EMAIL PROTECTED] wrote: I know this is semantics, but when I'm comparing strings, I NEVER used EQ or NEQ. It just doesn't seem to be the right operator. I prefer

Re: or statement problems

2007-12-13 Thread Casey Dougall
On 12/13/07, Todd [EMAIL PROTECTED] wrote: NEQ / EQ is valid CF code, so, yeah it is semantics or in this case, a personal preference. NEQ or EQ will always work where IS or IS NOT only works on strings. Unless there is some type of speed difference, might as well stick with EQ or NEQ and

Re: or statement problems

2007-12-13 Thread Ian Skinner
Orlini, Robert wrote: I don't do enough CF work to get all the little things right. I just wanted to point out that this problem was basic boolean logic and would apply to any language or system, not just ColdFusion. CFIF (url.workgroup NEQ Conference) and (url.workgroup NEQ sales rep) Is the

Re: CFHTTP and Caching

2007-12-13 Thread Tom Chiverton
On Thursday 13 Dec 2007, Ian Vaughan wrote: Could I just use cachedwithin=#CreateTimeSpan(0,3,0,0)# on the end of the CFHTTP statement ? Have you tried ? What happened ? Did you consult the documentation ? -- Tom Chiverton Helping to economically brand exceptional e-markets on:

RE: CFHTTP and Caching

2007-12-13 Thread Ian Vaughan
Could I just use cachedwithin=#CreateTimeSpan(0,3,0,0)# on the end of the CFHTTP statement ? If this cannot be done how do I dump the result in the application scope? -Original Message- From: Todd [mailto:[EMAIL PROTECTED] Sent: 13 December 2007 14:51 To: CF-Talk Subject: Re: CFHTTP and

RE: CFHTTP and Caching

2007-12-13 Thread Russ
Just use cf_accelerate. It does all the heavy lifting for you. Russ -Original Message- From: Ian Vaughan [mailto:[EMAIL PROTECTED] Sent: Thursday, December 13, 2007 10:02 AM To: CF-Talk Subject: RE: CFHTTP and Caching Could I just use cachedwithin=#CreateTimeSpan(0,3,0,0)# on

Re: cfdocument PDF creation - formatting issues

2007-12-13 Thread Justin Brown
Thanks, that did the trick... Played with fontsize/font and got the spacing to be better. Is there a good website out there that has best practices or recommendations for creating PDF docs using cfdocument? afaik, it is a known bug, but it manifests itself only with some font/fontsize

RE: CFHTTP and Caching

2007-12-13 Thread Ian Vaughan
I have tried the cachedwithin=#CreateTimeSpan(0,3,0,0)# at the end of the CFHTTP tag and got the following error Attribute validation error for tag http. The tag does not have an attribute called cachedwithin. The valid attribute(s) are url, port, method, username, password, name, columns,

Re: or statement problems

2007-12-13 Thread Azadi Saryev
Thank you Ian. I was literally foaming @ some of the responses before you came in... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Ian Skinner wrote: Orlini, Robert wrote: I don't do enough CF work to get all the little things right. I just wanted to point out that

Re: CF8: Serialise a CFC?

2007-12-13 Thread Brian Kotek
Thanks for the clarification, and that makes sense. Perhaps more to the point though, what happens if you change the actual instance data that your CFC contains (adding or removing a pointer to another component for instance)? I would assume that this will indeed cause things to break, correct?

Re: cf in general -- one of the best blogs I've ever come across in the cf world

2007-12-13 Thread Casey Dougall
On 12/13/07, d l [EMAIL PROTECTED] wrote: http://www.briankotek.com/blog/index.cfm/2006/7/24/Adobe-Should-Stop-Trying-To-Make-CF-Like-Java Though it's over a year old I still like its thoughts/POVs, btw, I'm just getting back to the cf world... I don't care what they do with coldfusion, I

cf in general -- one of the best blogs I've ever come across in the cf world

2007-12-13 Thread d l
http://www.briankotek.com/blog/index.cfm/2006/7/24/Adobe-Should-Stop-Trying-To-Make-CF-Like-Java Though it's over a year old I still like its thoughts/POVs, btw, I'm just getting back to the cf world... ~| Adobe® ColdFusion®

Re: cfdocument PDF creation - formatting issues

2007-12-13 Thread Azadi Saryev
none that i know of... just have to keep abreast of posts on the subject here and at the adobe cf forums ... cfdocument is riddled with small and big bugs, but i have seen quiet a few posts from adobe team members over on the cf forums there (unofficial of course, as those are user forums), and

Re: or statement problems

2007-12-13 Thread Todd
Why? This only works within a cfscript block. cfset stuff = 1 cfset stuff2 = 1 cfif stuff != stuff2 cfset foo = boo! cfelse cfset foo = yay! /cfif cfdump var=#foo# On Dec 13, 2007 11:06 AM, Azadi Saryev [EMAIL PROTECTED] wrote: Thank you Ian. I was literally foaming @ some of the responses

Re: or statement problems

2007-12-13 Thread Charlie Griefer
On Dec 13, 2007 6:57 AM, Casey Dougall [EMAIL PROTECTED] wrote: On 12/13/07, Todd [EMAIL PROTECTED] wrote: NEQ / EQ is valid CF code, so, yeah it is semantics or in this case, a personal preference. NEQ or EQ will always work where IS or IS NOT only works on strings. this is actually not

ValueList and Peformance

2007-12-13 Thread Matt Williams
Reviewing some older code, I found this. cfif qKeyword.recordCount lte 150 cfset searchCriteria.tmpIDList = valueList(qKeyword.key) / /cfif qKeyword is the results from a Verity search. The code is taking the key column from that (which translates to the Primary Key) and converting it to

RE: clustering issue

2007-12-13 Thread Brad Wood
That's true. My assumption on that topic is that the thread goes to sleep while it waits for the third party call and a thread has to be running to notice if it has timed out. That's because there is _not_ a second thread spawned to watch the first one, but instead the thread asks am I timed out

CFOUTPUT Query to CFXML - error - Illegal character or entity reference syntax

2007-12-13 Thread coldfusion . developer
I keep getting this error. It's trang because I had it work a few days ago. Any ideas? Thanks. -D Error Occurred While Processing Request Illegal character or entity reference syntax. Illegal character or entity reference syntax. The error occurred in

Re: ValueList and Peformance

2007-12-13 Thread Claude Schneegans
Are there any performance issues with using ValueList() on say 500+ records? For valuList, I would say not that much, but for the WHERE myID IN (#searchCriteria.tmpIDList#) query, I would say maybe. -- ___ REUSE CODE! Use custom tags; See

Re: or statement problems

2007-12-13 Thread Azadi Saryev
cfset ..., cfif .., cfdump ..? TAGS within a cfscript block? --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Todd wrote: Why? This only works within a cfscript block. cfset stuff = 1 cfset stuff2 = 1 cfif stuff != stuff2 cfset foo = boo! cfelse cfset foo = yay! /cfif cfdump

Re: cfdocument PDF creation - formatting issues

2007-12-13 Thread Justin Brown
The code looks fine to me, have you check the data that comes back. You may want to do a cfdump on query and look at the data. If there are characters that XML needs escaped or put into CDATA sections. I keep getting this error. It's trang because I had it work a few days ago. Any

Re: or statement problems

2007-12-13 Thread Todd
I was't talking about the tags, I was talking about the operators (e.g.: != == || ) - Read my code example again please. On Dec 13, 2007 11:42 AM, Azadi Saryev [EMAIL PROTECTED] wrote: cfset ..., cfif .., cfdump ..? TAGS within a cfscript block? --- Azadi Saryev Sabai-dee.com

Re: SOT: page breaks

2007-12-13 Thread Dave Anderson
In what context? Are you talking about printing a dynamically-generated html page? If so, try some css, namely the page-break-after or page-break-before attributes. Ex: div style=page-break-before:always;some content/divdiv style=page-break-before:always;some more content/div The contents of

RE: CFOUTPUT Query to CFXML - error - Illegal character or entity reference syntax

2007-12-13 Thread Adrian Lynch
If you can't see any offending characters, comment it all out and introduce the fields back in one at a time. Adrian -Original Message- From: [EMAIL PROTECTED] Sent: 13 December 2007 17:19 To: CF-Talk Subject: CFOUTPUT Query to CFXML - error - Illegal character or entity reference syntax

Re: ValueList and Peformance

2007-12-13 Thread Casey Dougall
On 12/13/07, Matt Williams [EMAIL PROTECTED] wrote: Reviewing some older code, I found this. cfif qKeyword.recordCount lte 150 cfset searchCriteria.tmpIDList = valueList(qKeyword.key) / /cfif If I remember correctly, a List can only hold so much data. After that I think it just

Re: ValueList and Peformance

2007-12-13 Thread Raymond Camden
Casey, you mean a list in SQL right? Cuz CF has no limits on Lists as strings. On Dec 13, 2007 11:40 AM, Casey Dougall [EMAIL PROTECTED] wrote: On 12/13/07, Matt Williams [EMAIL PROTECTED] wrote: Reviewing some older code, I found this. cfif qKeyword.recordCount lte 150 cfset

Invoking an Axis2 web service with Coldfusion

2007-12-13 Thread Stewart Turnbull
I'm currently trying to invoke an Apache Axis2 web service which requires XML documents to be passed. The Axis2 server however is not happy and reports 'No serializer found for class coldfusion.xml.XmlNodeList in registry org.apache.axis.encoding'. Has anybody else had a similar problem or

Re: ValueList and Peformance

2007-12-13 Thread Matt Williams
I do know SQL Server has a limit of 2100 parameters in any given query. We have a limit of returning 750 rows to the user anyway, so that shouldn't be a problem. On Dec 13, 2007 12:12 PM, Raymond Camden [EMAIL PROTECTED] wrote: Casey, you mean a list in SQL right? Cuz CF has no limits on Lists

Re: CFOUTPUT Query to CFXML - error - Illegal character or entity reference syntax

2007-12-13 Thread Dave Anderson
I don't see anything wrong with your xml markup. I'm betting it's an illegal character in one of your variables. Try wrapping all your variables in the xmlFormat() function. ~| Adobe® ColdFusion® 8 software 8 is the most

Re: CFHTTP and Caching

2007-12-13 Thread Dave Anderson
Putting the result in the application scope is a good idea. Just do something like: cfif NOT structKeyExists(application,myRSSdata) OR NOT structKeyExists(application,myRSSdataTimestamp OR Now() GT dateAdd(h,3,application.MyRSSdataTimestamp) cfhttp result=application.myRSSdata / cfset

VPS hosting, anyone?

2007-12-13 Thread Rizal Firmansyah
Hi Guys, i need your input on choosing VPS hosting service. Anyone using it? Any pros and cons on using shared vs vps vs dedicated machine? Thanks, Rizal ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic

Re: ValueList and Peformance

2007-12-13 Thread Casey Dougall
On 12/13/07, Raymond Camden [EMAIL PROTECTED] wrote: Casey, you mean a list in SQL right? Cuz CF has no limits on Lists as strings. You know. This is twice today my mind has been playing tricks on me. It was a cookie that had too much data in it... I swear it was a list, it was actually

Re: or statement problems

2007-12-13 Thread Ben Doom
Because the implication was that his mistake was a lack of knowledge about CF, not a logic mistake that would have affected him regardless of language. I'm pretty sure that the other two statements are the same thing in other languages -- PHP and ASP, if I had to guess. --Ben Todd wrote:

Re: VPS hosting, anyone?

2007-12-13 Thread Alan Rother
I can't speak to it personally, but I have heard from people I trust that this company has a good VPS product. Looks like a great price and again, I've heard they have great customer service. http://www.ahphosting.net/vps.htm#advancedshared On Dec 13, 2007 10:54 AM, Rizal Firmansyah [EMAIL

Re: VPS hosting, anyone?

2007-12-13 Thread Michael Dinowitz
They've been providing the list bandwidth for the last 9 or so years for free and when a CF problem comes up, I'm kind of on call. On Dec 13, 2007 2:01 PM, Alan Rother [EMAIL PROTECTED] wrote: I can't speak to it personally, but I have heard from people I trust that this company has a good VPS

calling cfreport from within java-instantiated cfc

2007-12-13 Thread Craig Buckley
I have a cfinput, type=button that has a onclick=callreport(). Function callreport instantiates a cfc called metricreport.cfc. Metricreport.cfc produces either a csv file or a cfreporter output. The creation of the csv file works fine using cffile tags in metricreport.cfc. The cfreport

Re: calling cfreport from within java-instantiated cfc

2007-12-13 Thread Kris Jones
Make sure that the output attribute in your cfcomponent tag is set to true? I have a cfinput, type=button that has a onclick=callreport(). Function callreport instantiates a cfc called metricreport.cfc. Metricreport.cfc produces either a csv file or a cfreporter output. The creation of

Re: or statement problems

2007-12-13 Thread Ian Skinner
I'm pretty sure that the other two statements are the same thing in other languages -- PHP and ASP, if I had to guess. --Ben Actually C++ and Basic, but they are syntactically related to many many languages so pick any you want.

RE: VPS hosting, anyone?

2007-12-13 Thread Jim Davis
-Original Message- From: Rizal Firmansyah [mailto:[EMAIL PROTECTED] Sent: Thursday, December 13, 2007 12:54 PM To: CF-Talk Subject: VPS hosting, anyone? Hi Guys, i need your input on choosing VPS hosting service. Anyone using it? Any pros and cons on using shared vs vps vs

Re: VPS hosting, anyone?

2007-12-13 Thread Matt Williams
I've been hosting with Viviotech for a little over a year now and couldn't be happier. The support has been great when I need it. Not having to worry about the Shared Hosting headaches I read about so much on this list is worth a little extra price to me. Not to mention my cost is offset by the

To AIR or not to AIR?

2007-12-13 Thread d l
I know I need air but do I need Adobe's AIR or not? Please provide some business case other than the Adobe's sample app links, and better your own AIR app (hopefully not too slow). Thank you. P.S. I don't have FLEX nor graphics designer's background.

RE: To AIR or not to AIR?

2007-12-13 Thread Brad Wood
You might want to ask the AIR mailing list... http://www.houseoffusion.com/groups/adobe-integrated-runtime/ ~Brad -Original Message- From: d l [mailto:[EMAIL PROTECTED] Sent: Thursday, December 13, 2007 2:18 PM To: CF-Talk Subject: To AIR or not to AIR? I know I need air but do I need

Re: What do I have to do to get toolbars to show in a cftextarea?

2007-12-13 Thread Dave Anderson
First off, you don't need to manually include the javascript files. The cfform tag and the richtext=yes attribute of the cftextarea tag tell the server to automagically include the necessary files. Second, make sure your web server has a /CFIDE mapping (virtual directory), and then check that

RE: To AIR or not to AIR?

2007-12-13 Thread Andy Matthews
As far as I understand, to create an AIR application, you must have at least the AIR SDK from Adobe. You don't have to create an AIR app using any of Adobes TOOLS, but to build it requires the SDK which you'd have to run command line. -Original Message- From: d l [mailto:[EMAIL

Re: To AIR or not to AIR?

2007-12-13 Thread Cutter (CFRelated)
You can create HTML AIR applications using the SDK and the Aptana IDE. Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Andy Matthews wrote: As far as I understand, to create an AIR

Re: To AIR or not to AIR?

2007-12-13 Thread Mark Phillips
Here is an AIR app/widget we created specifically for a business need. http://timer.vertabase.com Its to track time on projects or to track time on clients. -Mark Vertabase 4 Project Management Made Easy Adobe Solution Partner http://www.vertabase.com I know I need air but do I need

Re: To AIR or not to AIR?

2007-12-13 Thread Mark Phillips
Here is an AIR app/widget we created specifically for a business need. http://timer.vertabase.com Its to track time on projects or to track time on clients. -Mark Vertabase 4 Project Management Made Easy Adobe Solution Partner http://www.vertabase.com I know I need air but do I need

Re: VPS hosting, anyone?

2007-12-13 Thread Will Tomlinson
Hi Guys, i need your input on choosing VPS hosting service. Anyone using it? Any pros and cons on using shared vs vps vs dedicated machine? I'm luvin my hostmysite VPS so far. the best thing is finally being able to control my own cfadmin. Will

Re: To AIR or not to AIR?

2007-12-13 Thread d l
Thanks for your input. You can create HTML AIR applications using the SDK and the Aptana IDE. Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer ~| Adobe® ColdFusion® 8 software 8 is

Re: To AIR or not to AIR?

2007-12-13 Thread d l
Are you 'miniking' my time management app, http://www.mytata.net/, probably not, more likely coincidence, google measure time management see what you get... Here is an AIR app/widget we created specifically for a business need. http://timer.vertabase.com Its to track time on projects or to

Re: To AIR or not to AIR?

2007-12-13 Thread d l
Thanks for the input on its technicality, probably I'll be ok, used to write DOS batch files, even comfortable with Unix shell scripting, cshell? kshell? More likely the former... But I won't have competitive advantage getting back to heavy javascripting if AIR requires that (ADOBE docs haven't

Re: To AIR or not to AIR?

2007-12-13 Thread Casey Dougall
On 12/13/07, d l [EMAIL PROTECTED] wrote: that's why my focus is on UI, presentation layer... and why I like CFAJAX etc quite a bit... UI Eh? Wait till Thermo comes out... This thing is retarded. this and some cfc's are going to be pure butter.

Efflare Imageflare1.5 Issue

2007-12-13 Thread Arturo Jones
I'm using Efflare's ImageFlare 1.5 tag for a variety of image operations (resizing, compositing etc.) in our application. Things have been running great for the past year and then all of a sudden a week ago, we started seeing the tag crash on us: ImageFlare CR Exception [LoadFailed:140425] or

Re: Efflare Imageflare1.5 Issue

2007-12-13 Thread Alan Rother
If you find out anything, please let me know. I've been fighting with the same problem for a year now. I find the only way to solve the issue is to reboot the whole server. Then it goes away for a week or so. =] On Dec 13, 2007 2:43 PM, Arturo Jones [EMAIL PROTECTED] wrote: I'm using

Re: Efflare Imageflare1.5 Issue

2007-12-13 Thread cftalk
I'm using Efflare's ImageFlare 1.5 tag for a variety of image operations (resizing, compositing etc.) in our application. Things have been running great for the past year and then all of a sudden a week ago, we started seeing the tag crash on us: ImageFlare CR Exception [LoadFailed:140425]

Re: Efflare Imageflare1.5 Issue

2007-12-13 Thread Arturo Jones
Clearly Efflare is supporting this tag still. Thanks for the advice. I'll let you know how it goes. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

RE: Efflare Imageflare1.5 Issue

2007-12-13 Thread Bobby Hartsfield
Not only are they still supporting it, they just supported it for free on an open forum. Just another reason you can't beat ImageCR ! :-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com ~| Adobe® ColdFusion®

Array and query References

2007-12-13 Thread Richard White
Hi, i have a query in which i dont know what the column names will be. however i have an array that contains the names of the columns but i am having difficulties in working out how i can reference the columns with the array. for example: if i have an array that has 2 elements: and i want to

Re: Array and query References

2007-12-13 Thread Richard White
#queryname[columnName][1]# thanks Michael this works perfectly :) ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w

RE: Array and query References

2007-12-13 Thread Dawson, Michael
I can't test it right now, for accuracy, but this is what I recall... #queryname[columnName][1]# or #queryname[columnVar][1]# Also, you can get the column names by using #queryname.columnList#. M!ke -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Thursday,

Follow-up: PDF generation running excrutiatingly slow

2007-12-13 Thread Andy Matthews
I'm running CF8 and trying to generate a PDF out of this page: http://gaylordoprylandsales.com/prop/proposal.cfm?view=73534E3B54060A4C061052691D13 The page loads in fairly quickly, but creating a PDF from the same exact code takes several minutes or more, and in some cases times out:

Re: Follow-up: PDF generation running excrutiatingly slow

2007-12-13 Thread James Holmes
Try wrapping the content in a cfsavecontent (instead of cfdocument) and then cfoutputting that result between the cfdocument tags; let us know if that speeds anything up. On Dec 14, 2007 1:21 PM, Andy Matthews [EMAIL PROTECTED] wrote: I'm running CF8 and trying to generate a PDF out of this

RE: What do I have to do to get toolbars to show in a cftextarea?

2007-12-13 Thread Rick Faircloth
Thanks for the reply, Dave. At first, I didn't manually include the js files, but I saw an example which did, so I thought I'd try it. Yes, I have a /CFIDE mapping to C:\ColdFusion8\wwwroot\CFIDE Concerning, check that the web user account has read access to everything under /CFIDE/scripts.

Re: Follow-up: PDF generation running excrutiatingly slow

2007-12-13 Thread Andy Matthews
Here's some updates used for testing: This page is the exact same source code as the original link, but has NO CF processing (other than the cfdocument tag): http://gaylordoprylandsales.com/prop/PDFtest_01.cfm This page has had it's complex div based layout converted to tables:

Re: Follow-up: PDF generation running excrutiatingly slow

2007-12-13 Thread Andy Matthews
Here's some updates used for testing: This page is the exact same source code as the original link, but has NO CF processing (other than the cfdocument tag): http://gaylordoprylandsales.com/prop/PDFtest_01.cfm This page has had it's complex div based layout converted to tables:

request header

2007-12-13 Thread Andrew Grosset
I need to access the header elements as passed from an ajax post the nearest thing I found was a jsp solution: (http://coldfusion.sys-con.com/read/36711.htm) !--- I would like to see all of the elements in the request header in my JSP for debugging purposes. % java.util.Enumeration e=

Re: request header

2007-12-13 Thread James Holmes
http://livedocs.adobe.com/coldfusion/7/htmldocs/0482.htm On Dec 14, 2007 2:02 PM, Andrew Grosset [EMAIL PROTECTED] wrote: I need to access the header elements as passed from an ajax post the nearest thing I found was a jsp solution: (http://coldfusion.sys-con.com/read/36711.htm) !---

Re: request header

2007-12-13 Thread Andrew Grosset
Thanks James, I was just about to post this: #GetPageContext().getRequest().getHeader(Referer)# (I'm not actually using Referer - just a test...) when I saw your post, thanks that link covers it very well. Andrew. http://livedocs.adobe.com/coldfusion/7/htmldocs/0482.htm On Dec 14, 2007

RE: CF8: Serialise a CFC?

2007-12-13 Thread Rakshith N
Since all the instance level data will be serialized, the deserailized instance should regain the exact state of the instance before it was serialized. However, if the data in either the THIS scope or the VARIABLES scope is modified while the data was serialized, the modified data will not be

RE: What do I have to do to get toolbars to show in a cftextarea?

2007-12-13 Thread Rakshith N
Do you see any JavaScript errors in the JavaScript console? Rakshith http://www.rakshith.net/blog/ -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Friday, December 14, 2007 10:21 AM To: CF-Talk Subject: RE: What do I have to do to get toolbars to show in a

Re: Senior Coldfusion Developer wants Telecommute work for $25.00

2007-12-13 Thread sherri sonnier
This is ridiculous. PLEASE DROP IT On 12/13/07, G L [EMAIL PROTECTED] wrote: When I said the bugs were NOT fixed to Hope I meant in YOUR code. There wasn't a SINGLE change to your code. I finally had to do it yesterday and it took me less than 2 hours to fix all 3 bugs after this wizard

Re: Senior Coldfusion Developer wants Telecommute work for $25.00

2007-12-13 Thread G L
When I said the bugs were NOT fixed to Hope I meant in YOUR code. There wasn't a SINGLE change to your code. I finally had to do it yesterday and it took me less than 2 hours to fix all 3 bugs after this wizard spent 12+ hours without accomplishing anything. (He just didn't even make an

Re: Senior Coldfusion Developer wants Telecommute work for $25.00

2007-12-13 Thread Christopher Watson
This thread need to die NOW. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive:

Re: Senior Coldfusion Developer wants Telecommute work for $25.00

2007-12-13 Thread Jeffry Houser
I budget 40% for taxes. If you're an employee, 33% is going to be about right (look at your paychecks). But, as an employee your employer is paying some additional percentage of your salary (I believe 7.5%) to social security. When you're self employed, you have to pay both the employee

Re: Senior Coldfusion Developer wants Telecommute work for $25.00

2007-12-13 Thread Jesse B
I think the off shore competition is a fad that’s on it’s way out. I think most companies are more worried about their intellectual property that they would not risk that as well as their clients data and intellectual property to some sweat shop overseas. As a U.S company the thought of