--- In [email protected], "Bruce Hopkins" <[EMAIL PROTECTED]> wrote: > > Tom, > > Thanks for your feed back on GDS. I have one question for you though. When I > ran the simple Pojo example, I saw in the output from my Tomcat server that > GDS was using AMF0, although it was supposed to be using AMF3. Do you know > why that is? > > Thanks, > > Bruce >
If have run full DEBUG and see that the message from the AMFMessageFilter.doFilter method outputs a line stating ">>Incoming AMF0 request from http....", but if you follow the linkage in the debug chain, it seems that it expects AMF0 but if it detects AMF3, it passes off to AMF3 handlers: AMFMessageFilter > AMF0Deserializer (detects AMF3_OBJECT) > AMF3Deserializer > AMF3CommandMessageProcessor, etc. So, the message you probably saw was the simple message from the initial reception of the message in AMFMessageFilter, but it does indeed handle AMF3, as my traces have shown.

