Re: CFHTTP and SSL v3

2009-02-18 Thread Amit Talwar
Okay, I have a bit of a critical issue as Authorize.Net is apparently disabling any use of SSL v2.0 and requiring the use of v3.0 (and only giving us about a month to get ready!) To my knowledge, only ColdFusion 8 even supports this, and not sure what the support is in Railo and

RE: Binary output in CFContent ?

2009-02-18 Thread Ian Vaughan
Thanks for the ideas. All I am after is when a user who will be authenticated by CF with the GAL I.E. cfset user = listLast(cgi.REMOTE_USER,\) If they have not read a document, on the docdisplay,.cfm page it will display next to the document listing 'not read', if they have opened the word

RE: Binary output in CFContent ?

2009-02-18 Thread Ian Vaughan
Thanks for the ideas. All I am after is when a user who will be authenticated by CF with the GAL I.E. cfset user = listLast(cgi.REMOTE_USER,\) If they have not read a document, on the docdisplay,.cfm page it will display next to the document listing 'not read', if they have opened the word

Re: Saving beans to a databse

2009-02-18 Thread Mike Kear
If you're using the Rooibos bean, then there's a getsnapshot() or getMemento() method that gives a struct containing all the current values. (to see what's in it, then do this; cfdump var=#beanname.getsnapshot()# / and you'll see the current state of the bean.You can serialise this using

Re: Looping

2009-02-18 Thread Tom Chiverton
On Tuesday 17 Feb 2009, Priya Koya wrote: I tried using Session but it didnt work... sigh* Why not ? -- Tom Chiverton Helping to advantageously market cross-platform information *http://www.catb.org/~esr/faqs/smart-questions.html This

special characters in mysql

2009-02-18 Thread Mike Little
hi guys, i have the following textg to insert into a mysql db... Mastering macrons in te reo Māori.Keke or kēkē? Cake or armpit? the data is being turned into... Mastering macrons in te reo M?ori. Keke or k?k?? Cake or armpit? i have just attempted to change the column charset to utf8,

Re: special characters in mysql

2009-02-18 Thread Mike Little
aha, i see it has done the same on this site. basically the characters have accents on them. mike ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: special characters in mysql

2009-02-18 Thread John M Bliss
In MS SQL Server, solution is to use nvarchar instead of varchar and ntext instead of text. Not sure about MySQL... On Wed, Feb 18, 2009 at 6:42 AM, Mike Little m...@nzsolutions.co.nz wrote: aha, i see it has done the same on this site. basically the characters have accents on them. mike

Re: special characters in mysql

2009-02-18 Thread Mike Little
from what i can see ntext is not supported in mysql john. i am using mysql 4.1 by the way. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: special characters in mysql

2009-02-18 Thread John M Bliss
http://forums.mysql.com/read.php?103,2074,2233#msg-2233 On Wed, Feb 18, 2009 at 6:52 AM, Mike Little m...@nzsolutions.co.nz wrote: from what i can see ntext is not supported in mysql john. i am using mysql 4.1 by the way.

Re: special characters in mysql

2009-02-18 Thread Jason Fisher
Since it sounds like you've already got the column set to receive UTF-8, you'll need to ensure that you're also coding the data going into the database and being displayed. Drop this in your application file or at the top of your global index file or wherever: this codes the characters when

Re: special characters in mysql

2009-02-18 Thread Peter Boughton
MySQL 4.1 does support unicode, not sure if it uses nvarchar/ntext/etc though. Here is some info on the improvements between 4.0 and 4.1 http://dev.mysql.com/tech-resources/articles/4.1/unicode.html ~| Adobe® ColdFusion® 8

Re: cflayout annoying issue

2009-02-18 Thread Cutter (CFRelated)
MS, The Ext Viewport doesn't work in this fashion (that's the underlying component of cflayout). The Viewport will only take up the viewable area of the browser, with the 'center' view always taking up the remaining space (only area that doesn't require explicit dimensions). What you need is

Re: Saving beans to a databse

2009-02-18 Thread Brian Kotek
There are object-based databases out there, but they don't work with CFCs natively (or I've never seen an adapter that would allow this). There are ways to serialize a CFC and save it to the database, but this usually opens up a ton of issues such as, the main two being that it saves the entire

