John Bliss
Member since Dec 11, 2008
- Profile: /members/2238-john-bliss.htm
- URL: http://about.me/jbliss
- Comments: 9
Recent Blog Comments By John Bliss
-
Parsing, Traversing, And Mutating HTML With ColdFusion And jSoup
Posted on Jan 21, 2013 at 12:53 PM
Sorry if this is a stupid question but how would I load the JAR in ACF8?... read more »
-
Converting A Base64 Value Back Into A String Using ColdFusion
Posted on Apr 27, 2011 at 11:56 AM
@Jason You're welcome!... read more »
-
Converting A Base64 Value Back Into A String Using ColdFusion
Posted on Apr 26, 2011 at 6:40 PM
@Jason Try these and let me know. I think I might have fixed it and forgotten to update post on Ray's site. If this works, let me know and I will... <cffunction access="public" name="HexToBase64" output="yes" returntype="string"> <cfargument name=... read more »
-
Converting A Base64 Value Back Into A String Using ColdFusion
Posted on Apr 26, 2011 at 6:15 PM
@Jason My bad. Right there it is at http://www.coldfusionjedi.com/forums/messages.cfm?threadid=2E1AFB13-19B9-E658-9DEC415EB6931B97 No, I didn't notice what you're describing. I was using ACF8. You?... read more »
-
Converting A Base64 Value Back Into A String Using ColdFusion
Posted on Apr 26, 2011 at 6:09 PM
@Jason No, I either didn't notice that or didn't have that problem and, since Sep 2008, my need for this bit of logic went away and the code in question is not easily accessible. Perhaps you can share your code?... read more »
-
Content Is Not Allowed In Prolog - ColdFusion XML And The Byte-Order-Mark (BOM)
Posted on Mar 19, 2010 at 12:55 PM
Thank you! Thank you! Thank you! One more additional bit to add to this: in addition to the, "Content is not allowed in Prolog," error solved by Ben's REReplace, I was also getting, "An invalid XML character (Unicode: ... ) was found in the element content of the document." My first attempt to fix... read more »
-
My 1,000th ColdFusion Post - What It Means To Me (And Free Prizes)
Posted on Jan 23, 2009 at 1:12 PM
Thank you, ColdFusion, for giving me a 13-year career doing what I love to do. Here's to the next 13!... read more »
-
Converting A Base64 Value Back Into A String Using ColdFusion
Posted on Sep 5, 2008 at 4:52 PM
@Ben, Yes. Per my post on coldfusionjedi.com, I needed a *shorter* version of the GUID. If you treat it as a (hex) number, the resulting Base64 has fewer characters/digits than the original: GUID: e1c4c2926-b394-6808-e611-f95a4c41cbf Base64: 4cTCkms5RoCOYR+VpMQcvw== If you treat the GUID as a s... read more »
-
Converting A Base64 Value Back Into A String Using ColdFusion
Posted on Sep 5, 2008 at 3:42 PM
Earlier this week, I had to do the same thing except that the strValue was a GUID (hex). I found that converting the GUID to decimal and then trying to run ToBase64 on the resulting HUGE number resulted in a CF error. Apparently ToBase64 can only handle decimals up to a certain size. I did find t... read more »