RE: CFMX Developer Edition

2007-02-13 Thread Phillip B. Holmes
bject: Re: CFMX Developer Edition Nope. On 13/02/07, Charlie Griefer <[EMAIL PROTECTED]> wrote: > On 2/13/07, Phillip B. Holmes <[EMAIL PROTECTED]> wrote: > > Rick, > > > > Aside from the limited number of connections, last time I checked, > > it added XML ele

RE: CFMX Developer Edition

2007-02-13 Thread Phillip B. Holmes
Rick, Aside from the limited number of connections, last time I checked, it added XML elements into the page loads.. Which completely horks AJAX and other XML reads. Warmest Regards, Phillip B. Holmes http://www.phillipholmes.com 214-995-6175 -Original Message- From: Richard

RE: user accounts and passwords

2006-12-20 Thread Phillip B. Holmes
>It really isn't soemthing you have to do with your code. Well, that isn't entirely true. You do have to call the https:// via absolute path when invoking an crypted page or have the application redirect to https if you want the entire thing / certain pages to be encrypted. Also, you have to make

RE: Sean Corfield, it's time to approve my post

2006-11-30 Thread Phillip B. Holmes
support contracts would be able to run circles around Adobe's "support". As far as Corfield is concerned, meh. Warmest Regards, Phillip B. Holmes http://www.phillipholmes.com ~| Introducing the Fusion Authorit

RE: Error handling best practices :)

2006-11-22 Thread Phillip B. Holmes
Wow. That’s a shame. --Phil -Original Message- From: Jim Wright [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 6:35 PM To: CF-Talk Subject: Re: Error handling best practices :) Oğuz Demirkapı wrote: > Here is a good sample link. :) > > http://www.adobe.com/v1/deve

RE: Country Name Case

2006-11-22 Thread Phillip B. Holmes
Here you go Rich. This may be of some use to you. http://www.phillipholmes.com/?p=112 Warmest Regards, Phillip B. Holmes http://www.phillipholmes.com -> -Original Message- From: RichL [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 5:03 AM To: CF-Talk Subj

RE: Convert UTF-8 to ISO-8859-1 under CF5

2006-11-17 Thread Phillip B. Holmes
Glad you're problem is worked out. However, I think the solution is a ton easier than using that tag or any character sleauthing conversion technique via java.neo, if you're using CFMX. CF-5 rendered in UTF-7 by default. We had the same issue at my company when upgrading. We did the same thing you

RE: Convert UTF-8 to ISO-8859-1 under CF5

2006-11-17 Thread Phillip B. Holmes
> Unicode isn't actually a "double-byte character set". Of course it isnt. >2. Some characters in DBCS charsets cannot be rendered via UTF-8. period. >Care to quote the relevant passage? Its there.. Read it again. Ever heard of surrogates? You should read this too: http://www.microsoft.co

RE: Convert UTF-8 to ISO-8859-1 under CF5

2006-11-17 Thread Phillip B. Holmes
1. Java being designed 10 years ago has nothing to do with the fact that Unicode is represented as hex internally. 2. Some characters in DBCS charsets cannot be rendered via UTF-8. period. Look it up if you don't believe me: http://en.wikipedia.org/wiki/UTF-8 --Phillip -Original Messag

RE: Convert UTF-8 to ISO-8859-1 under CF5

2006-11-17 Thread Phillip B. Holmes
> they all call it "charset" Yep. So, this is the wrong name for the attribute. There should be an encoding attribute and a charset attribute. Allaire got this wrong and it should be corrected, IMHO. There is no such thing as converting a character set from 8859-1 to UTF-8. You're not slouthing 8

RE: Convert UTF-8 to ISO-8859-1 under CF5

2006-11-17 Thread Phillip B. Holmes
P.s. CFMX renders UTF-8 by default. I think that the CF page load can be switched by using the cfcontent tag (in CF 5). --phil -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Friday, November 17, 2006 10:06 AM To: CF-Talk Subject: Convert UTF-8 to ISO-8859-1

RE: Convert UTF-8 to ISO-8859-1 under CF5

2006-11-17 Thread Phillip B. Holmes
Nope. Unicode is REPRESENTED in coldfusion / java as exactly two bytes of data (a hex value), period. However, what we're talking about here is RENDERING DBCS in a browser. If you're using a character set that uses 7 bits for US ascii and the 8th for special characters, that's fine. But, if you'r