Apache Coldfusion 8 issues

2009-02-18 Thread Chad McCue
I am trying to run Coldfusion 8 (Single Instance) on IIS and Apache. Currently my IIS sites are running fine, but when I try to load my apache site the page only shows the coldfusion code and does not actually execute the code. I am using Apache to get subversion installed for one of our major

Re: Saving beans to a databse

2009-02-18 Thread Gerald Guido
I saw this on RIAForge today. It may do what you want. http://cfobjectcache.riaforge.org/ -- Gerald Guido http://www.myinternetisbroken.com To invent, you need a good imagination and a pile of junk. -- Thomas A. Edison ~|

Re: Apache Coldfusion 8 issues

2009-02-18 Thread Gerald Guido
I ran onto something similar to this last week. I uninstalled/reinstalled CF and it worked fine. It was a fresh install on a dev box so this may not be an option for you. Just throwing it out there. G! On Wed, Feb 18, 2009 at 9:13 AM, Chad McCue c...@advmediaproductions.comwrote: I am

Re: special characters in mysql

2009-02-18 Thread Paul Hastings
Mike Little wrote: can anyone see what i may be doing wrong? what db driver (ie JDBC or ODBC, should be JDBC driver)? what ver of cf (should be something newer than cf5)? can you post the input code? ~| Adobe® ColdFusion® 8

Re: Saving beans to a databse

2009-02-18 Thread Brian Kotek
Looking at the code, it looks like it is using JSON to serialize the object, via CFJSON. But I don't see how that's going to work with CFCs, since the serializer will see it as a structure, and when it is deserialized later, you'll end up with a structre, not a CFC. A further quick review of the

Re: Online OO courses

2009-02-18 Thread Brian Kotek
I'd recommend any of these: http://www.amazon.com/Object-Technology-Managers-David-Taylor/dp/0201309947 http://www.amazon.com/Head-First-Object-Oriented-Analysis-Design/dp/0596008678 http://www.amazon.com/Fundamentals-Object-Oriented-Design-Addison-Wesley-Technology/dp/020169946X

Re: special characters in mysql

2009-02-18 Thread Paul Kukiel
With Mysql 5 and CF 8 I needed to add this connection string to the datasource: jdbc:mysql:// 127.0.0.1:3306/utf8demo?allowMultiQueries=truecharacterEncoding=UTF8characterSetResults=UTF8 Also the charset I used in MySql was: utf8 the colation was: utf8_general_ci; After that I was able to

Apache and subversion issue

2009-02-18 Thread Chad McCue
I am getting closer to what I need. I have my apache server running coldfusion code but only on files within the htdocs folder. It will not execute anything that is in a folder that uses subversion like the second example. Is there anything specific I need to set?

Re: Apache and subversion issue

2009-02-18 Thread Maureen Barger
Alias /svn C:\Program Files\Apache Software Foundation\Apache2.2\htdocs On Wed, Feb 18, 2009 at 12:07, Chad McCue c...@advmediaproductions.com wrote: C:\Program Files\Apache Software Foundation\Apache2.2\htdocs ~| Adobe®

RE: Apache and subversion issue

2009-02-18 Thread Chad McCue
Can you be a little more specific. -Original Message- From: Maureen Barger [mailto:m...@cornell.edu] Sent: Wednesday, February 18, 2009 12:13 PM To: cf-talk Subject: Re: Apache and subversion issue Alias /svn C:\Program Files\Apache Software Foundation\Apache2.2\htdocs On Wed, Feb

Re: Online OO courses

2009-02-18 Thread Gerald Guido
Brian, Thank you for taking the time to do this. Much appreciated. G! On Wed, Feb 18, 2009 at 11:04 AM, Brian Kotek brian...@gmail.com wrote: I'd recommend any of these: http://www.amazon.com/Object-Technology-Managers-David-Taylor/dp/0201309947

CF posts and CF-talk

2009-02-18 Thread Don L
I tried to dig up some old posts/follow-ups here, with phrase and/or {myUserId} to no avail. What gives? tks. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: CF posts and CF-talk

