Tom Jordahl
Member since Dec 11, 2008
- Profile: /members/677-tom-jordahl.htm
- URL: http://tjordahl.blogspot.com
- Comments: 9
Recent Blog Comments By Tom Jordahl
-
Learning ColdFusion 8: Javascript Object Notation (JSON) Part III - AJAX Demo
Posted on Jun 15, 2007 at 3:12 PM
Ben, The ?wsdl URL param is only used for GET requests when you are in fact getting WSDL for your web service client software. For instance cfinvoke gets the WSDL and generates Java artifacts (via Apache Axis) that it then compiles and invokes to consume the service. For AJAX, the access="remote" ... read more »
-
Learning ColdFusion 8: Javascript Object Notation (JSON) Part III - AJAX Demo
Posted on Jun 15, 2007 at 3:07 PM
Ben, You should at least be using cfajaxproxy! The whole application can be written with the new ColdFusion 8 AJAX tags, right? :-) Something for another entry perhaps? Keep up the great postings.... read more »
-
Learning ColdFusion 8: Javascript Object Notation (JSON) Part II - Remote Method Calls
Posted on Jun 15, 2007 at 2:59 PM
Hi Ben, I am afraid that the returnFormat attribute is also ignored for web services. What you are seeing is ColdFusion converting the Java objects that the Axis web service engine creates in to things that CFML can use. The only thing that travels between a cfinvoke and a CFC web service is SOAP... read more »
-
Learning ColdFusion 8: Defining Tags With AttributeCollection
Posted on Jun 15, 2007 at 2:33 PM
We know that users want to be able to "mix-and-match" attributeCollection and inline attributes. We just didn't get to it this time. Look for this to be fixed in a future update.... read more »
-
Learning ColdFusion 8: CFThread Part IV - Cross-Page Thread References
Posted on Jun 15, 2007 at 2:28 PM
The UDF in the variables scope is the actual function that is run in the thread i.e. the code between the cfthread and /cfthread tags are turned in to a UDF and executed in a thread.... read more »
-
Learning ColdFusion 8: CFImage Part II - Tag Based Image Manipulation
Posted on Jun 15, 2007 at 1:49 PM
Ben, Check out the Duplicate() CFML function for making a copy of an image object. That will do exactly what you wanted I think.... read more »
-
Learning ColdFusion 8: CFImage Part II - Tag Based Image Manipulation
Posted on Jun 15, 2007 at 11:29 AM
By the way, I just fixed the captcha error messages to clearly indicate the minimum width or height. Dude, you have to file beta bugs on this stuff!! :-)... read more »
-
Learning ColdFusion 8: CFImage Part II - Tag Based Image Manipulation
Posted on Jun 15, 2007 at 11:18 AM
The behavior of not overwriting the images in place is something we did on purpose to prevent a large number of bytes of memory getting wasted. The work flow is expected to be: - Read image - Perform multiple operations on image - Write image Thus we take care not to make multiple copies during pr... read more »
-
Learning ColdFusion 8: CFImage Part I - Reading And Writing Images
Posted on Jun 15, 2007 at 11:06 AM
Hi Ben, Good stuff. FYI - I filed and fixed a bug (#69715) on the handling of the extensions when using a URL as an image source. We now correctly parse the format from the path of the URL, but more importantly we do not filter the URL based on the extension of the request. This should allow y... read more »