finally resolved.
AcknowledgeMessage.correlationId has to match IMessage.messageId and
AsyncRequest will call proper responder.
public class MyMessageResponder extends MessageResponder
{
override protected function resultHandler(message:IMessage):void{
var ack:AcknowledgeMessage=new AcknowledgeMessage();
ack.correlationId=message.messageId;
this.agent.acknowledge(ack,message);
}
}
--
View this message in context:
http://www.nabble.com/MessageResponder-%3EMessageAgent-%3EResponder-tp14217738p14241724.html
Sent from the FlexCoders mailing list archive at Nabble.com.