Coldfusion

flashservices/gateway and ColdFusion 10

Hey! A post on ColdFusion! (I’m so pissed at you, ColdFusion…) So it appears that Adobe changed /flashservices/gateway* = cfusion to /flashservices/gateway/* = cfusion in uriworkermap.properties for ColdFusion 10. Why is this a problem? Well, I have a lot of legacy content that makes AMF calls to CFCs in a system that is being upgraded …

flashservices/gateway and ColdFusion 10 Read More »

IIS7 URL Rewrite QuickTip: Allow Flash Gateway

We all know that ColdFusion allows Flash Remoting (AMF) communication to occur via two separate URL strings: http://my.site.com/flex2gateway http://my.site.com/flashservices/gateway I recently came across the problem where the URL Rewrite rules in IIS7 were blocking both of these URLs from being passed on and correctly processed by ColdFusion. The solution is to add the following two rules …

IIS7 URL Rewrite QuickTip: Allow Flash Gateway Read More »

Remoting through Flex with Coldfusion

I’m used to setting the ObjectEncoding to AMF0 when working with Flash Media Server 2, but haven’t realized till now that I also am required to do this when communicating with Coldfusion 8 through remoting: import flash.net.NetConnection; import flash.net.ObjectEncoding; NetConnection.defaultObjectEncoding = flash.net.ObjectEncoding.AMF0; The error “Unknown object type tag (17)” was being generated by CF8 as …

Remoting through Flex with Coldfusion Read More »