Using Java 7 G1 garbage collector

2011-03-29 Thread Carl Meyer
JDK 7 preview is available: http://jdk7.java.net/ Have done a small amount of testing with Java 7 and find encouraging results for application performance particularly with the new Garbage First garbage collector -XX:+UseG1GC in place of the usual -XX:+UseParallelGC garbage collector. Don’t

Fullasagoog not updating?

2011-03-29 Thread Dave Merrill
Not sure if this is a live-under-a-rock-and-missed-the-news thing, but the latest post I see on fullasagoog is 3 weeks old. Is its collection mechanism not working? Please don't say it's going away, it's wonderful. Or maybe nobody it watches is posting anything? That can't be right, right? Thank

Re: CFSEARCH puzzle

2011-03-29 Thread Raymond Camden
By any chance is this online where we can see? On Tue, Mar 29, 2011 at 8:52 PM, Kevin Parker wrote: > > I checked that and no its not > > > ++ > Kevin Parker > Advanced Imaging > > e: webmas...@advancedimaging.com.au > w: www.advancedimaging.com.au > m: 0418 815 527 > > ++ > > ht

RE: CFSEARCH puzzle

2011-03-29 Thread Kevin Parker
I checked that and no its not ++ Kevin Parker Advanced Imaging e: webmas...@advancedimaging.com.au w: www.advancedimaging.com.au m: 0418 815 527 ++ http://au.linkedin.com/in/krparker -Original Message- From: Ian Skinner [mailto:h...@ilsweb.com] Sent: Wednesday, 30 M

Re: CFSEARCH puzzle

2011-03-29 Thread Raymond Camden
Don't forget that your context may include HTML, sometimes broken HTML. One trick I employ is to use context markers like so ___BEGIN___ ___END___ I then remove all HTML, and replace ___BEGIN___ with and __END__ with wrote: > > On 3/29/2011 3:32 PM, Kevin Parker wrote: >> That's correct - cont

Re: java.lang.OutOfMemoryError - requires multiple service restart each week

2011-03-29 Thread Carl Meyer
Check the logs. CF\runtime\logs\OUT and EVENT log. The contents to the log prior to CF needing a restart or server reboot will likely provide a clue as to issue. The details of your JVM Arguments in CFADMIN > Server Settings > Java and JVM will be of interest to readers. HTH, Carl. > We have

Re: java.lang.OutOfMemoryError - requires multiple service restart each week

2011-03-29 Thread Kym Kovan
On 30/03/2011 10:28, ccie 6862 wrote: > > We have a server running ColdFusion MX 7 on Windows 2003 i386 with 4GB of > memory. A couple of months ago, we started to receive the > java.lang.OutOfMemoryError error prior to requiring a reboot. Restarting the > CF service fixes the problem, usually

Re: Open source ColdFusion forums

2011-03-29 Thread Greg Luce
+1 for Maureen's idea. On Tue, Mar 29, 2011 at 1:49 PM, Maureen wrote: > > A set of tools that allowed integration with existing sites such as > Facebook, Twitter, Linkedin, Amazon, Google Maps, etc..would seem more > useful than creating an entirely new code base for forums, etc. > > The form

java.lang.OutOfMemoryError - requires multiple service restart each week

2011-03-29 Thread ccie 6862
We have a server running ColdFusion MX 7 on Windows 2003 i386 with 4GB of memory. A couple of months ago, we started to receive the java.lang.OutOfMemoryError error prior to requiring a reboot. Restarting the CF service fixes the problem, usually for a couple of days. I've run across increasin

Re: CFSEARCH puzzle

2011-03-29 Thread Ian Skinner
On 3/29/2011 3:32 PM, Kevin Parker wrote: > That's correct - context is working fine but no mark-up. > > Now that's actually quite interesting - I added a cfdump as you hinted and > the markup is in the dump but when I output the context to the page as part > of the search results it's not. Is it

RE: CFSEARCH puzzle

2011-03-29 Thread Kevin Parker
That's correct - context is working fine but no mark-up. Now that's actually quite interesting - I added a cfdump as you hinted and the markup is in the dump but when I output the context to the page as part of the search results it's not. ++ Kevin Parker Advanced Imaging e: webmas...@

Re: Open source ColdFusion forums

2011-03-29 Thread Justin Scott
> Take a look at the Neptune framework and see if it doesn't come close > to what you are thinking (in full disclosure, I am the primary author). > http://www.bryantwebconsulting.com/docs/neptune/ Ah, now that is much closer to what I had in mind. I will definitely be taking a look at that code.

Re: Open source ColdFusion forums

2011-03-29 Thread Justin Scott
> Sorry Justin your going to have to use Google yourself this time :-) Hi Russ, not to get too far off track, but that's another way of saying: "I'm pretty sure they're out there so I'll be vague in my argument and then not be prepared to back up my claims with examples." I really am interested

Re: Open source ColdFusion forums

2011-03-29 Thread Gerald Guido
>and processing data at runtime, Take a look at Steve Bryant's Datamgr for handing the database side of things. It is a staple of my tool box, especially for rapid prototyping. I love that thing. http://www.bryantwebconsulting.com/docs/datamgr/ HTH G! On Tue, Mar 29, 2011 at 5:05 PM, Steve Br

Re: Open source ColdFusion forums