RE: Convert UTF-8 to ISO-8859-1 under CF5

2006-11-17 Thread Phillip B. Holmes
thing through cfhttp (which is kind of a hack). Warmest Regards, Phillip B. Holmes http://www.phillipholmes.com -Original Message- From: Pete Freitag [mailto:[EMAIL PROTECTED] Sent: Friday, November 17, 2006 11:12 AM To: CF-Talk Subject: Re: Convert UTF-8 to ISO-8859-1 under CF5 Hi C

RE: OT: Email Bounce Handler

2006-11-15 Thread Phillip B. Holmes
Cfpoop.. LOL -Original Message- From: Dave Lyons [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 15, 2006 12:49 PM To: CF-Talk Subject: Re: OT: Email Bounce Handler what i did was send the bounces to a separate email account then grab them with cfpoop, then put the headers into a

RE: Managing more than one site and growing

2006-11-03 Thread Phillip B. Holmes
I've not dealt with Farcry personally, but all I've heard are screams of agony coming from friends that have. Warmest Regards, Phillip B. Holmes http://www.phillipholmes.com 214-995-6175 > -Original Message- From: Dan Vega [mailto:[EMAIL PROTECTED] Sent: Friday

RE: CF vs. .NET presentations?

2006-09-29 Thread Phillip B. Holmes
Russ, Correct. But my main point was not for a onesey twosey environment / shop. It's the big sites that have 30+ boxes. An extra MS SQL read is a lot less than 6k per box (example: $180,000.00 vs. an extra SQL read 5,000.00 or so). The session is almost invisible by way of consumed resources on

RE: CF vs. .NET presentations?

2006-09-29 Thread Phillip B. Holmes
>I imagine it will be the same with ASP. DB Session handling in ASP.NET is a native functionality of .NET which you flip the setting in the web.config file and setup your SQL DB that handles only those requests...the process and DB hit are incredibly thin and fast. Remember ADO needs no ODBC bridg

RE: CF vs. .NET presentations?

2006-09-29 Thread Phillip B. Holmes
CF does have excellent session management. However, it is 6K per box to do it. The alternative is to use hardware load balancing with CF standard. This brings its own set of issues. ..NET's enterprise level session management is free. So, when you're running 40+ servers, that's a huge cost benefit

Re: Strip dots out of ip address

2006-06-27 Thread Phillip B. Holmes
No need for anything fancy there: strIP = '69.124.49.27'; strOut = replace(strIP,'.','','ALL'); writeOutput(strOut); Best, Phillip Holmes Quoting [EMAIL PROTECTED]: > All, > > I'm trying to strip the dots out of ip addresses. I'm trying to use > it as part of a un

Re: Query issues

2006-05-25 Thread Phillip B. Holmes
>>> Most likely the 'default' attribute of your argument is set to "" >>> and is not >>> required. >>> Change it to a numeric value. >>> >>> i.e. >>> >>> >>> >>> Then you can validate

Re: ascii to EBCDIC

2006-05-16 Thread Phillip B. Holmes
CDIC. (lib/charsets.jar) See: http://java.sun.com/j2se/1.4.2/docs/guide/intl/encoding.doc.html Warmest Regards, Phillip B. Holmes http://www.phillipholmes.com => Quoting Michael Traher <[EMAIL PROTECTED]>: > Anyone know the best way to convert ASCII t

RE: Displaying Japanese characters

2006-05-01 Thread Phillip B. Holmes
that big of a deal but you obviously would only use this as a stop gap until the data type can be corrected. Contact me offline if you have further questions. Warmest Regards, Phillip B. Holmes http://phillipholmes.com -Original Message- From: Paul Hastings [mailto:[EMAIL

RE: OT: Group field name

2006-04-28 Thread Phillip B. Holmes
break; } } } if (checked == 0) { alert("you did not check a radio button"); return false; } return true; } Warmest Regards, Phillip B. Holmes http://phillipholmes.com -Origina

RE: CFOUTPUT query not working inside cfmail?

