imageScaleToFit() on CF8.0.1 takes forever or times out

2008-08-31 Thread Azadi Saryev
can somebody please confirm that this is a problem and not just me going crazy? after an upgrade to CF8.0.1 + cumulative hotfix + updated cfimage hotfix (and without the 2 hotfixes) imageScaleToFit function now takes forever to scale a .jpg image... the images are rather large (10+ MB), but that

Re: Wildcard characters in filepath?

2008-08-31 Thread Claude Schneegans
Is there some way I can use cfhttp to access the files listed on the web page and download them? No, in order to use CFFTP, you need some FTP account on the aimed server. I click on the link and it takes me to a page in the browser that lists the files I need. Ok, then you do have the name of

Re: fusebox vs model glue

2008-08-31 Thread Adam Haskell
Disclaimer: I just took over the Fusebox core files so my opinion is most likely slaned ;) Well the easy answer here is no they are not similar and yes use one or the other. The hard answer is that evil last one. What's the maturity level of you/your group? Fusebox offers a vast bit more

Re: imageScaleToFit() on CF8.0.1 takes forever or times out

2008-08-31 Thread Raymond Camden
Have you tried different interpolation settings? The default is highestquality, which could definitely account for the slowness. It may be that 801 changed the default interpolation. On Sun, Aug 31, 2008 at 2:39 AM, Azadi Saryev [EMAIL PROTECTED] wrote: can somebody please confirm that this is a

Re: fusebox vs model glue

2008-08-31 Thread denstar
Sounds like with FB you could end up with a Pretty Entertaining Environment. Is there a down side to all the flexibility? :-) -- The community of masses of human beings has produced an order of life in regulated channels which connects individuals in a technically functioning organisation, but

Re: fusebox vs model glue

2008-08-31 Thread Phillip M. Vector
denstar wrote: Sounds like with FB you could end up with a Pretty Entertaining Environment. *groans* Is there a down side to all the flexibility? :-) Yes. It means that no 2 application developers will develop websites the same way. Though IMHO, that's not much of a downside.

Re: fusebox vs model glue

2008-08-31 Thread Adam Haskell
Hell yes there can be a downside to flexibility. That's one of the things I've always complain about with fusebox, but I am not planning on changing that flexibility. With a good set of best practices and coding standards you can wrangle in the variations some and not loose all your flexibility,

RE: Wildcard characters in filepath?

2008-08-31 Thread Rick Faircloth
Thanks for the tips, Claude! -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Sunday, August 31, 2008 9:42 AM To: CF-Talk Subject: Re: Wildcard characters in filepath? Is there some way I can use cfhttp to access the files listed on the web page and

Re: imageScaleToFit() on CF8.0.1 takes forever or times out

2008-08-31 Thread Michael Dinowitz
I'd check the jvm memory settings for both boxes. Images are held in allocated memory to be processed. Also, could you post some code here? There are things like imageantialias() that are not needed for scaling but are use by some which has a negative effect. Finally, I'd look at things like drive

Re: fusebox vs model glue

2008-08-31 Thread s. isaac dealey
Hell yes there can be a downside to flexibility. That's one of the things I've always complain about with fusebox, but I am not planning on changing that flexibility. With a good set of best practices and coding standards you can wrangle in the variations some and not loose all your

Re: fusebox vs model glue

2008-08-31 Thread denstar
On Sun, Aug 31, 2008 at 12:58 PM, Phillip M. Vector wrote: denstar wrote: Sounds like with FB you could end up with a Pretty Entertaining Environment. *groans* First I was going to go with Pretty Incredible, Sophisticated and Simple-- but thought that it was a little much. =] Is there a

Re: imageScaleToFit() on CF8.0.1 takes forever or times out

2008-08-31 Thread Azadi Saryev
Thanks for the replies and comments, Ray Michael! Here's an update and answers to your questions/comments. This is what i have tested out on my dev box: - re-installed CF8 Updater 1 (CF8.0.1) on my dev box: a batch of 9 photos (total size 57MB) breezed through in about 20 seconds - installed

