RESOLVED: The value of the NetConnection's ObjectEncoding property needed to be set to AMF0 because Flash Media Server 2 was released prior to ActionScript 3.0.
Since all of my NetConnection calls are to FMS 2, I am able to set the default value once for all connections (this must be done before the connections are initialized): NetConnection.defaultObjectEncoding = flash.net.ObjectEncoding.AMF0; If you have an app that makes some calls to FMS 2 and other calls to FDS, you will need to set the value of ObjectEncoding for each NetConnection instance separately, like so: nc.objectEncoding = flash.net.ObjectEncoding.AMF0; -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

