Re: Reporting

2009-07-30 Thread denstar
Yup. And iReport is a swell report builder, IMO. Nifty tie-in with JasperServer ta boot! -- Angels dancing on the head of a pin dissolve into nothingness at the bedside of a dying child. Waiter Rant On Wed, Jul 29, 2009 at 9:21 PM, David Mineermin...@gmail.com wrote: Are you able to

Re: SSH Telnet - ColdFusion

2009-07-30 Thread Tom Chiverton
On Wednesday 29 Jul 2009, Arsalan Tariq Keen wrote: didn't get your point dude...! AnyTerm is an AJAX app with simple server backend that enables SSH to the server it's running on through nothing more than a browser. It's free too. I'm sure CFHTTP could use the same interface. -- Helping to

Penetration Testing Tools

2009-07-30 Thread Joseph Bugeja
Hello Friends, I am in the process of doing penetration testing on a Web Site that runs solely on IE (Internet Explorer). We need to identity problems such as XSS, Injections, Insecure Direct Object References, etc. Do you recommend or suggest any good tool, ideally a free or open-source

Re: Question on page reloads and include refresh

2009-07-30 Thread Torrent Girl
How is the navigation being built? Is it dynamic? Try reloading the javascript or header by passing a unique string each time they toggle. Usually there is a caching issue if something does not change within the site ~|

Re: Question on page reloads and include refresh

2009-07-30 Thread Torrent Girl
How is the navigation being built? Is it dynamic? Try reloading the javascript or header by passing a unique string each time they toggle. Usually there is a caching issue if something does not change within the site what do you mean by this? Try reloading the javascript or header by

Flex Help...

2009-07-30 Thread Kim Hoopingarner
I noticed that the Flex forum doesn't get as much attention as the Coldfusion - so forgive me for posting my Flex question here. I know a lot of the CF programmers use Flex... I created a datagrid using actionscript. Now I need to add a button to one of the columns and I can't find the

Re: CFBuilder Code Coloring

2009-07-30 Thread Donnie Carvajal
Hi Richard, Thanks for the directions. I checked those settings out before and there does not appear to be a place to set the tag colors. They come defaulted as a dark red and there is not a color setting in the preferences that matches. Were you successful in changing the colors of the

Re: Flex Help...

2009-07-30 Thread Tom McNeer
Kim, On Thu, Jul 30, 2009 at 8:56 AM, Kim Hoopingarner k.hoopingar...@e-details.com wrote: I noticed that the Flex forum doesn't get as much attention as the Coldfusion - so forgive me for posting my Flex question here. I know a lot of the CF programmers use Flex... The place to go for

Re: Flex Help...

2009-07-30 Thread Tom Chiverton
On Thursday 30 Jul 2009, Kim Hoopingarner wrote: I noticed that the Flex forum doesn't get as much attention as the Coldfusion - so forgive me for posting my Flex question here. You want FlexCoders on Yahoo groups. -- Helping to authoritatively aggregate internet ubiquitous relationships as

Totally Bizarre error on QoQ containing CLOB

2009-07-30 Thread Michael David
Hello all. I am migrating an app from SQL Server to Oracle 9i, and am getting a bizarre error. I have a query that selects several columns, the datatype for some of which are Oracle CLOBs. When I run Query of Queries on that date the CLOB colums cause this error: Query Of Queries runtime

Re: Totally Bizarre error on QoQ containing CLOB

2009-07-30 Thread Dave Watts
When I run Query of Queries on that date the CLOB colums cause this error: Query Of Queries runtime error. Unsupported SQL type java.sql.Types.CLOB. I checked the CF Adminstrator (CF7), and I do have CLOB checked. I don't think query of queries supports CLOB fields. Enabling CLOB fields

Form in CFWINDOW - currently CHEATING to get parent to refresh...

2009-07-30 Thread Les Mizzell
Seems simple enough. Right now I've got: 1. Parent page, which is simply a standard record set with an edit button for each record. 2. Click edit and a window opens with a small update form. 3. Hit Submit, and the form submits back to an update query on the parent page and the record is

OT javascript