2006-04-27 Thread Phillip B. Holmes
cfoutput doesn't work inside cfmail. cfmail has a query attribute. Warmest Regards, Phillip B. Holmes http://phillipholmes.com -Original Message- From: Phillip Perry [mailto:[EMAIL PROTECTED] Sent: Thursday, April 27, 2006 7:08 PM To: CF-Talk Subject: CFOUTPUT query not wo

RE: File header and footer in excel spreadsheet created with cxcontent?

2006-04-27 Thread Phillip B. Holmes
data source in the ColdFusion Administrator, pointing to the ODBC DSN created in step 2. 4 Use the IN predicate within the query, specifying the path to the actual spreadsheet to be used. SELECT TN_ID FROM [CF$] IN '#path to your generated spreadsheet#' 'EXCEL 5.0;' War

Re: ASP.Net book for CF programmer

2006-04-26 Thread Phillip B. Holmes
This is a good one with a CD of lots of .NET via C# examples http://www.microsoft.com/MSPress/books/8607.asp -Phil -Original message- From: "Plunkett, Matthew" [EMAIL PROTECTED] Date: Wed, 26 Apr 2006 11:14:08 -0400 To: CF-Talk cf-talk@houseoffusion.com Subject: ASP.Net book for CF prog

Re: ASP.Net book for CF programmer

2006-04-26 Thread Phillip B. Holmes
The best comparison is a M$ Press book that is called 'C# for Java Developers'. It is an excellent read, BTW. Review: http://books.slashdot.org/books/02/09/03/1431251.shtml?tid=156 Great price here: http://www.bookpool.com/sm/0735617791 -Phil -Original message- From: "Aaron Rouse" [

RE: Deploy CF 6.1 app on J2EE server?

2006-04-24 Thread Phillip B. Holmes
server for you here: http://phillipholmes.com/utilz/java/sun/app_server_8_java1.4.2/j2eesdk-1_4_0 1-windows.exe It will finish uploading in about 30 minutes or you can google it. Warmest Regards, Phillip B. Holmes http://phillipholmes.com -Original Message- From: [EMAIL PROTECTE

RE: OT: Dreamweaver and passive FTP

2006-04-23 Thread Phillip B. Holmes
Really good article here: http://slacksite.com/other/ftp.html -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Sunday, April 23, 2006 6:29 AM To: CF-Talk Subject: Re: OT: Dreamweaver and passive FTP Will Tomlinson wrote: > Could someone briefly explain why I

RE: Evaluate vs ?

2006-04-17 Thread Phillip B. Holmes
you don't want structDelete(form,'fieldnames'); structDelete(form,'submit'); structDelete(form,'searchstring'); for(it IN form) { writeOutput(it & ':' & form[it] & '

RE: Locked out of administrator

2006-04-17 Thread Phillip B. Holmes
. The next time you open the CF Administrator, you won't need a password, and you can then change and enable the password from within CF Administrator. Warmest Regards, Phillip B. Holmes http://phillipholmes.com -- No virus found in this outgoing message. Checked by AVG Free Edition. V

RE: Inserting data by email

