Hi All,
we are using java and flex, for my web application we set session time
to 20 minutes,after session expired when I am trying to access the
remote object I am getting Send Failed error
I am using this code to send remote object
var blazeUrl:String = "/RiskReportsSummary/messagebroker/";
var remoteObject:RemoteObject = new RemoteObject();
var channelSet:ChannelSet = new ChannelSet();
var amfChannel:Channel = new
SecureAMFChannel("amfChannel",
blazeUrl + "amf");
channelSet.addChannel(amfChannel);
remoteObject.channelSet = channelSet;
remoteObject.destination = 'dynamicReportRequest';
remoteObject.addEventListener(ResultEvent.RESULT,onSuccessGetDynamicReportUrl);
remoteObject.addEventListener(FaultEvent.FAULT,onFaultGetDynamicReportUrl);
var sentMsg : AsyncToken =
remoteObject.getOperation("getDynamicReportUrl").send();
Please let me know the way I can solve this problem
Thanks for any advanced help
Regards,
Pradeep
--
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en.