2009-07-30 Thread Chad Gray
Say I have two select inputs on one page and they are named the same. select name=ID option value=Please Select/option option value=11/option /select select name=ID option value=Please Select/option option value=11/option /select I want to write javascript to check that both of these are not

Re: Totally Bizarre error on QoQ containing CLOB

2009-07-30 Thread James Holmes
Correct. The original query will need to use to_char() on the clob column to get a char type for QoQ to work. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/7/30 Dave Watts dwa...@figleaf.com: When I run Query of Queries on that date the CLOB colums

Re: OT javascript

2009-07-30 Thread JediHomer
You could set different IDs for them, then reference these... Something like select name=ID id=sel1 option value=Please Select/option option value=11/option /select select name=ID id=sel2 option value=Please Select/option option value=11/option /select

Re: OT javascript

2009-07-30 Thread Cutter (ColdFusion)
Why would you have two selects with the same name? Radio Buttons? Sure. But not selects... Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer Co-Author of Learning Ext JS http://www.packtpub.com/learning-ext-js/book _

RE: OT javascript

2009-07-30 Thread Adrian Lynch
You can in FF3. You have some typos that'll stop it working though. A closing double quote for the name attribute in your selects. You need a . in between the [0] options. Have a look at using jQuery though. It'll make this code a lot smaller. Adrian -Original Message- From: Chad

RE: OT javascript

2009-07-30 Thread Andy Matthews
Are you the originator of the code? I mean can you change the source code? Because having two objects on the page with the same ID is bad mojo. I think you're going to run into lots of problems, and inconsistencies in different browsers if you keep them named the same. andy -Original

RE: OT javascript

2009-07-30 Thread Chad Gray
When you submit it makes a comma delimited list of ID's that we loop over and use. Some pages have one select on them, some pages have 10 selects on them. So rather than making them uniquely named and tracking how many of them we just loop over the comma delimited list. -Original

Re: OT javascript

2009-07-30 Thread Andy Matthews
Chad... Here's what I'd suggest...leave the name value as is, even though that's not the best idea. Add an ID attribute to each, with an increasing numeric value: cb1, cb2, cb3, etc. Give each combobox the same class, comboBox or something like that. Then, you could try something like this:

RE: OT javascript

2009-07-30 Thread Adrian Lynch
That's ok. Having duplicate names is cool. Adrian -Original Message- From: Chad Gray [mailto:cg...@careyweb.com] Sent: 30 July 2009 16:46 To: cf-talk Subject: RE: OT javascript When you submit it makes a comma delimited list of ID's that we loop over and use. Some pages

Map/Grid Application

2009-07-30 Thread Joshua Rowe
Hello, I am wondering if there is a place where I can find a ColdFusion app that can break down any US city map into a grid.. say five miles per section. Kind of like a zip code radius search, except without the zip code and in square blocks in increments of five miles instead of a five mile

re: Map/Grid Application

2009-07-30 Thread Jason Fisher
I've not seen anything in a grid like that, and not sure what you actually are trying to do, but if you're looking for geocoded visualization at a level more granular than just Zip, I highly recommend looking at Universal Mind's SpatialKey product. It will map by Zip or all the way down to

Re: format time to local

2009-07-30 Thread Richard White
thanks for the help and link Richard White wrote: yes good point, also there will be users in usa eventually starting to use it, have you come across this before or seen how others have dealt with this? http://www.sustainablegis.com/blog/cfg11n/index.

Garbage collection every 20 minutes

2009-07-30 Thread Michael Dinowitz
I've been seeing server problems every now and again where the CF server reboots due to memory issues. I've been monitoring it and while the monitor is on it looks like I have garbage collection happening every 20 minutes. Does this sound normal? For a heavily hit sight, what would be expected or

Re: Garbage collection every 20 minutes

