Ionic Rewrite

2010-03-04 Thread Eric Roberts
OK.looks like the one I was using can't do what I want unless we pay $150 for it, so I am over to Ionic. I am still not very clear on how to do this.especially with the individual files for the virtual hosts. The instructions for this were a bit less than clear on how to accomplish this.

RE: CF Debugger for application scoped CFC

2010-03-04 Thread Brook Davies
Hi Jochem, The debugging service itself starts and is running. The debugger does not break on the breakpoints. Sorry I should have been more clear. I did put the breakpoints in before caching. Should this work? Brook -Original Message- From: Jochem van Dieten [mailto:joch...@gmail.com]

Re: How do people transfer data between databases nowdays?

2010-03-04 Thread Matthew Smith
I've had issues where it puts the view creation before the tables that the view uses, causing an error when run. Just keep an eye out for that. On Wed, Mar 3, 2010 at 6:03 PM, Jason Fisher ja...@wanax.com wrote: Nice, I hadn't ever seen that tool before. Can't wait to give it a spin.

Re: CF Debugger for application scoped CFC

2010-03-04 Thread Dorioo
Don't know if it's supposed to work, but I have experienced it _not_ working once the CFC is in memory. Told myself that the debugger processes files used in the request. Once the CFC is memory, no files are parsed for it and so the debugger does not fire. I'd love to be wrong though. - Gabriel

Setting windows directory security with ColdFusion

2010-03-04 Thread Ian Skinner
If one was to build an application that could be creating directories on a windows system. Is there any way to set specific permissions on that newly created directory. I understand that the cfdirectory... tag has the ability to set the UNIX permissions. But, of course, windows is not so

Strange things with MX 6.1

2010-03-04 Thread Brian Bradley
I am writing new security system for a site using MX 6.1. I have it working fine. User puts in their e-mail and password, the system looks up the user account, and redirects the user to the logged in site. The problem is, the site is a frameset and in each frame at the top-left-corner is a

How to handle large ResultSet, so that it can also be reused?

2010-03-04 Thread sandeep saini
Hey Guys! I am creating a Reporting website in which we may get huge(ten of thousands of records) data in query ResultSet. I may want to re-use this data as well. So what is the best and efficient way to handle(store and retrive?) such a resultset? FYI- 1. I am using Mach II framework. Can

RE: How to handle large ResultSet, so that it can also be reused?

2010-03-04 Thread Andy Matthews
If you want to reuse the results of a single query then your only option is to store it in memory. I'd say you need to ask yourself whether the results will be different from user to user, or for the entire application. That will determine how you store the query. If it's consistent across all

Re: Setting windows directory security with ColdFusion

2010-03-04 Thread Dave Watts
If one was to build an application that could be creating directories on a windows system.  Is there any way to set specific permissions on that newly created directory.  I understand that the cfdirectory... tag has the ability to set the UNIX permissions.  But, of course, windows is not so

Re: Setting windows directory security with ColdFusion

2010-03-04 Thread Ian Skinner
On 3/4/2010 9:45 AM, Dave Watts wrote: That said, you could do this using CFEXECUTE and the command-line cacls/xcacls/icacls tools. Thanks Dave, I had a strong feeling it was going to be something that tapped the command-line through CFEXECUTE. But having never done directory security

Re: How to handle large ResultSet, so that it can also be reused?

2010-03-04 Thread sandeep saini
Thanks Randy. But yes, the resulted data will be different for all users, So cf catchedin will not be useful. -sandeep ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion

RE: How to handle large ResultSet, so that it can also be reused?

2010-03-04 Thread DURETTE, STEVEN J (ATTASIAIT)
Hate to say it... Fix the database. Fixing the database almost always shows a better speed increase and processing than refactoring CF code. That is if the database is a mess in the first place. I've just started reading Joe Celko's SQL for Smarties, and in the first chapter I've found stuff

Re: How to handle large ResultSet, so that it can also be reused?

2010-03-04 Thread Ian Skinner
On 3/4/2010 9:54 AM, sandeep saini wrote: Thanks Randy. But yes, the resulted data will be different for all users, So cf catchedin will not be useful. -sandeep The basic question you are asking here is where do you want to spend the cost of these large recordsets? You can spend the

Re: Strange things with MX 6.1

2010-03-04 Thread Jochem van Dieten
On 3/4/10, Brian Bradley wrote: I am writing new security system for a site using MX 6.1. I have it working fine. User puts in their e-mail and password, the system looks up the user account, and redirects the user to the logged in site. The problem is, the site is a frameset and in each

Re: How to handle large ResultSet, so that it can also be reused?

2010-03-04 Thread sandeep saini
Well Steve, fixing DB is not a way to go (as of now) :-) With Reuse, I mean that once we have data(in an object?). I may want to manipulate/query that for creating some more sub-reports. e.g. if i have 15 rows, i may still want to get a subset of it and this time I hate to again go

Re: How to handle large ResultSet, so that it can also be reused?

2010-03-04 Thread sandeep saini
Also want to mention that we will have approx 200 concurrent users creating such big reports. -sandeep ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists

Re: How to handle large ResultSet, so that it can also be reused?

2010-03-04 Thread Dorioo
Transfer's cache deals with individual objects. Not a 150,000 record query. I'd cross it off your list of potentials. - Gabriel On Thu, Mar 4, 2010 at 1:30 PM, sandeep saini sandeep00...@yahoo.com wrote: Also want to mention that we will have approx 200 concurrent users creating such big

