Mike Collins
Member since Apr 8, 2010
- Profile: /members/5795-mike-collins.htm
- Comments: 15
Recent Blog Comments By Mike Collins
-
ColdFusion 10 - Creating A ColdFusion WebSocket AMD Module For Use With RequireJS
Posted on Apr 22, 2014 at 11:39 AM
Great article! I am trying to take this approach with an AngularJS app. Any thoughts on removing cfwebsocket tag so that I can put an angular scope around the websocket calls? So basically bringing Angular binding to cfwebsockets. Also - with the recent security fix wit CF10 HF11 and CF11, you... read more »
-
ColdFusion Threads Hanging On JDBC Pool CheckIn / CheckOut
Posted on Jan 28, 2014 at 10:24 AM
Nice work. I have also seen issue with checkin checkout when you use unique usernames for your db connections with maintain connections. CF will create a database connection pool for each user, as opposed to one database connection pool when you have your user\pwd stored in the CFadmin. As soon a... read more »
-
At cf.Objective() 2012 Jason Dean Is Going Down!
Posted on May 16, 2011 at 10:05 AM
Well, I clearly have an issue with the starting positions. Jason has a 45 degree bend in his elbow and Ben is more like 90 degrees. Ben you never had a chance with that advantage.... read more »
-
Content Is Not Allowed In Prolog - ColdFusion XML And The Byte-Order-Mark (BOM)
Posted on Apr 11, 2011 at 4:31 PM
Thanks, just the trick for getting zillow xml feeds.... read more »
-
Explicitly Ending A ColdFusion Session
Posted on Mar 24, 2011 at 9:54 PM
Thanks Ben. Interested to know if anyone actually sees sessions get cleared (using adminapi) early vs just being orphaned until the session timeout kicks in. I... read more »
-
Explicitly Ending A ColdFusion Session
Posted on Mar 24, 2011 at 2:14 PM
Ben, This is great post. I am good with invalidating the sessions, but I am not seeing the session really being cleared. If I run this script from the servermonitoring cfc of the adminapi, I am not seeing the sessions disappear as you would think. <cfobject component="cfide.adminapi.... read more »
-
Experimenting With ColdFusion 9's ObjectSave() And ObjectLoad() Functions
Posted on Dec 8, 2010 at 2:30 PM
@WebManWalking, This was a typical Connect Meeting. Nothing special, or any type of payment was required. So, I did ask about ehcache and it is engaged with cfcache tags and the second level ORM caches. So if you want to mimic the objectsave and load you could use cacheget and cacheput which do ... read more »
-
Experimenting With ColdFusion 9's ObjectSave() And ObjectLoad() Functions
Posted on Dec 6, 2010 at 7:04 PM
@WebMan Here is the info on the panel: http://www.coldfusionjedi.com/index.cfm/2010/12/3/Reminder--Uber-Panel-of-ColdFusion-Awesomeness... read more »
-
Experimenting With ColdFusion 9's ObjectSave() And ObjectLoad() Functions
Posted on Dec 6, 2010 at 6:26 PM
@WebMan Sounds like a good question for the panel this week. I will ask what tags use ehcache as their caching engine. If ehcache is controlling the cached objects, which I think it is, then adding distributed remote \ shared caches is easy as changing the ehcache.xml file. cfcache allows for ... read more »
-
Experimenting With ColdFusion 9's ObjectSave() And ObjectLoad() Functions
Posted on Dec 6, 2010 at 9:49 AM
Maybe I am missing something but is this working inside the ehcache engine. It would be cool if multiple servers could share objects across distributed ehcache.... read more »
-
The ColdFusion Application Server Tagline Contest ($50 Amazon Gift Card)
Posted on Jun 28, 2010 at 11:21 AM
Cover charge $10 Shots of Tequila $20 A chance to feel the power of ColdFusion - priceless... read more »
-
The ColdFusion Application Server Tagline Contest ($50 Amazon Gift Card)
Posted on Jun 28, 2010 at 9:29 AM
There's No Bull when ColdFusion is around!... read more »
-
The Content Of This Document Process Takes More Than 60000 Milliseconds To Process
Posted on Jun 23, 2010 at 7:33 PM
I was going to suggest what you ended up doing. You might be having image retrieval issues as well. Try using the file:// protocol for images vs http. That has helped me in the past.... read more »
-
Learning ColdFusion 9: Application.cfc OnCFCRequest Event Handler For CFC Requests
Posted on Apr 9, 2010 at 10:16 AM
@Ben - the flex call defines a destination="ColdFusion" This gets resolved in the services-config file into a channel and then to a servlet mapping called flex2gateway. The mapping in the web.xml then goes to the messagebrokerservlet. So the messagebrokerservlet is the code that then makes the ca... read more »
-
Learning ColdFusion 9: Application.cfc OnCFCRequest Event Handler For CFC Requests
Posted on Apr 8, 2010 at 5:17 PM
I have been trying to get oncfcrequest working with Flex Remote Object. I found that when you use an mx:Model your arguments get placed in an array. arguments.args[1] will be what you pass on to the cfc and not arguments.args. <mx:RemoteObject id="ro_cf" destination="ColdFusion" source="au... read more »