2009-07-30 Thread Wil Genovese
Michael, That is not normal. Sounds like you need some JVM tuning. I wrote a fairly decent blog piece on JVM tuning (http://www.trunkful.com ). Also Mike Brunt has some wonderful posts and expience with this. http://www.cfwhisperer.com Wil Genovese One man with courage makes a

Re: Garbage collection every 20 minutes

2009-07-30 Thread Michael Dinowitz
I have it tuned: min heap 512 max heap 1024 permsize: 128 maxpermsize 512 Like I said, LOTS of traffic and a lot of cached txt files being included into a forums thread using GetPageContext().include(). Everything was going well till recently (a month or so). I just noticed the 20 minute GC

Re: Garbage collection every 20 minutes

2009-07-30 Thread Maureen Barger
What's teh jvm version? What is your GC parameter? What changed last month? On Thu, Jul 30, 2009 at 17:37, Michael Dinowitzmdino...@houseoffusion.com wrote: I have it tuned: min heap 512 max heap 1024 permsize: 128 maxpermsize 512 Like I said, LOTS of traffic and a lot of cached txt

Re: Garbage collection every 20 minutes

2009-07-30 Thread Wil Genovese
We've found that setting the min and max to the same size works best. This prevents the issues caused by the JVM needing to auto scale in size while under load. We also set the min and max perm size to be the same as each other. Also, how long have you set your gc intervals? if you do

Re: Garbage collection every 20 minutes

2009-07-30 Thread Michael Dinowitz
Standard CF 8 JVM and GC parameters. What changed is better SEO with various tools and techniques. I implemented canonical links with my duplicate content and made some changes to titles/descriptions as noted in my Webmaster tools reports. Basically, I exposed more of my site in better ways to

Re: Garbage collection every 20 minutes

2009-07-30 Thread Michael Dinowitz
I'm getting a lot of hits, but not in the millions a day. Of course, I'm working on a much smaller hardware set and my only client here is me. :) The standard settings in the cfadmin show: -server -Dsun.io.useCanonCaches=false -XX:MaxPermSize=512m -XX:PermSize=128m -XX:+UseParallelGC

Re: Garbage collection every 20 minutes

2009-07-30 Thread Wil Genovese
If we had 400 sessions going at once we'd know something is wrong. As I look at our monitoring software I see about 15,000 active sessions. This is normal for us and it's much higher during times of heavy usage. Right now with that number of sessions and about 50 requests/ second our

Re: Garbage collection every 20 minutes

2009-07-30 Thread Michael Dinowitz
Are you saying that 400 for me is low or high? If its low then the reason may be that I have special code in place to cause bots to either not have sessions or have sessions of 1 second in duration. Without this code, I expect many more sessions. Also, my standard session length is 15 minutes. If

Debugging / syntax question

2009-07-30 Thread Nick Gleason
Hi there. We're doing some debugging in a log file and are finding a number of records with some unfamiliar syntax. We're assuming that this is java, but have not been able to track it down. The syntax is as follows: [jail][Thu Jul 15 16:15:35 EDT 2009]q:2345 fm:319893464/7625912896 th:40

Re: Garbage collection every 20 minutes

2009-07-30 Thread Wil Genovese
Neither, I was just commenting on your sessions. We do the same to limit bot sessions. We just have that many people using Mlsfinder.com. It's only too high if your storing more session data in memory than you can handle. No two applications and server environments are the same. Have

Re: Garbage collection every 20 minutes

2009-07-30 Thread Michael Dinowitz
The only metrics I've looked at are the CF monitor and it's telling me that normal memory is ok. lots of cached templates (the txt files) but at the moment 700 of them only equal to 3.5 meg. Between the template cache, memory scope vars, and cached queries (none), I'm not looking at more than 4

Re: ColdFusion Builder what have I done?

2009-07-30 Thread Brian FitzGerald
Thank you Christine!!! This was driving me crazy :) ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

cflayout tab style controls?

2009-07-30 Thread Paul Henderson
The cflayout tab styling controls seem to be limited, for example does anyone know how I can change the border color or background color of the tab title area? I've looked through the Adobe Livedocs and can't seem to find where these style controls are set. Thanks in advance, -Paul

Re: cflayout tab style controls?

2009-07-30 Thread James Holmes
You'd need to replace the tab sprite image and other parts of the CSS. All of this comes from the various CSS files added to the page when you use a cflayout tag. If you want to be able to swap out different styles, consider using ExtJS instead. mxAjax / CFAjax docs and other useful articles: