Nathan Mische
Member since Dec 11, 2008
- Profile: /members/1264-nathan-mische.htm
- URL: http://www.mischefamily.com/nathan
- Comments: 30
Recent Blog Comments By Nathan Mische
-
Setting ColdFusion Cookies With CFCookie vs. Cookie Scope
Posted on May 3, 2010 at 10:58 AM
Ben, I just made this "discovery" myself about two weeks ago. Like you I thought the only way to send set-cookie headers was using cfcookie, but I was obviously wrong. I wonder if this behavior changed at some point? Anyway, one other thing I will add to this is that using StructDelete() on the coo... read more »
-
Win A FREE Ticket To CFUNITED 2009
Posted on Aug 3, 2009 at 1:59 PM
I'd like to attend 'Data Visualization with Flex' as I've been doing more of that lately.... read more »
-
ColdFusion 8 Application Specific Mappings Work With The CFComponent Extends Attribute
Posted on Jun 11, 2009 at 1:26 PM
I too was under the impression this did not work. I think part of the confusion stems from the fact that you cannot use application specific mappings in cfimport tags, so they do not work everywhere you would expect them to.... read more »
-
GetHTTPRequestData() Breaks The SOAP Request / Response Cycle In ColdFusion
Posted on Jun 5, 2009 at 8:54 AM
Yep, I ran into this issue when using CF to secure a webservice via Basic Auth: http://www.mischefamily.com/nathan/index.cfm/2008/8/13/Basic-Authentication-With-ColdFusion I can't remember if I reported it as bug or not.... read more »
-
ColdFusion 8 Per-Application Settings Get Partially Cached (And There's Nothing You Can Do About It)
Posted on May 6, 2009 at 10:46 AM
@Ben & Ray - I dig the screencasts.... read more »
-
ColdFusion 8 Per-Application Settings Get Partially Cached (And There's Nothing You Can Do About It)
Posted on May 6, 2009 at 10:43 AM
Cool. Just wanted to make sure that wasn't the reason it was working...... read more »
-
ColdFusion 8 Per-Application Settings Get Partially Cached (And There's Nothing You Can Do About It)
Posted on May 6, 2009 at 10:36 AM
In your second demo, I didn't see that you commented out the custom tag path before running the second custom tag (helloworld3).... read more »
-
ColdFusion 8 Per-Application Settings Get Partially Cached (And There's Nothing You Can Do About It)
Posted on May 6, 2009 at 10:32 AM
Have you actually seen errors with per-application settings under load? I ask, because I too have heard of issues, but haven't actually seen them.... read more »
-
Ask Ben: Manually Enforcing Basic HTTP Authorization In ColdFusion
Posted on Apr 28, 2009 at 12:10 PM
@Ben - Ha! I didn't notice your comments when I went back to read that post :) I tend to forget the stuff I do try out, let alone the stuff I only read about...... read more »
-
Ask Ben: Manually Enforcing Basic HTTP Authorization In ColdFusion
Posted on Apr 28, 2009 at 11:37 AM
One other thing I'll mention, if you try to use this method to secure a SOAP request you may run into issues with GetHTTPRequestData(). See my post above for more info.... read more »
-
Ask Ben: Manually Enforcing Basic HTTP Authorization In ColdFusion
Posted on Apr 28, 2009 at 11:32 AM
Awesome writeup, and much more detailed than the one I put together awhile ago: http://www.mischefamily.com/nathan/index.cfm/2008/8/13/Basic-Authentication-With-ColdFusion One thing to keep in mind, for Basic Authentication to be secure you need to be using SSL.... read more »
-
Web Form Design By Luke Wroblewski
Posted on Aug 22, 2008 at 12:42 PM
I haven't read the book yet, but I did get to attend a seven hour workshop on web form design given by Luke W. and he _really_ knows form design. I would definitely recommend his book based on the info he gave in his presentation.... read more »
-
Be Careful Using "#" In ColdFusion DE() Expressions
Posted on Jun 24, 2008 at 1:12 PM
@Elliott - Nice solution. I'll have to keep that one in mind. @Shayne - You may want to try Elliott's code.... read more »
-
Ben Nadel's Easy Tips For Writing Better, More Optimized SQL
Posted on Mar 27, 2008 at 2:44 PM
@Phil - good to know. @Jeff - sounds like the query optimizer may have gotten a little smarter between MySQL 4.1 and 5.... read more »
-
Ben Nadel's Easy Tips For Writing Better, More Optimized SQL
Posted on Mar 27, 2008 at 2:27 PM
As for the "When Possible, Move WHERE Clauses Into JOIN/ON Clauses," while it is a good tip, I've found that most of the time the query optimizer is smart enough to figure this out on its own. For example SELECT somefield FROM tablea INNER JOIN tableb ON tablea.someid= tableb.someid WHERE ... read more »
-
Custom User Agents For ColdFusion Debugging
Posted on Mar 7, 2008 at 8:47 AM
Nice tip about the general.useragent.override preference, I didn't know about that one. ColdFire also uses a custom user agent to determine whether or not to return debugging info. You could also use the Modify Headers Firefox extension to modify the user agent or to send a totally custom request h... read more »
-
Merging ColdFusion SQL Debugging And Query Params With Javascript
Posted on Jan 6, 2007 at 7:55 PM
Nice work. I was actually thinking of doing something like this if people showed any interest in my SQL Explorer extension, but it looks like you saved me the trouble:). One thing to watch out for is timestamps. If a date or time datatype is in timestamp format (i.e. the queryparm value looks someth... read more »