RE: [Reactor for CF] Perplexing Bug - Reactor / MG:U on ColdFusion 6.1 (Windows)

2006-09-22 Thread Joshua Scott
A couple of things. 1. The DSN verifies in CF Administrator with no problem. So I can not imagine that it is a DSN issue, also reactor initially had some security issues with the database which I resolved which makes me know that at least it sees the db. 2. I can point the browser to the XML

RE: [Reactor for CF] Perplexing Bug - Reactor / MG:U on ColdFusion 6.1 (Windows)

2006-09-22 Thread Joshua Scott
Actually, It looks like this was a known bug that was fixed and must be broken again: http://trac.reactorframework.com/reactor/trac.cgi/changeset/283 - JS Joshua Scott Resonant Media Technologies, LLC. http://www.resonantmedia.com |

Re: [Reactor for CF] Perplexing Bug - Reactor / MG:U on ColdFusion 6.1 (Windows)

2006-09-22 Thread Beth Bowden
Joshua,It doesn't look like we were able to check the fix out in cf6.1. Here's the code in iterator.cfc: cfif ListFirst(Server.ColdFusion.ProductVersion) GTE 7line 463cfset QueryAddColumn( variables.query, reactorRowDeleted, Bit, deletedArray) / cfelse!--- hopefully this works in MX

Re: [Reactor for CF] Reactor (or model glue?) not freeing up memory

2006-09-22 Thread Dan Wilson
Make sure all of your controllers / services and non-instance components have all been var scoped, If not some memory problems can occur. This tool will check for any unscoped variables. http://www.schierberl.com/varScoper/ On 9/22/06, Erik-Jan Jaquet [EMAIL PROTECTED] wrote: Hi all, I

Re: [Reactor for CF] Perplexing Bug - Reactor / MG:U on ColdFusion 6.1 (Windows)

2006-09-22 Thread Beth Bowden
Joshua,That's puzzling. Perhaps, a leading space? Can you change line 462 to: cfif ListFirst( trim(Server.ColdFusion.ProductVersion) ) GTE 7Thanks,BethOn 9/22/06, Joshua Scott [EMAIL PROTECTED] wrote: That value returns: 6,1,0,hf45343_611 - JS

Re: [Reactor for CF] Reactor (or model glue?) not freeing up memory

2006-09-22 Thread Kurt Wiersma
How much information are you placing in the session scope and what is your session timeout? It should like you might have a lot of user sessions will a lot of data in them which might explain the symptoms you are seeing. --KurtOn 9/22/06, Dan Wilson [EMAIL PROTECTED] wrote: Make sure all of your

[Reactor for CF] aggregate functions in reactor queries

2006-09-22 Thread Tim Archambault
First stab at writing a gateway function. I'm trying to apply Joe Rinehart's recent blog entry http://clearsoftware.net/index.cfm?mode=entryentry=8D531C0E-3048-55C9-431EB0D750B46537 to something I'm trying to accomplish.Trying to find a good example of using a sum function in ReactorHave tables