Blog

Category Filtering: 'ColdFusion'

Remove Filter


Couchbase NoSQL Replication ColdFusion ORM

Posted by Luis Majano
Jul 31, 2013 22:03:00 UTC

We just published part II of our integrating Couchbase NoSQL with ColdFusion series which focuses on Couchbase replication, XDCR, failovers and an intro to secondary caches for Hibernate: Check it out:

https://www.ortussolutions.com/blog/couchbase-cluster-setup-orm-secondary-cache-introduction

Couchbase NoSQL For ColdFusion Series

Posted by Luis Majano
Jul 26, 2013 19:26:00 UTC

We have just started a cool new blogging series over at our Ortus Solutions blog about how to leverage Couchbase NoSQL Server in your ColdFusion applications.  If you are thinking or already implementing NoSQL databases in your infrastructure, these series are for you. Check it out:

http://www.ortussolutions.com/blog/intro-to-couchbase-server-for-coldfusion-clustered-nosql-and-caching-at-its-finest

Eating my own dog food, moved to ContentBox

Posted by Luis Majano
Jul 19, 2013 01:39:00 UTC

It was about time I started to eat my own dog food, so I have completed the migration from Wordpress to ContentBox today and with that a new inspiration to write more.  So expect a lot more content coming your way now that I have ContentBox up and running.  Also, thanks to this migration we have updated the Wordpress importer of ContentBox and it will be available by next week.

cf10 and could not initialise class com.adobe.rds.core.services.Messages

Posted by Luis Majano
Jun 12, 2013 14:58:20 UTC
I got into a weird error connecting CF Builder 2.01 to CF10 RDS to get some nice DB interactions going.  I was constantly getting the error:

could not initialise class com.adobe.rds.core.services.Messages

Both in the logs and as a nasty error popup.  This is reproducible using virtual hosts with Apache, I did not experience this on the standalone CF10 at all.  In Apache I have the CF10 connector installed globally, so I would assume it worked for ALL virtual hosts.  However, for some reason the above error is due to a connector issue.  To fix this, and I have no CLUE as to why it fixes it, but it does. Is to add the following to your virtual host configuration file:

JkMountFile "/Applications/ColdFusion10/config/wsconfig/1/uriworkermap.properties"

This will fix the issue, so go back to builder and click on the refresh server and voila! Issue is gone!  Can someone explain me why?

ColdBox Developer Week 2013

Posted by Luis Majano
Jun 11, 2013 19:26:54 UTC
I am very happy to announce that I will be speaking at another ColdBox Developer Week coming to a desktop, mobile, ipad, Android, etc near you!  The ColdBox and ContentBox teams and several community members join forces each year to bring you a weekly FREE training online extravaganza.  I am excited to be presenting on several topics not only about ColdBox but also about ContentBox,the modular CMS solution for CFML, this year as our *BOX products are growing.

When: June 17-21st from 9 am Pacific to late at night.... (Check out the site for your local timezone)

Where: www.coldbox.org/cbdw

ContentBox Modular CMS at the South Florida CFUG

Posted by Luis Majano
Sep 13, 2012 15:55:12 UTC
I am glad to go back to my adoptive home, Miami next week and present at the South Florida CFUG on ContentBox Modular CMS September 20th, 2012.  We will be showcasing our next ContentBox version 1.0.7 and have some great goodies for everybody.  You can read all about the event here.  Hope to see you there!

ColdBox Developer Week - Free Training 4 All

Posted by Luis Majano
Jul 02, 2012 14:04:16 UTC

The ColdBox Engineering Team are proud to announce the first ever ColdBox Developers Week to conmmemorate the ColdBox Platform 3.5 launch and the upcoming ContentBox CMS launch.

It will be a week long series of FREE and live webinars hosted by the ColdBox Team and seasoned ColdBox developers from around the world. These sessions will cover from the basics and essentials of ColdBox and its internal libraries to very advanced topics like AOP, Cloud Development, ORM enhancements, Flex Integrations and so many more.

Read all about it in the engineering blog.

 

ContentBox in San Francisco March 2

Posted by Luis Majano
Mar 05, 2012 09:41:50 UTC

Just a little note that I will be presenting on ContentBox, our new open source CMS, in the San Francisco ColdFusion User Group March 2, 2012.  The meeting starts at 6:30 pm and we will be reviewing, installing and configuring ContentBox!  So if you will be in the area, come and join us, hang out and geek out!

Meetup link: http://www.meetup.com/bacfug/events/51163792/

Hope to see you there!

CF ORM – A collection with cascade=”all-delete-orphan” was no longer referenced by the owning entity instance

Posted by Luis Majano
Jan 17, 2012 22:17:25 UTC
Have you experienced this incredibly odd error using ColdFusion ORM:

HibernateException – A collection with cascade=”all-delete-orphan” was no longer referenced by the owning entity instance

This is really cryptic and most likely you have a parent to child relationship and you are most likely wiping or wanting to wipe all the references of the child.  We usually can do this via:

// wipe out the children

parent.setChildren( [] )

We then proceed to maybe put more children into the collection:

parent.addChild( objX );

parent.addChild( objY );

// Now save

transaction{

entitySave( parent );

}

This is where you get that magical Hibernate error. The issue is that the existing collection is now de-referenced, you completely wiped it so Hibernate has no clue what to do with it. So to resolve this, just clear the collection instead and voila!

// use java

parent.getChildren().clear();

// or use CF

arrayClear( parent.getChildren() );

That's it, this tells Hibernate that the collection is removed first and then you added some more children.

Presenting at the Houston User Group

Posted by Luis Majano
Jan 05, 2012 10:26:21 UTC
I am very excited to be lined up to present at the Houston User Group next week on our new project at Ortus Solutions, ContentBox.

For those of you who do not know what ContentBox is, here is a little insight.  ContentBox is our next major project here at Ortus Solutions, which is a highly modular content platform based on ColdBox architecture and modules.  It is a set ofColdBox modules that work in unison to provide you with blog, cms and development capabilities.  It is still in private alpha, but you can be part of it if you like by just requesting it: [email protected].  The major difference than traditional blogs or cms, is that ContentBox is highly extensible via ColdBox features and event driven programming.  You can easily extend it and create other modules that function outside of ContentBox with their own DI, caching, SES, or extend the content as well.

Site Updates

Archives

Entries Search