Coldfusion Looking Glass CFC

2005-12-19 Thread cfteam
Hello Everyone, We have finished putting together a new component that performs ping, traceroute, dig and whois lookups. If anybody is in need of a coldfusion looking glass script: http://www.maxnoc.com/support/kb/coldfusion_looking_glass.html If you would like to see the cfc in action:

RE: Coldfusion Looking Glass CFC

2005-12-19 Thread Bobby Hartsfield
That beats the crap out of all my shell scripts and batch files! Good job. It seems surprisingly fast on the test form too. I'll get it set up in a bit and play with it some more. Thanks ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original

CFUNITED-06 topics and speakers announced

2005-12-19 Thread Michael Smith
CFUNITED-06 topics and speakers are posted at http://www.cfunited.com/ CFUNITED is the premier ColdFusion conference with over 1000 attendees. And it is now 33% longer (4 days) to let you learn even more! If you have end of FY-2005 funds to spend then you can both save you budget and get the best

Re: For emergency only

2005-12-19 Thread Thomas Chiverton
On Friday 16 December 2005 14:16, Wayne Putterill wrote: The SE P990 is looking like it will be a great phone when its released Fingers crossed it'll be fast enough to run skype, toes crossed SE come to their senses and but 11g on as well as b. -- Tom Chiverton Advanced ColdFusion

RE: For emergency only

2005-12-19 Thread Ben Forta
Just remember that it is a tri-band, not a quad-band, and it does not support 850. Which means that if you are a Cingular customer in the U.S. you'll have lousy local coverage. :-( -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Monday, December 19, 2005 10:25

Re: For emergency only

2005-12-19 Thread Wayne Putterill
What I really want is a phone that will run pandora.com over wifi in the office as there is no sound on our dev machines :( On 12/19/05, Thomas Chiverton [EMAIL PROTECTED] wrote: On Friday 16 December 2005 14:16, Wayne Putterill wrote: The SE P990 is looking like it will be a great phone when

RE: For Emergency Only

2005-12-19 Thread Claremont, Timothy
I can vouch for that lousy local coverage. I have Cingular with a Motorola MPX200 that is a tri-band. Great phone, but not much more than a PDA with the poor coverage. Just ordered a Blackberry 7100g for $70 through Cingular. Hopefully that will work a little better!

Re: For emergency only

2005-12-19 Thread Thomas Chiverton
On Monday 19 December 2005 15:33, Ben Forta wrote: support 850. Which means that if you are a Cingular customer in the U.S. Picture an Englishmen shaking his head at the terrible state of mobile telecoms in the US :-) -- Tom Chiverton Advanced ColdFusion Programmer

RE: Need help with tricky XPath syntax

2005-12-19 Thread Ian Skinner
Larry If you have not solved this issue yet, I find this a great resource for xslt/xpath questions. [http://www.zvon.org/xxl/XSLTreference/Output/index.html] I have always been able to figure out what I need from their tutorials and examples. If I have time later today, I'll take a crack at

Random Numbers

2005-12-19 Thread Stuart Kidd
Hi guys, I'm trying to write an app which will choose three random numbers for a competition based on how many etnries there are.  I'm having problems trying to work out a way not to choose the same number twice, is there a way to do that which will fit into my CFLOOP structure?  Or is there a

Re: For emergency only

2005-12-19 Thread Wayne Putterill
Heh heh, I've been resisting that temptation :) Except I'm Welsh :) On 12/19/05, Thomas Chiverton [EMAIL PROTECTED] wrote: On Monday 19 December 2005 15:33, Ben Forta wrote: support 850. Which means that if you are a Cingular customer in the U.S. Picture an Englishmen shaking his head at

Re: Random Numbers

2005-12-19 Thread Ben Doom
I'd create a list or array (well, for me, an array) in the loop. Insert the winners there, checking each time to make sure that the winner you picked isn't already chosen. Then, loop over the list of winners to do your inserts. --Ben Stuart Kidd wrote: Hi guys, I'm trying to write an

Random Numbers -Whoops!

2005-12-19 Thread Stuart Kidd
Sorry, here is teh code I meant to give, not just the small bit from before: Hi guys, I'm trying to write an app which will choose three random numbers for a competition based on how many etnries there are.  I'm having problems trying to work out a way not to choose the same number twice, is