OT JS question

2010-03-04 Thread Chad Gray
Anyone know if there is an equivalent to CF’s val() in Javascript? I want to check a JS variable and set it to zero if it is blank. Thanks ~| Want to reach the ColdFusion community with something they want? Let them know on

Re: OT JS question

2010-03-04 Thread Jake Churchill
http://www.w3schools.com/jsref/jsref_parseInt.asp var value = 15; parseInt(value,10); On Thu, Mar 4, 2010 at 1:37 PM, Chad Gray cg...@careyweb.com wrote: Anyone know if there is an equivalent to CF’s val() in Javascript? I want to check a JS variable and set it to zero if it is blank.

Re: Strange things with MX 6.1

2010-03-04 Thread Brian Bradley
LOL!!! You are right. Rookie mistake (ducks away in shame) - thanks. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

RE: OT JS question

2010-03-04 Thread Andy Matthews
parseInt might do the trick. parseInt(var) -Original Message- From: Chad Gray [mailto:cg...@careyweb.com] Sent: Thursday, March 04, 2010 1:37 PM To: cf-talk Subject: OT JS question Anyone know if there is an equivalent to CF's val() in Javascript? I want to check a JS variable and

Re: How do people transfer data between databases nowdays?

2010-03-04 Thread Jason Fisher
Good to know, thanks. My next trick is to get a 356 MB script to run LOL ... time to break things up, I guess. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing

Re: How to handle large ResultSet, so that it can also be reused?

2010-03-04 Thread Jason Fisher
If you're talking about 200 copies, each of 150,000 records, then Session and Application storage are going to be feasible only if you have sufficient physical memory on the ColdFusion server. 200 x 15 x ?? = 30,000,000 x ?? bytes average record size So, if an average record in the

RE: OT JS question

2010-03-04 Thread Chad Gray
Thanks for the suggestions but if I do this I get NaN (not a number I am guessing). parseInt(FOO,10); parseInt(,10); -Original Message- From: Jake Churchill [mailto:reyna...@gmail.com] Sent: Thursday, March 04, 2010 2:40 PM To: cf-talk Subject: Re: OT JS question

RE: OT JS question

2010-03-04 Thread Chad Gray
Ah I think I found one that will work Number(); I will test it out. Thanks for the help! -Original Message- From: Chad Gray [mailto:cg...@careyweb.com] Sent: Thursday, March 04, 2010 3:04 PM To: cf-talk Subject: RE: OT JS question Thanks for the suggestions but if I do this I get

RE: How to handle large ResultSet, so that it can also be reused?

2010-03-04 Thread brad
Three main questions you need to ask yourself are: 1) What is the cost of retrieving the data from the database (time, CPU, I/O) 2) What is the cost to cache it (memory mostly, speed of retrieval, cache management overhead) 3) How re-usable will it be/how soon will it need to be invalidated I

RE: How to handle large ResultSet, so that it can also be reused?

2010-03-04 Thread brad
Having read some more of your replies, I think I would recommend just re-running the select every time. 10's of thousands of records really isn't that large of a result for a well-endowed SQL server to transfer around. The big question is how long it takes to generate them. Analyze your

Re: How to handle large ResultSet, so that it can also be reused?

2010-03-04 Thread Dave Watts
Having read some more of your replies, I think I would recommend just re-running the select every time.  10's of thousands of records really isn't that large of a result for a well-endowed SQL server to transfer around.  The big question is how long it takes to generate them. Analyze your

RE: How to handle large ResultSet, so that it can also be reused?

2010-03-04 Thread brad
I'm not so sure how I feel about the phrase well-endowed SQL server, though. *bow chicka wow wow* All I'm gonna say is at my last job, we referred to our main SQL Server as Big Momma. She had enough gigs of Ram to make any decent PC blush. ~Brad

never ending redirect I can't spot

2010-03-04 Thread Matthew Smith
I'm reworking an old fusebox 3 app. I'm getting a never ending redirect loop but I cannot figure out why. In the main order app fbx_switch: cfcase value=startprocess cfmodule fuseaction=#fusebox.thiscircuit#.verifyshippingaddress template=#fusebox.rootpath##modself# cfid=#cfid#

Re: never ending redirect I can't spot

2010-03-04 Thread Matthew Smith
Sorry, sent early, last code snippit is: cfcase value=startPayment startPaymentcfabort /cfcase I don't understand why it is looping. On Thu, Mar 4, 2010 at 6:33 PM, Matthew Smith chedders...@gmail.com wrote: I'm reworking an old fusebox 3 app. I'm getting a never ending redirect loop but

Re: never ending redirect I can't spot

2010-03-04 Thread Maureen
What's the value of your switch? Does it ever get changed to not be one of the values you are testing for? On Thu, Mar 4, 2010 at 4:33 PM, Matthew Smith chedders...@gmail.com wrote: I'm reworking an old fusebox 3 app.  I'm getting a never ending redirect loop but I cannot figure out why

Re: never ending redirect I can't spot

2010-03-04 Thread Kevin Pepperman
Are you on a load balanced server with more than 1 CFML server? If so you will need to do some type of session replication, session.billinginfo may not be set yet. Also, cfmodule calls can be tricky sometimes when depending on session/cookie variables-- you may want to put your session checks