We ran into the same issue this week, having to send a custom file format as
a ByteArray along with some custom mapped AS3 value objects to Zend AMF
(knowing the file size can range from 100Ko to over 5Mo and request was
systematically shut after 8-9 seconds on a Windows 10 desktop computer).

The solution is in fact to set two properties with the same value on the
channel of your RemoteObject.
Let's say you instantiate it programmatically :

var remote : RemoteObject = new RemoteObject("zendamf");

var channel : AMFChannel = new AMFChannel ( "zendamf-application-endpoint",
"http://domain.com/services/application/public/amf"; );
channel.connectTimeout = 150; // seconds
channel.requestTimeout = 150; // seconds

var channelSet : ChannelSet = new ChannelSet();
channelSet.addChannel(channel);

remote.channelSet = channelSet;
remote.source = "AMF_Service";

Hope this helps !



--
View this message in context: 
http://apache-flex-users.2333346.n4.nabble.com/Flex-application-Session-Timeout-tp7362p11551.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.

Reply via email to