2005-05-21 Thread Phillip B. Holmes
You could look into CFX_pop3. Great cpp cfx tag. Warmest Regards, Phillip B. Holmes => -Original Message- From: Bram Plessers [mailto:[EMAIL PROTECTED] Sent: Saturday, May 21, 2005 4:11 AM To: CF-Talk Subject: Inserting data by em

RE: nest #

2005-04-26 Thread Phillip B. Holmes
:[EMAIL PROTECTED] Sent: Monday, April 25, 2005 8:43 PM To: CF-Talk Subject: RE: nest # That would mean that "id" is an array or struct, indexed by the value of "name", with "Productrange" in turn indexed by that value of "id". -----Original Message

RE: nest #

2005-04-25 Thread Phillip B. Holmes
How about: #Productrange[id[name]]# Phil -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: Monday, April 25, 2005 5:40 AM To: CF-Talk Subject: RE: nest # #variables["productrange" & id].name# Pascal > -Original Message- > From: Maxwell Smart [mailto:[EMA

RE: Are "search engine safe" URLs really necessary?

2005-04-25 Thread Phillip B. Holmes
This is an excellent product for SEF URLS: http://helicontech.com/linkfreeze/ Best part about it is that you do not have to modify your existing url key pair schema. Just my 2 cents. Phil --- [This E-mail has been scanned for viruses.] ~~~

RE: Errors with Application.cfc

2005-03-10 Thread Phillip B. Holmes
Argh spell checker! s/DUFF/UDF -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Thursday, March 10, 2005 8:05 AM To: CF-Talk Subject: Re: Errors with Application.cfc You can't put a UDF method in a CFC method. Nor can you put a UDF in a UDF. On Thu, 10 Mar 2

RE: Errors with Application.cfc

2005-03-10 Thread Phillip B. Holmes
Yep.. If absolutely needed, put the DUFF outside the function (directly under the component tag) so it accessible to the other function. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Thursday, March 10, 2005 8:05 AM To: CF-Talk Subject: Re: Errors with Applica

RE: CFQUERY accessing MS SQL DB on another CF server

2005-03-06 Thread Phillip B. Holmes
James, Exactly right. Also, I might add that if the server gets rooted and they get partial access to the file system, hard coding your DB login becomes an immediate target. Bad idea in any circumstance. Phil -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Sunday

RE: CFQUERY accessing MS SQL DB on another CF server

2005-03-05 Thread Phillip B. Holmes
Well, hard coding your SQL username & password is a security risk and IMHO bad practice. You should let the CFAdmin handle that for you. Warmest Regards, Phillip B. Holmes -Original Message- From: Nick Baker [mailto:[EMAIL PROTECTED] Sent: Sunday, March 06, 2005 12:46 AM To: CF-

RE: Post an XML doc to a URL

2005-03-05 Thread Phillip B. Holmes
, use cffile to write the new file. Warmest Regards, Phillip B. Holmes -Original Message- From: SD CFer [mailto:[EMAIL PROTECTED] Sent: Saturday, March 05, 2005 12:54 PM To: CF-Talk Subject: Post an XML doc to a URL Hello all... I'm a long time ColdFusion developer, have done

RE: Am I the only one getting double emails from CF-Talk?

2005-02-21 Thread Phillip B. Holmes
-Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Monday, February 21, 2005 10:41 PM To: CF-Talk Subject: Re: Am I the only one getting double emails from CF-Talk? > I've gotten 2 doubles in the last month or two which may be due to the mail server having a hickup.

RE: Holy Security

2005-02-14 Thread Phillip B. Holmes
>>last norton report says (vulnerabilities) >>windows 60,000 + >>mac & linux 60 LOL! Only one remote hole in the default install, in more than 8 years! http://www.openbsd.org Phillip --- [This E-mail has been scanned for viruses.]

RE: vmware ?

2005-02-14 Thread Phillip B. Holmes
configurations before actually implementing them. The virtual machines are even seen on the network as independent platforms... Again.. Great tool. Regards, Phillip B. Holmes -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: Monday, February 14, 2005 8:30 PM To: CF-Talk Subject

RE: Why would Firefox cause CF to error??

2005-02-13 Thread Phillip B. Holmes
30 minutes is pretty standard with shared hosts. Phil -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Sunday, February 13, 2005 7:18 PM To: CF-Talk Subject: RE: Why would Firefox cause CF to error?? Swap hosts. -Original Message- From: Will Tomlinson [

RE: Weird Problem with Structure

2005-02-12 Thread Phillip B. Holmes
Pardon the typo: sed 's/unneccesary/unnecessary/' ;) Regards, Phillip B. Holmes -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Saturday, February 12, 2005 3:41 PM To: CF-Talk Subject: RE: Weird Problem with Structure > I had an interesting thi

RE: Weird Problem with Structure

2005-02-12 Thread Phillip B. Holmes
J, Not unusual at all. The pound signs are unneccesary inside cfset (or any other tag for that matter (unless the value is encapsulated by quotes). You created a structure in the variables scope and assign value to each iteration. Regards, Phillip B. Holmes Example of query to structure

RE: cfmail timeout problems

2005-02-07 Thread Phillip B. Holmes
Marcus, You basically have two choices: 1. extend the timeout in the ColdFusion admin. 2. break up your recordset into smaller groups of data the runs under the timeout. Regards, Phillip B. Holmes -Original Message- From: Marcus Whitworth [mailto:[EMAIL PROTECTED] Sent: Sunday