After the most recent Windows 10 update (1703); my very solid and stable workstation started getting blue screens. Being a windows user for more than twenty years I’ve come to expect the occasional BSOD. Things fail. It just happens. So while the first BSOD was troubling; I was not immediately alarmed. After the third BSOD […]
read moreColdFusion 11+ will by default send caching headers on every request (i.e cache-control, Pragama: no-cache, etc.) The solution is buried in this Adobe Tracker thread: https://tracker.adobe.com/#/view/CF-3926479 I’m documenting it here because I continually run into the problem when installing new instances of ColdFusion and I continually find myself searching for hours for the solution. Simply […]
read moreWhen working with complex logic functions in ColdFusion (i.e. lots of code) I’ve encountered this error numerous times Branch target offset too large for short null This error essentially means your method length exceeds what the JVM allows. To correct the error break the logic up into multiple smaller functions.
read moreTypically it’s unnecessary to adjust the default SSRS email report settings, but sometimes it’s unavoidable. For instance, in our case we needed to expose the SSRS web portal on a specific URL. We’re using the latest version of SSRS: SQL Server SSRS 2016 I found several references and guides on how to change this via […]
read moreWhile setting up my first ColdFusion 2016 server I came across an interesting problem with RDS. My problem was that I could not get RDS to connect via ColdFusion Builder 3. The error when I would attempt a test connection: Unable to contact RDS Server “[Remote Server]”. This can be caused by incorrect configuration on […]
read moreCame across some odd CFSPREADSHEET behavior in ColdFusion. I was attempting to quickly export a query object to an Excel spreadsheet: <cfset tmpXLSFile = “#getTempDirectory()#data_export.csv”> <cfspreadsheet action=”write” overwrite=”true” filename=”#tmpXLSFile#” query=”exportData”> ColdFusion kept throwing this strange error: An exception occurred while using action=”write” java.lang.NullPointerException Everything seemed ok with my code and my query. After some head […]
read moreRan into another issue (caused by me) with the IIS URL Rewrite module and ColdFusion. A couple of our client applications utilize a REST API written in ColdFusion. It does not use the newly released built-in API in Coldfusion 2016. The REST url’s are made possible by using the IIS URL Rewrite module. The module […]
read moreThis may be documented elsewhere, but I had a hard time finding it so I’m going to write a quick blog entry about it for my reference. I needed to build a Visual Studio 2013 project that had a connection to a Web Service. However the the code would only have access to the web […]
read moreI recently went through a ColdFusion upgrade. We were going from version 8 to version 11. Since we had previously tested the application with ColdFusion 10 we fully expected some hiccups. Most of the trouble encountered was easy to find and fix, however one item really gave me some trouble. Our application has a custom […]
read moreAttempting to get PHP 5.6 running on Windows Server 2012 (IIS 8) I started receiving generic 500 errors. I enabled Failed Request tracing and reviewed the trace. The trace revealed this error: ModuleName FastCgiModule ErrorCode The extended attributes are inconsistent. (0xff) The problem was a missing Visual C++ runtime. Ensure the appropriate VC++ runtime is […]
read more