2011-03-29 Thread Russ Michaels
Sorry Justin your going to have to use Google yourself this time :-) On Tue, Mar 29, 2011 at 10:05 PM, Steve Bryant < st...@bryantwebconsulting.com> wrote: > > >I'm > >thinking in terms of a set of tools which handle building the forms > >and processing data at runtime, not a generic code genera

Re: Open source ColdFusion forums

2011-03-29 Thread Steve Bryant
>I'm >thinking in terms of a set of tools which handle building the forms >and processing data at runtime, not a generic code generator. I want >to be able to define my field and its properties once and then have >that automatically applied everywhere (add/edit form displays, >validation, process

Re: SOT: SQL CTE update

2011-03-29 Thread Dan G. Switzer, II
Jason, That's why I said to sort the tree in using "DESC" instead of "ASC" on the Depth column: > - - -*Drivers *(3) > - -Software (2) > -Support (1) > Home (0) If you pull in descending order, you'll know the max depth from the first row, so if it's a matter of using the depth for indent

Re: SOT: SQL CTE update

2011-03-29 Thread Jason Durham
The in example I posted, I'm calculating the depth in the select statement. The depth is determined by the order in which the row is returned. If I start from a child, the child is returned first (therefore it's 0). If I start from the parent (top level nav), the parent is 0. Consider this...

Re: Open source ColdFusion forums

2011-03-29 Thread Geoffrey Bentz
Sounds interesting. I have a system for automating some of this with CF9 ORM. I add validation metadata to the object properties and use the metadata to generate both server-side validation and a client-side script to use with the jQuery validation plugin. I also have a system for generating the

Re: SOT: SQL CTE update

2011-03-29 Thread Dan G. Switzer, II
Why bother with cursors or temp tables at all and just sort across Depth desc instead of Depth asc? -Dan On Tue, Mar 29, 2011 at 2:59 PM, Jason Durham wrote: > > Nevermind... all I could see were nails. I'll create a temp table for the > regular navigation and use that table for breadcrumbs (

Re: SOT: SQL CTE update

2011-03-29 Thread Jason Durham
Nevermind... all I could see were nails. I'll create a temp table for the regular navigation and use that table for breadcrumbs (the depth is accurately created on that query). Jason Durham On Tue, Mar 29, 2011 at 1:44 PM, Jason Durham wrote: > I apologize if this is an inappropriate place t

Re: Open source ColdFusion forums

2011-03-29 Thread Maureen
A set of tools that allowed integration with existing sites such as Facebook, Twitter, Linkedin, Amazon, Google Maps, etc..would seem more useful than creating an entirely new code base for forums, etc. The forms processing sounds interesting, but I suspect it also has been done multiple times.

SOT: SQL CTE update

2011-03-29 Thread Jason Durham
I apologize if this is an inappropriate place to ask this question. I'm using a CTE for a recursive query to assemble navigation. In the CTE, I'm creating a column that contains the depth of the navigation. This depth is ultimately inserted into the class of an HTML element. I'm refactoring h

Re: Open source ColdFusion forums

2011-03-29 Thread Justin Scott
> I know I mentioned this earlier, but why not contribute to an > existing project? Galleon could use help. Many CF projects > could use additional developers. I may do some of that as well. :) -Justin ~| Order the Adobe Coldf

Re: Open source ColdFusion forums

2011-03-29 Thread Justin Scott
> Sorry to say Justin, but there are also plenty of CRUD > generators/builders/apps, form generators, CFC builders > ... > So it couldn't really get easier than it is already to be honest. There are plenty of code generators, sure, but I've never found anything along the lines of what I have in m

Re: Open source ColdFusion forums

2011-03-29 Thread Russ Michaels
Sorry to say Justin, but there are also plenty of CRUD generators/builders/apps, form generators, CFC builders and the likes out there already. In fact cfeclipse and cfbuilder do that out of the box and there are plugins for dreamweaver. There are also full blow apps for doing all the CRUD stuff,

Re: Open source ColdFusion forums

2011-03-29 Thread Raymond Camden
I know I mentioned this earlier, but why not contribute to an existing project? Galleon could use help. Many CF projects could use additional developers. On Tue, Mar 29, 2011 at 11:54 AM, Justin Scott wrote: > > I'd like to thank everyone for the feedback regarding an open source > ColdFusion pr

Re: Open source ColdFusion forums

2011-03-29 Thread Justin Scott
I'd like to thank everyone for the feedback regarding an open source ColdFusion project. Given the availability of several decent forum applications I do not believe that would be a good use of the time available. The medical billing application sounds like a good project, and I wouldn't mind be

Re: CFSEARCH puzzle

2011-03-29 Thread Raymond Camden
So to be clear. Are you saying context is working, but NOT the markers (contexthighlightbegin/end)? If you do a cfdump right after the cfsearch, you don't see the markers but DO see context? On Tue, Mar 29, 2011 at 5:02 AM, Kevin Parker wrote: > > Correct Ray - even if I look at the output code

RE: CFSEARCH puzzle

2011-03-29 Thread Kevin Parker
Correct Ray - even if I look at the output code I can't see the mark-up in the results where I expect it so it's a bit of a mystery. I tried Googling this of course but no joy! ++ Kevin Parker Advanced Imaging e: webmas...@advancedimaging.com.au w: www.advancedimaging.com.au m: 0418 815