Hussein
Member since Dec 11, 2008
- Profile: /members/1926-hussein.htm
- URL: http://hgitc.com
- Comments: 25
Recent Blog Comments By Hussein
-
ColdFusion 10 - Invoking ColdFusion Closures From Within A Java Context, Part II
Posted on Mar 12, 2012 at 8:59 PM
Ben! You The Man! I've used Coldfusion and Java plenty times together. A sweet Marriage and unlimited power. muwhahaha!!! okay getting a little carried away but seriously this is a nice example of how easy it is to work with them both. I haven't done any coldfusion development recently but I am sur... read more »
-
Post-Instantiation CFC Method References Don't Show Up In CFDump In ColdFusion 9
Posted on Sep 23, 2010 at 3:25 PM
I've experienced something similar with cfdump, where complex types specified as properties in a CFC are displaying their methods with the CFC methods after instantiation. I'm not extending the CFC but just declaring a property and generating the accessors and mutators dynamically by setting the acc... read more »
-
My First ColdFusion Web Service
Posted on Jul 29, 2010 at 4:21 PM
No worries I just found my answer here. CF8 Hidden Gem: Refreshing Web Service WSDL and CF proxy/stub with new RefreshWSDL option http://www.carehart.org/blog/client/index.cfm/2007/9/3/cf8_hiddengem_refreshwsdl... read more »
-
My First ColdFusion Web Service
Posted on Jul 29, 2010 at 4:17 PM
@Ben, Yes I saw it but I don't totally understand it. I'm happy that it solves this problem with even less code though. No arguments there.... read more »
-
My First ColdFusion Web Service
Posted on Jul 26, 2010 at 10:19 AM
Thank you so much for this. I've had this problem before and just gave up using ColdFusion's web service tag. I'm Very happy to know a simple solution exists.... read more »
-
CreateObject() In ColdFusion 9 No Longer Requires The Type Parameter
Posted on Jul 7, 2010 at 8:47 AM
I haven't dived into CF 9 yet :( .... we are still on CF8 but I really can't wait to start building production applications utilizing all the cool new syntax changes in CF9. Great stuff.... read more »
-
ColdFusion Calendar Event Scripting - The Theory Of Handling Event Updates And Exceptions
Posted on Sep 12, 2009 at 1:01 AM
@Ben, Thanks for the confirmation. Yes, recurring events can get a bit tricky indeed. I was reading through some php development forums earlier about this same topic and was astonished by the long lines of developers having similar challenges coming up with an adequate events calendar model that is... read more »
-
ColdFusion Calendar Event Scripting - The Theory Of Handling Event Updates And Exceptions
Posted on Aug 27, 2009 at 12:17 PM
Hi Ben, I'm building an event calendar for the first time and I'm trying to get my mind wrapped around recurring events. I am not familiar with the techniques used in other systems but a recurring event I assume would be the same base event called repeatedly and not physically duplicated (as in n... read more »
-
Building A Simple ColdFusion Dependency Injection Framework
Posted on Aug 18, 2009 at 1:02 PM
Hahaha! it's all good Ben. :)... read more »
-
Building A Simple ColdFusion Dependency Injection Framework
Posted on Aug 18, 2009 at 12:22 PM
As usual, great article Ben. I really enjoy reading your material. Two Thumbs and a Toe up!... read more »
-
ColdFusion vs. XYZ - It Finally Got Physical
Posted on Aug 18, 2009 at 12:04 PM
Be one with your inner coder.... read more »
-
ColdFusion vs. XYZ - It Finally Got Physical
Posted on Aug 12, 2009 at 12:05 PM
Ben you are crazy man!!! You know very well that you fell asleep at the keyboard and that's the truth.... read more »
-
Project HUGE: Optimum Nutrition Whey Protein - The Best Tasting, Best Mixing Protein Powder
Posted on Aug 12, 2009 at 11:31 AM
Cool stuff. I was never in to protein powders simply because I disliked the after taste of all I've tried thus far. I looooove to eat though so I pretty much go for a high protein diet. I wouldn't mind giving this brand a try because from the looks of it you really enjoyed it. :)... read more »
-
A Problem With My Coding Methodology That's Driving Me Crazy
Posted on Jun 22, 2009 at 12:31 PM
I would surely give the local scope the big black boot for VARs anywhere, any day!... read more »
-
A Problem With My Coding Methodology That's Driving Me Crazy
Posted on Jun 16, 2009 at 10:50 PM
The code above didn't indent properly. just noting.... read more »
-
A Problem With My Coding Methodology That's Driving Me Crazy
Posted on Jun 16, 2009 at 10:47 PM
In flex I do the latter for variables and former for functions also. private function doSomething( arg1 : String , arg2 : Boolean) : void { if(some condition) { Do Something } } The above seems much cleaner to me and easier to follow. I don't give a second thought to saving space. Readab... read more »
-
A Problem With My Coding Methodology That's Driving Me Crazy
Posted on Jun 16, 2009 at 9:25 PM
I also agree with Sean 110%. Working with Flex, ColdFusion and Java together really forces you to "behave" in ColdFusion's typeless environment. I really like this by the way. " dataAsString = ... dataAsXml = xmlParse( dataAsString ); " I normally do the same thing Ben mentioned. " <cfset ra... read more »
-
Do Remote CFC Method Calls Add Any Value In ColdFusion?
Posted on May 27, 2009 at 4:08 PM
@Ben, (flaw in that it just is unnecessary) Sorry, I should of been more clear. I don't want you to think that I am making a great deal over the Form scope thing. It was just a small part of my reasoning behind this. Logically in my mind I thought it made perfect sense to encapsulate the request ... read more »
-
Do Remote CFC Method Calls Add Any Value In ColdFusion?
Posted on May 27, 2009 at 12:00 PM
@ Ben, I don't have any issues with Merging Form and URL data within the context of an HTML based application request but I do see a flaw in design if you are doing the same thing for a Flex based application.... read more »
-
Do Remote CFC Method Calls Add Any Value In ColdFusion?
Posted on May 26, 2009 at 8:33 PM
@ Ben, Yes, you are correct but it is not done in a modular fashion. Frameworks like Model-Glue, Mach-II and ColdBox merges the Form and URL scope directly which is absolutely perfect when working in the realm of HTML but Flex, Air or AJAX will require a bit of a hackish approach to process a reque... read more »