2009-02-18 Thread Michael Dinowitz
How are you searching and what criteria? On Wed, Feb 18, 2009 at 12:23 PM, Don L do...@yahoo.com wrote: I tried to dig up some old posts/follow-ups here, with phrase and/or {myUserId} to no avail. What gives? tks. ~|

Clustering with Synchronization/Mirroring

2009-02-18 Thread Joseph Bugeja
We have a setup consisting of 2 CF8 servers running in parallel (the 2 instances are clustered together using CF8 Ent/JRun4) and we have one app. deployed on each of the two servers. Each request is served by either one of the 2 servers. Although clustering is working great, we would like

Re: SQL Server 2005 Datasource failing

2009-02-18 Thread Stan Winchester
I checked that TCP/IP is enabled and it was. I found an article that talked about making sure SQL Server 2000 was at least sp3a, so I updated to sp4. Now CF8 on a remote box verifies the connection, but BD7 does not (BD7 is on the same box as CF8). I get the error: Login failed for user

RE: CFHTTP and SSL v3

2009-02-18 Thread Mark Kruger
Mary Jo, I'm confused SSL 3.0 does not necessarily need a client cert - does it? The connection would still use the public key right? Are you saying that Auth.net is requiring you to specify the client cert as a part of the handshake? -Mark Mark A. Kruger, CFG, MCSE (402) 408-3733 ext

Re: CF posts and CF-talk

2009-02-18 Thread Don L
How are you searching and what criteria? On Wed, Feb 18, 2009 at 12:23 PM, D I tried to dig up some old posts/follow-ups here, with phrase and/or {myUserId} to no avail. What gives? tks. Well, like a month or two ago, I posted a question about Adobe's key staff member on ColdFusion

Re: CF posts and CF-talk

2009-02-18 Thread Michael Dinowitz
Did you try the search in the upper left hand corner? It's CF-Talk specific. The search in the upper right has an option for all of HoF, but not as specific as the left one. Also, use don l. in quotes as one criteria. On Wed, Feb 18, 2009 at 2:11 PM, Don L do...@yahoo.com wrote: How are you

RE: Clustering with Synchronization/Mirroring

2009-02-18 Thread WebSite CFTalk
If you're on Windows 2003 R2 you can use NFS replication for this. -Helge -Original Message- From: Joseph Bugeja [mailto:jbug...@rs2group.com] Sent: 18. februar 2009 19:17 To: cf-talk Subject: Clustering with Synchronization/Mirroring We have a setup consisting of 2 CF8 servers

Re: Clustering with Synchronization/Mirroring

2009-02-18 Thread Matthew Williams
That's going to highly depend on your server architecture. We have Windows 2003 R2 Enterprise. The NFS clustering in that release has been fantastic, and has only failed one time in about a year. It's multi-point sync (a - b, b - a) and can do partial file changes as well. This also

Re: CF posts and CF-talk

2009-02-18 Thread Don L
Did you try the search in the upper left hand corner? It's CF-Talk specific. The search in the upper right has an option for all of HoF, but not as specific as the left one. Also, use don l. in quotes as one criteria. On Wed, Feb 18, 2009 at 2:11 PM, D yeah, i missed the top left search box

Question about next/prev browsing

2009-02-18 Thread Mike Soultanian
If I have a table with 60,000 records - should I use query caching for the next/prev browsing, or should I pull the next/prev page of records every time the user presses the next/prev buttons? I'm leaning towards the latter as it just seems to make more sense memory-wise. Thanks, Mike

Re: CF posts and CF-talk

2009-02-18 Thread Michael Dinowitz
I have to reorganize the site. desperately. On Wed, Feb 18, 2009 at 2:37 PM, Don L do...@yahoo.com wrote: Did you try the search in the upper left hand corner? It's CF-Talk specific. The search in the upper right has an option for all of HoF, but not as specific as the left one. Also, use

Re: CF posts and CF-talk

2009-02-18 Thread Charlie Griefer
yeah, otherwise those right-eyed people will have the ACLU all over you. On Wed, Feb 18, 2009 at 11:48 AM, Michael Dinowitz mdino...@houseoffusion.com wrote: I have to reorganize the site. desperately. On Wed, Feb 18, 2009 at 2:37 PM, Don L do...@yahoo.com wrote: Did you try the

