-Dave
> --
> You received this message because you are subscribed to the Google Groups "AmFast" group.
> To post to this group, send email to amf...@googlegroups.com.
> To unsubscribe from this group, send email to amfast+un...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/amfast?hl=en.
>
>
Client Server
Consumer subscribes
RPC function called
Progress msg sent
..
RPC function (takes over 20 secs) completes
Subscribe request is acknowledged
Receive all queued progress messages
When I moved the subscribe to an earlier time (things started to work)
Client Server
Consumer subscribes
Subscribe request is acknowledged
RPC function called
Progress msg sent
Receive progress message
..
..
RPC function (takes over 20 secs) completes
So it looks like the RPC call is locking the thread in some way it no longer is able to respond to command request such as the subscribe command.
Andy