Repost: Dynamically executing Beans, Gateways, DOA and Service objects.

2008-08-31 Thread Gerald Guido
I did not see this go though on http://www.houseoffusion.com/groups/cf-talk/ So i am re-posting it Goal: to create a create a generic function to update database records (CRUD) on multiple tables with out creating a function for each table. Back ground. For various reasons I am using a coded

Re: Repost: Dynamically executing Beans, Gateways, DOA and Service objects.

2008-08-31 Thread James Holmes
Use cfinvoke. This allows you to specify an arbitrary component and method to call. On Mon, Sep 1, 2008 at 11:24 AM, Gerald Guido [EMAIL PROTECTED] wrote: What I want to do is eliminate evaluate from the mix even though it seems to me to be doing exactly what it was designed to do, much like

Re: Repost: Dynamically executing Beans, Gateways, DOA and Service objects.

2008-08-31 Thread Gerald Guido
Use cfinvoke. Thanx James I thought about that, and you are right. But I was hoping to keep it in a cfscript block. Is there a way to do that? This is more of an academic pursuit than a practical one btw. Just digging in and seeing what I can do more than anything else. Thanx G On Sun, Aug

kinda OT : sqlite statement is not executing

2008-08-31 Thread Greg Morphis
I have CF 8 connecting to SQLite3 via the sqlitejdbc v053 driver. When I call the create method of my CFC I get this error Error Executing Database Query. statement is not executing The error occurred in C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\testCF\cfc\myApp\appDAO.cfc: line 92 The

Re: Repost: Dynamically executing Beans, Gateways, DOA and Service objects.

2008-08-31 Thread denstar
On Sun, Aug 31, 2008 at 10:09 PM, Gerald Guido wrote: Use cfinvoke. Thanx James I thought about that, and you are right. But I was hoping to keep it in a cfscript block. Is there a way to do that? This is more of an academic pursuit than a practical one btw. Just digging in and seeing what

Re: Repost: Dynamically executing Beans, Gateways, DOA and Service objects.

2008-08-31 Thread James Holmes
If your application scoped CFC doesn't use instance data then yes, by copying the method out of the CFC dynamically. However, at that point it's time to give up and use evaluate() imo. Evaluate() is there to be used in these situations; overusing it is bad but it does have its place. On Mon, Sep

Re: Repost: Dynamically executing Beans, Gateways, DOA and Service objects.

2008-08-31 Thread Gerald Guido
Hope it helps. Sorry if it's not too helpful, I am sorta buzzed. LMAO. Me too. Got in to a beer fueled coding session what would happen if I ... I wonder if I could ... Nope... Dammit... Infinite loop Huh... I wonder what that would do Who, COOL Thanx Guys ~G~ On Mon, Sep

Re: fusebox vs model glue

2008-08-31 Thread s. isaac dealey
Hey, Isaac, you got unit tests being generated as well? I'd toss that in there, while you're at generating stuff. I'm loving my tests... TDD is on my ever growing list of things to tackle. :) Not something I'm doing currently, but it is something I plan to do at some point. As of yet I

Re: kinda OT : sqlite statement is not executing

2008-08-31 Thread denstar
You checked the DB logs? Something somewhere probably says sorta what's going on. Maybe it's returning a warning or something. *shrug*. That's all I got. -- Reason itself is fallible, and this fallibility must find a place in our logic. Nicola Abbagnano On Sun, Aug 31, 2008 at 10:43 PM,

Re: Repost: Dynamically executing Beans, Gateways, DOA and Service objects.

2008-08-31 Thread denstar
On Sun, Aug 31, 2008 at 10:59 PM, Gerald Guido wrote: Hope it helps. Sorry if it's not too helpful, I am sorta buzzed. LMAO. Me too. Got in to a beer fueled coding session WOOHOO! Cheers! :DeN -- It is by doubting that we come to investigate, and by investigating that we recognize the