Re: Question about next/prev browsing

2009-02-18 Thread Nick Giovanni
I'd do it at the DB level, easy to implement in Oracle not sure about the others. On Wed, Feb 18, 2009 at 11:48 AM, Mike Soultanian msoul...@csulb.eduwrote: If I have a table with 60,000 records - should I use query caching for the next/prev browsing, or should I pull the next/prev page of

Re: Clustering with Synchronization/Mirroring

2009-02-18 Thread Shannon Peevey
At one location, we NFS mounted our webroot to our web server boxes, and coldfusion machines, which worked well. I have also worked in a high-traffic environment, where the preference was to perform scheduled implementations on all boxes. In this case, we would deploy the whole code base to each

Whitespace in flash form

2009-02-18 Thread Jennifer Perkins
I've got a whole bunch of whitespace in my flash form, between a text bit and a repeater. Code: cfformgroup type=page label=Interests style=padding:0px; cfformitem type=text style=padding:0px;Check any of the following classes that you would be interested in taking. These are

Re: Question about next/prev browsing

2009-02-18 Thread Nathan Strutz
If you're going for pulling it fresh from the DB on every hit, you've got at least couple good options. 1) cache it in ColdFusion - just use the cachedWithin attribute of cfquery, it's easy, it works great. Set it to a day or 5 minutes or 1 minute or even 10 seconds if you're concerned about the

Deploying cfusion-ear to JBoss ... unable to find class path derby.jar

2009-02-18 Thread Jeff Chastain
I am experimenting with deploying ColdFusion to a JBoss server using a J2EE EAR file. I followed the instructions exactly as found in the LiveDocs (http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=installj2 ee_15.html) just to make sure I had everything right. However, when I

Re: Drawing a dynamic trapezoid.

2009-02-18 Thread Raymond Camden
Chapter 42 of the CF Dev Guide, Creating and Manipulating CF Images http://livedocs.adobe.com/coldfusion/8/htmldocs/Images_01.html#130281 On Tue, Feb 17, 2009 at 12:04 PM, Terry Troxel te...@it-werks.com wrote: I see a bunch of image functions, is that what you were referring to Raymond?

Re: SQL Server 2005 Datasource failing

2009-02-18 Thread Stan Winchester
For those who are interested this was solved at: http://forums.newatlanta.com/messages.cfm?threadid=D0F5E9DE-C84B-43EC-8C34667F8FB9077B Thanks to those who helped! Stan ~| Adobe® ColdFusion® 8 software 8 is the most important

Re: CFHTTP and SSL v3

2009-02-18 Thread Mary Jo Sminkey
I'm confused SSL 3.0 does not necessarily need a client cert - does it? The connection would still use the public key right? Are you saying that Auth.net is requiring you to specify the client cert as a part of the handshake? Mark, I checked with AuthNet and you're right, they are not

Re: ColdFusion Hosts

2009-02-18 Thread Joel Polsky
I use Dailyrazor.com for personal stuff and hosting.com for business.. On Wed, Feb 11, 2009 at 10:47 PM, Robert Bailey cft...@tropicalbean.comwrote: I am trying to find a decent CF8 hosting company that offers SQL Server. The company I am working with now (remotely) does not have a dev

Re: FireFox getElementById issue

2009-02-18 Thread Joel Polsky
I'm not a javascript expert..but try script = Javascript instead of script = Javascript1.2 On Mon, Feb 16, 2009 at 11:44 AM, Austin Band cfusio...@yahoo.com wrote: Hello, I need a little help. I have javascript that works with IE but not FireFox. The code: script = Javascript1.2

Re: FireFox getElementById issue

2009-02-18 Thread Charlie Griefer
script type=text/javascript and... are you sure there is only one element with that specific ID? really really sure? On Wed, Feb 18, 2009 at 10:15 PM, Joel Polsky polskystud...@gmail.comwrote: I'm not a javascript expert..but try script = Javascript instead of script = Javascript1.2 On