vote up 3 vote down star
2

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.

I'm used to using Fiddler 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.

In my case, I do 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.

flag

25% accept rate
Sigh... I guess it's time for me to actually learn Wireshark. I've been avoiding it because Fiddler is so much simpler IMO. – Brendan Kidwell Sep 18 '08 at 18:47

5 Answers

vote up 6 vote down

Wireshark: sniffing the glue that holds the internet together

http://www.wireshark.org/

link|flag
vote up 4 vote down

http://www.charlesproxy.com/

Although not free, will decode AMF binary data and allows to trace SSL connections too.

link|flag
Charles is so damn great it almost hurts! – grapefrukt Sep 19 '08 at 7:27
Charles is fantastic. – Theo Sep 19 '08 at 15:46
Charles is amazing and totally worth the license fee. – cliff.meyers Dec 4 '08 at 2:59
vote up 2 vote down

ServiceCapture is another option. It decodes the binary AMF for you, if I remember correctly.

http://kevinlangdon.com/serviceCapture/

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

ditto for wireshark (the artist formerly known as Ethereal). you can sniff at every protocol layer, and stitch together traffic streams.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.