Sniffing traffic between a Flex app and ColdFusion backend - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T04:32:07Zhttp://stackoverflow.com/feeds/question/95442http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/95442/sniffing-traffic-between-a-flex-app-and-coldfusion-backend3Sniffing traffic between a Flex app and ColdFusion backendBrendan Kidwell2008-09-18T18:36:52Z2009-12-04T13:33:12Z
<p>What is a good strategy for sniffing/tracing function calls between a Flex application and a ColdFusion-based backend running on ColdFusion server? I understand they use AMF protocol.</p>
<p>I'm used to using <a href="http://www.fiddlertool.com/fiddler/" rel="nofollow">Fiddler</a> to sniff transactions between HTTP clients and servers, and it works great as long as you're using plain text or XML HTTP requests and responses (including those over SSL) but it isn't much help for binary protocols like AMF over HTTP.</p>
<p>In my case, I <strong>do</strong> have access to the source code for the client and server, but I'm looking for an easy way to passively sniff traffic in any Flex + ColdFusion situation, without having to tweak anything on the server.</p>
http://stackoverflow.com/questions/95442/sniffing-traffic-between-a-flex-app-and-coldfusion-backend/95477#954776Answer by bmdhacks for Sniffing traffic between a Flex app and ColdFusion backendbmdhacks2008-09-18T18:39:25Z2008-09-18T18:39:25Z<p>Wireshark: sniffing the glue that holds the internet together</p>
<p><a href="http://www.wireshark.org/" rel="nofollow">http://www.wireshark.org/</a></p>
http://stackoverflow.com/questions/95442/sniffing-traffic-between-a-flex-app-and-coldfusion-backend/95856#958560Answer by corey goldberg for Sniffing traffic between a Flex app and ColdFusion backendcorey goldberg2008-09-18T19:11:41Z2008-09-18T19:11:41Z<p>ditto for wireshark (the artist formerly known as Ethereal). you can sniff at every protocol layer, and stitch together traffic streams.</p>
http://stackoverflow.com/questions/95442/sniffing-traffic-between-a-flex-app-and-coldfusion-backend/95903#959032Answer by Abyss Knight for Sniffing traffic between a Flex app and ColdFusion backendAbyss Knight2008-09-18T19:16:09Z2008-09-18T19:16:09Z<p>ServiceCapture is another option. It decodes the binary AMF for you, if I remember correctly.</p>
<p><a href="http://kevinlangdon.com/serviceCapture/" rel="nofollow">http://kevinlangdon.com/serviceCapture/</a></p>
http://stackoverflow.com/questions/95442/sniffing-traffic-between-a-flex-app-and-coldfusion-backend/98104#981044Answer by Cosma Colanicchia for Sniffing traffic between a Flex app and ColdFusion backendCosma Colanicchia2008-09-18T23:48:59Z2008-09-18T23:48:59Z<p><a href="http://www.charlesproxy.com/" rel="nofollow">http://www.charlesproxy.com/</a></p>
<p>Although not free, will decode AMF binary data and allows to trace SSL connections too.</p>
http://stackoverflow.com/questions/95442/sniffing-traffic-between-a-flex-app-and-coldfusion-backend/511920#5119201Answer by Jas Panesar for Sniffing traffic between a Flex app and ColdFusion backendJas Panesar2009-02-04T15:47:14Z2009-02-04T15:47:14Z<p>The simple and poor man's trick. Create one cfc to log calls to the different cfc's and pages as you need. Dump it all to a table. Filter and sort at will. I have done this in the past and it has worked great. It's like putting in little fish hooks anywhere you want to know. This would likely give you the most application relevant data. If you need an example let me know.</p>
http://stackoverflow.com/questions/95442/sniffing-traffic-between-a-flex-app-and-coldfusion-backend/1846968#18469680Answer by ccpizza for Sniffing traffic between a Flex app and ColdFusion backendccpizza2009-12-04T13:33:12Z2009-12-04T13:33:12Z<p>Firebug with the Flashbug plugin will show all decoded AMF messages both to and from a Flash app. Works well over HTTPS too.</p>