RE: Random Numbers

2005-12-19 Thread Adkins, Randy
Not sure of what all you are trying to do, but something like this should work (not tested though) CFSET SUCCESSNUM = FALSE CFLOOP CONDITION=SuccessNum EQ FALSE cfloop from=1 to=#ShowCompetitions.prizeCount cfset RandomWinner = RandRange(1, FindEntries.RecordCount)

Re: Dumb CF methodology question

2005-12-19 Thread Sam Farmer
I wrote about a framework we use, CFMVC, for CFDJ: http://coldfusion.sys-con.com/read/49185.htm Cheers, Sam F On 12/16/05, Sean Corfield [EMAIL PROTECTED] wrote: On 12/16/05, Phill B [EMAIL PROTECTED] wrote: I know there is Mach II and Model-Glue out there but are there any other MVC

Re: For emergency only

2005-12-19 Thread Ken Ferguson
Poor coverage is a feature!!! My cellphone rings WAY too much as it is. If it wasn't for dropped calls and no service, I'd spend entire days on the damn phone. I just want a bit of peace and quiet; is that too much to ask??? Oh well, at least the rings are happy and, most importantly, *PAYING*

Re: Random Numbers

2005-12-19 Thread Greg Morphis
You could create a table for winners... and use select * from players where playerid not in (select playerid from winners) Let your DB do the work On 12/19/05, Adkins, Randy [EMAIL PROTECTED] wrote: Not sure of what all you are trying to do, but something like this should work (not tested

RE: Random Numbers

2005-12-19 Thread Stuart Kidd
Thanks! I've now put the all the entries in a loop - entryArray (not shown below).  The problem i've come across is how to check accurately whether my random number is contained within my winnerArray.  I have indented the line i'm talking about with 5*.  Any help I'd be grateful. Thanks,

RE: Random Numbers

2005-12-19 Thread Bobby Hartsfield
What database are you using? In SQL server you can select the top 3 and order by newid() I'm pretty sure you can do that in MySQL too... I'm just not sure if it's actually 'newid()' in MySQL - Else, I can think of a couple different ways to do it The simplest way I can think of...

CF Flash Forms and FCKeditor - do they work together?

2005-12-19 Thread David Adams
Has anyone been able to get the FCKeditor to work within a CFFORM with format set to Flash? I haven't tried it yet but I am wondering if there is any point because CF will be compiling the code behind the FCKeditor into an swf. This will likely cause problems. Any experiences that anyone

RE: Random Numbers

2005-12-19 Thread Stuart Kidd
Yes, it's MS-SQL.  I can sort them but sometimes there may be 100 entries and i'd like to pick random numbers not just the top 3. When you mean newid - does that do a random pick? Thanks, Saturday From: Bobby Hartsfield [EMAIL PROTECTED] Sent: Monday,

RE: Random Numbers

2005-12-19 Thread Andy Matthews
mySQL is SELECT some_column FROM some_table LIMIT 3 ORDER BY RAND() !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: Random Numbers

2005-12-19 Thread Bobby Hartsfield
Seemingly... I haven’t sat and tested just how 'random' it actually is but it seems to always be random enough for my purposes. The only 'gotcha' I can think of when selecting more than 1 record at a time with it... is that they may always be 3 sequential records in the database... but if you

Re: verity spider not working (VDK: Error E3-0422)

2005-12-19 Thread Greg Saunders
i have had no luck solving the problem below...can anyone help? thanks, greg At 07:35 AM 12/3/2005, Greg Saunders wrote: I'm trying to run the Verity spider, but not having much luck. It runs through my site nicely, and I see a lot of lines like this: 2005/12/03 07:20:43(ind031001) Updating

RE: Random Numbers

2005-12-19 Thread Stuart Kidd
Thanks Andy and Bobby, that's it! :) So much easier doing in the SQL Perfect! From: Andy Matthews [EMAIL PROTECTED] Sent: Monday, December 19, 2005 12:55 PM To: CF-Talk cf-talk@houseoffusion.com Subject: RE: Random Numbers mySQL is SELECT

RE: Random Numbers

2005-12-19 Thread Bobby Hartsfield
Yeah that’s it. Thanks. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Monday, December 19, 2005 12:50 PM To: CF-Talk Subject: RE: Random Numbers mySQL is SELECT some_column

Changing the Developer Version IP Address

2005-12-19 Thread John Stanton
Hi, I'm new to the list. I hope this is the right place to ask this question. I need to know how to change the developer edition IP address for ColdFusion 7. Is this possible? Can someone tell me how to do it? I don't know how it picked up an IP address that isn't even in use on our network, but I

Re: Changing the Developer Version IP Address

2005-12-19 Thread Barney Boisvert
I believe just restarting CF will clear out the IP cache. Then it'll work from localhost and the first two IPs that connect. cheers, barneyb On 12/19/05, John Stanton [EMAIL PROTECTED] wrote: Hi, I'm new to the list. I hope this is the right place to ask this question. I need to know how to

Known Bug in CFWDDX CFML2JS Variable Name Case?

2005-12-19 Thread Dawson, Michael
I'm using CF7.0.1. I checked the livedocs and it states: Changed column name case behavior: ColdFusion preserves the case of column names in JavaScript. (Earlier releases converted query column names to lowercase.) However, my tests show that CFWDDX outputs all javascript variables to

Re: ClusterCATS?

2005-12-19 Thread Rick Root
So, should I entirely avoid ClusterCATS? Rick Root wrote: Anyone out there using ClusterCATS for load-balancing/failover? We have two licenses of CFMX Enterprise and we might go this route if it's reliable. From what I can tell, ClusterCATS will redirect requests from server A to server

Re: Changing the Developer Version IP Address

2005-12-19 Thread John Stanton
Thanks Barney, that seemed to do the trick. On 12/19/05, Barney Boisvert [EMAIL PROTECTED] wrote: I believe just restarting CF will clear out the IP cache. Then it'll work from localhost and the first two IPs that connect. cheers, barneyb

Best way(s) to enhance productivity

2005-12-19 Thread Chuck Jurkiewicz
Hi - I am an advanced CF'er looking to speed up and standardize CF development at my workplace. I work with 6 other cf'ers ranging from beginner to expert and right now we all code independently and in our own styles. We all use CFC's, but that is the extent of our OO knowledge and use - no one

Re: CF Flash Forms and FCKeditor - do they work together?

2005-12-19 Thread Sam Farmer
It won't work. In Flash forms you can only use simple html and nothing anywhere near as complex as required for FCK Editor. Flex has a built in WYSIWYG editor but its not availible to flash forms (though maybe in a future release?) Cheers, Sam F On 12/19/05, David Adams [EMAIL PROTECTED]

missing Oracle data source option

2005-12-19 Thread Plunkett, Matthew
A colleague installed the Oracle runtime, and then installed ColdFusion. For some reason, Oracle is not available as a datasource in the drop down menu when trying to create a new datasource. Any ideas as to why that might happen? I've never seen this missing.

Re: missing Oracle data source option

2005-12-19 Thread Dave Carabetta
On 12/19/05, Plunkett, Matthew [EMAIL PROTECTED] wrote: A colleague installed the Oracle runtime, and then installed ColdFusion. For some reason, Oracle is not available as a datasource in the drop down menu when trying to create a new datasource. Any ideas as to why that might happen? I've

Re: CF Flash Forms and FCKeditor - do they work together?

2005-12-19 Thread John McKown
On a side note we have seen FCKeditor crashing Firefox HARD when you use the cut or paste icons. Anyone else see that happen? John McKown David Adams wrote: Has anyone been able to get the FCKeditor to work within a CFFORM with format set to Flash? I haven't tried it yet but I am

RE: missing Oracle data source option

2005-12-19 Thread Plunkett, Matthew
-Original Message- From: Dave Carabetta Sent: Monday, December 19, 2005 3:52 PM To: CF-Talk Subject: Re: missing Oracle data source option They are likely using ColdFusion Standard, which does not support Oracle databases by default. If they wish to use Oracle with CF Standard, they

Re: Coldfusion Looking Glass CFC

2005-12-19 Thread Sean Corfield
On 12/19/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: We have finished putting together a new component that performs ping, traceroute, dig and whois lookups. If anybody is in need of a coldfusion looking glass script: Looks very useful but just to clarify, it's Windows-only right? -- Sean

RE: Known Bug in CFWDDX CFML2JS Variable Name Case?

2005-12-19 Thread Dan G. Switzer, II
Michael, What's your CF code look like? Note that CF handles the following differently: cfset struct.keyName = KEYNAME cfset struct[keyName] = keyName If you use the dot notation, then CF stores the key in all upper case. If you use the bracket notation, CF will keep the case. You can verify

Re: missing Oracle data source option

2005-12-19 Thread wolf2k5
On 12/19/05, Plunkett, Matthew [EMAIL PROTECTED] wrote: This is in fact what the problem ended up to be. Just used the wrong serial number...ugh, reinstall needed. Are you sure you need to reinstall it? I think you can just enter the Enterprise Edition serial number without reinstall ...

RE: Known Bug in CFWDDX CFML2JS Variable Name Case?

2005-12-19 Thread Dawson, Michael
Here is my code. I'm going to try it the other way now. It kind of sucks because I like to use camel-case in CF, but it looks like I have to use lower-case in JS. I saw the part about the query column names, but I was hoping it was a typo. ;-) Thanks cfset object = structNew() cfset

Re: CF Flash Forms and FCKeditor - do they work together?

2005-12-19 Thread Will Tomlinson
I know this doesn't have anything to do with the thread really, but I thought this example was kinda cool. Cfform as a text editor. http://cfpim.blogspot.com/2005/04/rich-textarea-for-flash-cfforms.html Will ~| Logware

Re: Coldfusion Looking Glass CFC

2005-12-19 Thread cfteam
Hi Sean, I haven't tested the cfc on linux os yet, but it should work. It's either cfexecute or the java runtime object we use in the methods. Thank you, Michael On 12/19/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: We have finished putting together a new component that performs

Re: Coldfusion Looking Glass CFC

2005-12-19 Thread Will Tomlinson
This is WAY cool! Thanks, Will ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message:

RE: Coldfusion Looking Glass CFC

2005-12-19 Thread Munson, Jacob
I'm assuming that since the cfc has this for the ping command ping.exe -n 4, it only runs on Windows. I believe in Linux it would be ping -c 4. Probably the same for OS X, but not sure. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, December 19,

RE: Coldfusion Looking Glass CFC

2005-12-19 Thread cfteam
Well, yes, the cfc download at the moment is setup for Windows Operating Systems, but you should be able to update the executable paths easily. I'll give it a try on Linux Os this weekend, and upload a linux version as well. Thank you, Michael I'm assuming that since the cfc has this for

Problems with Email encoding of Norwegian chars

2005-12-19 Thread Duncan
Hi all, We have a problem where by a user is reading an email but the characters are not coming out properly. Our findings are as follows Our mail server - Exchange + Outlook works fine Gmail - works fine Yahoo - works fine Personal mail - on Merak mailserver works fine Hotmail - doesnt Client -

Re: Coldfusion Looking Glass CFC

2005-12-19 Thread Sean Corfield
On 12/19/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I haven't tested the cfc on linux os yet, but it should work. It's either cfexecute or the java runtime object we use in the methods. OK, I modified it to work with OS X: http://corfield.org/articles/lg.cfc.zip -- Sean A Corfield --

Re: Need help with tricky XPath syntax

2005-12-19 Thread Lawrence B. Afrin, M.D.
Already resolved (the final couple of messages in my dialogue with Hua Wei were rejected by the list for some reason). Thanks anyway, though. -- LBA Ian Skinner wrote: Larry If you have not solved this issue yet, I find this a great resource for xslt/xpath questions.

Re: ClusterCATS?

2005-12-19 Thread Kym Kovan
Hi Rick, you wrote: So, should I entirely avoid ClusterCATS? The last time I used ClusterCats there were two sets of functionality, one aspect was load balancing where CC redirected to another server via a different URL and the second aspect was fail-over where a machine died entirely.

Not enough storage is available to process this command

2005-12-19 Thread gabriel l smallman
Hey all, anyone ever encounter this error? Basically box has tons of drive space, loads of ram, jrun was using 700 megs and heap is set to 1 gig. At some point it failed bad enough that it wouldn't event error catch and I just got a 500 server error Not enough storage is available to process this

Re: Problems with Email encoding of Norwegian chars

2005-12-19 Thread Paul Hastings
Duncan wrote: We have a problem where by a user is reading an email but the characters are not coming out properly. Our findings are as follows Our mail server - Exchange + Outlook works fine Gmail - works fine Yahoo - works fine Personal mail - on Merak mailserver works fine Hotmail -

Re: Coldfusion Looking Glass CFC

2005-12-19 Thread dave
That link gives an error Sean ~Dave the disruptor~ good sites - make money getting rid of ie :) http://explorerdestroyer.com/ http://www.killbillsbrowser.com/ From: Sean Corfield [EMAIL PROTECTED] Sent: Monday, December 19, 2005 7:03 PM To: CF-Talk

