Re: Sessions on multiple servers.
Something probably went wrong with session replication. MX6.1 may be dated, but there is some useful information out there on session replication with MX6.1.
View ArticleAn oldie: Unable to find font: Serif.
This popped up with CF8. I am using Ben's ImageDrawTextArea, which I have been using on CF8, CF9 and Railo. Now that I ponied up for my nice new CF10 server, this code no longer works. I have tried...
View ArticleRe: How do I convert a hex date?
Thanks for your help with this, BKBK. I have been working on it for a day, and discovered some useful info and eventually found an easier way to accomplish this. Below you will see the number of ticks...
View ArticleLoop through result set and delete row
so here is what I need - I have a query that pulls rows from the Database through a stored procedure.(these are properties in an area) Before I start looping through the query, I need to check the...
View ArticleRe: Fill out pdf online, then email
You can do it using the cfdocument tag. I haven't used it yet, but this Adobe help page seems to have a pretty good explanation.http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags...
View ArticleRe: How do I convert a hex date?
<cfset newDateTime = dateadd("n",numberOfWholeMinutes,"01/01/1601 12:00 AM")>The 3rd argument of the dateAdd function should be a datetime object. So you could improve it with something like this...
View ArticleHow to sign a quickbooks online API request in ColdFusion 9
In my CF app, I've used the CF OAuth code at riaforge to get request token and access token from QuickBooks Online and it works fine. After I tried to make a QBO API call by starting to build the http...
View ArticleRe: CF10 CFHTTP returning bad/encrypted xml data?
Odd! Could you show us the dump in full? Looks like ColdFusion thinks the feed is a binary. What if you add the attribute getAsBinary="never" to the cfhttp tag?
View ArticleRe: Loop through result set and delete row
tjbee wrote: So is there a way to delete rows from the result set based on the criteria? A fundamental question, to which there is a fundamental answer: query of a query. For example <cfquery...
View ArticleRe: CF10 CFHTTP returning bad/encrypted xml data?
Here is the same exact code in CF 9.01 I think this just started happening once I did the latest update.
View ArticleRe: CF10 CFHTTP returning bad/encrypted xml data?
Also, i just tried the getAsBinary=never and it still returned the same craziness.
View ArticleRe: CF10 CFHTTP returning bad/encrypted xml data?
Plus, neither ColdFusion 9 nor ColdFusion 10 errors. It is therefore likely to be a bug in ColdFusion 10. I would suggest you file a bug report. In your report, mention the difference in the result...
View ArticleRe: Calling Webservice removes root element of XML
Array and XML may be universal complex types, however, I would never trust that ColdFusion's proprietary interpretation of these types would work outside the CFML language. That is, if a ColdFusion...
View ArticleRe: http status 503 - request timed out waiting to execute - Error
You are going to have to provide more information than this. Do you have Server Monitor running? Can you tell which thread/page is the one timing out, and whether it's a "big" process or what? How...
View ArticleRe: hide cfm extension
Any URL rewrite tool should be able to do this. IIS has one you can install: http://www.iis.net/downloads/microsoft/url-rewrite There is also this one: http://www.isapirewrite.com/
View ArticleRe: Loop through result set and delete row
My result set is coming from a stored procedure. I want to loop through that check, check for a condition and then remove the row if it doesn't meet the criteria
View ArticleRe: Loop through result set and delete row
You can do this the easy way or the hard way. Depends on whether your condition that needs to be checked can be expressed in the form of a SQL where clause. If it can, then do what BKBK suggested,...
View ArticleOptimise CFHTTP Requests/Requests Being Throttled?
I currently have an application that trades virtual items and is making at least 40 CFHTTP requests per second to the host's server. The issue I'm encountering is that it's taking anywhere from 400ms+...
View ArticleRe: hide cfm extension
Thanks a million for the informaiton and helping, Regards, Iccsi,
View ArticleSaving/Calling JS HTML with Single Quotes in SQL?
I have been using SQL 200 for many years but now have a SQL 2008 server setup and all of my JavaScript is falling apart? When I use ColldFusion9 to save HTML containing JavaScript with back-to-back...
View Article