[ACFUG Discuss] FusionReactor VS SeeFusion

2006-09-12 Thread jonese
What do you use and why? We're currently playing with both i like the feel of fusion reactor but seefusion feels like it's got more at time... thoughts? jonese - To unsubscribe from this list, manage your profile @

[ACFUG Discuss] converting wav files

2006-09-12 Thread Steven Ross
Hey all, I have a cfc (that is really just a wrapper for java) and it is pulling some data down and writing out a wav file. I'd like to either have coldfusion or java convert that file to an mp3 (or anything else that can be natively played by flash). Anyone know of a solution for this (I've

RE: [ACFUG Discuss] Creating MS Word Documents from HTML

2006-09-12 Thread John RR
Thank you. I would like to keep the document locally on the client. Is there another method to open MS Word setting both a default user's directory locally and a filename with a .doc extension? Will XML allow this? John -Original Message-From: [EMAIL PROTECTED]

Re: [ACFUG Discuss] Spawning threads in Coldfusion: making my webapp run faster

2006-09-12 Thread Nathan Given
On 9/8/06, Mischa Uppelschoten ext 10 [EMAIL PROTECTED] wrote: As a low-tech solution, could you write a cfm page with frames that calls other cfm pages in those frames and then cfhttp the top page? /m Intriguing idea... :-) So let's talk about this one... I can create one cfm template that

RE: [ACFUG Discuss] Spawning threads in Coldfusion: making my webapp run faster

2006-09-12 Thread phi1281
When doing this, keep an eye on the number of threads you spawn relative to the thread limit in CF Admin. The reccomended max thread count is 3 to 5 per processor. So, if you have a dual core processor, the max thread count should be 6-10. You could easily run over this level if you spawn too

RE: [ACFUG Discuss] Spawning threads in Coldfusion: making my webapp run faster

2006-09-12 Thread John Mason
You may be confusing threads with requests. Threads are related to java and requests are related to the http protocol. Threads http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Thread.html Requests http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/i18n13.htm Two very different things.