Posting some information here about an issue related to mySQL date errors in CF2021. Error posted here: CF-4211276 | Tracker (adobe.com) The thread is a long one, but these items should focus it down to a concise solution. If you are encountering this issue in CF2023, adding Dcoldfusion.jdbc.mysql.datetime.str=true to the JVM arguments should resolve the issue. For CF2021, there are the following patches available: 2021: https://cfdownload.adobe.com/pub/adobe/coldfusion/PR/cf2021/patches/4211276/hf202100-4211276.jar & 2018: https://cfdownload.adobe.com/pub/adobe/coldfusion/PR/cf2021/patches/4211276/hf201800-4211276.jar The detail with the “two different JVM arguments” comes from a […]
If you haven’t heard, there’s this cool new thing the kids are doing called “AI”. I’m not sure what that stands for, but it is very popular. One of these AIs is a Large Language Model called ChatGPT, which comes in a variety of flavors (and costs!). Today I wanted to show you how easy it is to build a simple little app that will send the code in one your files in to ChatGPT and have it check for […]
Cloud Firestore is a flexible, scalable NoSQL cloud database to store and sync data for client- and server-side development. It offers seamless integration with other Firebase and Google Cloud products. Here are some use cases where Firestore can be effectively applied: Real-Time Applications: Firestore allows real-time listeners to be attached to data, enabling the development of applications that require real-time updates like collaborative tools, real-time analytics, dashboards, or gaming leaderboards. Offline Synchronization: Firestore supports automatic offline data persistence. This is […]
For the ColdFusion 2023 release, we are adding 2 important security enhancements: JSON Web Tokens (JWT) and SAML/LDAP support for ColdFusion Administrator login. JSON Web Tokens JWT are an open source standard used to allow client/server communication in a secure way. They are designed to ease the burden on authentication services, especially in Microservices based architectures. In fact, ColdFusion supports 3 related technologies: JWT (JSON Web Tokens), JWS (JSON Web Signatures), and JWE (JSON Web Encryption). As an example, if […]
GraphQL is a query language for APIs and a runtime for executing those queries with your existing data. It provides a more efficient, powerful, and flexible alternative to REST. In ColdFusion 2023 we are providing a native method of consuming and sending data across GraphQL using GQL. This includes support for fragments, variables, aliases, queries, mutations, subscriptions and more. In future versions of ColdFusion we will add the ability to expose your own data as GraphQL endpoints, but in the […]
Google Cloud Storage is a scalable, fully-managed, secure, and highly available object/blob storage service from Google Cloud. It’s designed to handle data from any source and can serve data to any destination. You can do just about anything with it that requires storing and accessing files and data, but here are a few potential use cases: Backup and Archival: Google Cloud Storage can be used to store backups of your data, whether it’s from your on-premises servers or from other […]
Google Cloud Pub/Sub is a scalable, durable event ingestion and delivery system that serves as a foundation for real-time analytics and event-driven applications. Use cases for GCP Pub/Sub include: Real-time Analytics: Pub/Sub can be used to ingest large amounts of data in real-time, such as logs, metrics, or user activity data, and then process it in real-time. This data can be used to generate analytics and insights, like user engagement metrics, system performance data, etc. Event-driven Microservices Architecture: In a […]
The Central Configuration Server is a powerful addition to Adobe ColdFusion 2023 that simplifies the management and configuration of multiple ColdFusion instances across different servers. It acts as a centralized repository for storing and managing ColdFusion server configuration files, making it easier for developers to deploy and maintain their applications. Key Features and Benefits: Centralized Management: The Central Configuration Server allows developers to centrally manage and configure multiple ColdFusion instances. This eliminates the need to manually update configuration files on […]
The HTML to PDF conversion functionality allows developers to convert HTML files, strings, or URLs into PDF documents. The feature proves beneficial when you need to provide website content in a portable, easily shareable format. Reports, invoices, and other documentation often need to be generated as PDFs from HTML content. Adobe ColdFusion makes this process straightforward and efficient. When the <cfhtmltopdf> tag first came out, it changed the game in terms of outputting PDF documents from your code. But as […]
The time is here, the time is now! CANCEL ALL YOUR WEEKEND PLANS! We are pleased to announce the opening of the CF Fortuna Open #Beta, now available on the Adobe Prerelease site! Features available in this release include: * GraphQL Client (native GQL support for consuming GraphQL endpoints) * Google Cloud Platform ( FireStore ) * Google Cloud Platform ( GCP Storage ) * Google Cloud Platform ( Pub/Sub ) * Central Configuration Service * HTML to PDF engine […]
Well, that’s another CF Summit in the books, and the first in-person event in 2 years. It was an absolute joy and thrill to be able to see all of you that made it to the event this year in person. I just wanted to take a moment and re-live a bit of the fun, give thanks to folks and give some updates. We started things off on Monday morning, 9am, with a heck of a thing: me on stage, […]
Adobe ColdFusion Builder Extension for Visual Studio Code “Quick Fix” Sometimes we all need a helping hand. Wait. Does an IDE even have a hand? Anyway, imagine if your VS Code was able to flag issues with your code, make suggestions, but then even make those suggestions come to life! The Builder extension for VS Code includes a “quick fix” capability. Let’s say you’re writing a bit of CF script, like so: Whoops! There’s a component name mismatch. Apparently, “mycfc1” […]