RE: Known Bug in CFWDDX CFML2JS Variable Name Case?

2005-12-19 Thread Dan G. Switzer, II
Michael, Run the following code: cfscript s1 = structNew(); s1.camelCase = key is stored in uppercase; s2 = structNew(); s2[camelCase] = key is stored in camel-case; /cfscript cfdump var=#s1# label=upper case / br / cfdump var=#s2# label=camel-case / cfwddx action=cfml2js input=#s1#

RE: Problems with Email encoding of Norwegian chars

2005-12-19 Thread Paul Vernon
I am looking for ideas on what may be causing this issue. Thanks in advance! It looks to me like there is a possible corruption in the mail and the mail client you are using (I'm assuming CFPOP) isn't coping with that particular corruption particularly well. The content of the mail appears to

Re: Problems with Email encoding of Norwegian chars

2005-12-19 Thread Duncan
Hi Paul, This is a mail generated by CF. the headers are as follows: Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Mailer: ColdFusion MX Application Server My results as above are from receiving the mail at various locations - cfpop is

Re: Problems with Email encoding of Norwegian chars

2005-12-19 Thread Duncan
what version of cf? MX6 or 5 what encoding? the mail header says UTF-8 is the hotmail a localized version for the norwegian market? UK / AUS what exactly is the problem? characters not displaying correctly mojibake? Yup, for a couple of Norwegian characters browser simply not swapping to the

Re: Coldfusion Looking Glass CFC

2005-12-19 Thread Sean Corfield
On 12/19/05, dave [EMAIL PROTECTED] wrote: That link gives an error Sean Thanx. I foolishly assumed that a file called lg.cfc.zip would be downloadble but the lg.cfc part is being caught by the CF connector it seems... OK, I modified it to work with OS X: http://corfield.org/articles/lg.zip

Re: Problems with Email encoding of Norwegian chars

2005-12-19 Thread Paul Hastings
Duncan wrote: what version of cf? MX6 or 5 oh boy. cf5's a tougher nut to crack when it comes to encoding, it basically ignores it. what encoding? the mail header says UTF-8 yes but what encoding are you actually using? cf5 mx handle this quite differently. is the hotmail a localized

Re: Problems with Email encoding of Norwegian chars

2005-12-19 Thread Duncan
Sorry, all our multilingual stuff runs exclusively on MX6. yes but what encoding are you actually using? how do you tell? SQLServer is not in UTF-8 - I am working on getting a fresh install so we can change this over. we are using nvarchar at the moment. The email is coming out ok, so I

Re: Problems with Email encoding of Norwegian chars

2005-12-19 Thread Paul Hastings
Duncan wrote: Sorry, all our multilingual stuff runs exclusively on MX6. yes but what encoding are you actually using? how do you tell? SQLServer is not in UTF-8 - I am working on if you're using N datatypes it internally uses ucs2, when it talks to sql server it's utf-8 unless you tell it

Re: Problems with Email encoding of Norwegian chars

2005-12-19 Thread Duncan
if you're using N datatypes it internally uses ucs2, when it talks to sql server it's utf-8 unless you tell it otherwise. So do we even need to change SQL server from its default encoding (sql_latin_1_general_cp1_ci_as)? What are the implications of using N in our CF queries? What is it that we