[flexcoders] Single HTTPService vs Multiple HTTPService

2011-08-11 Thread georgemeng2011
Hi Guys, Asked this question before, did not get the answer. My environment Flash Builder 4.1 with AIR 2.6. I have a HTTPService call which will last 2 minutes. In my AIR application, when I run one HTTPService, no matter how I set requestTimeout, it will only run up to 30 seconds. When I use

[flexcoders] Blur all text in Application

2011-08-04 Thread georgemeng2011
Hello, We build an AIR application to show business information using Flash Builder 4.1 and AIR 2.6. Sometimes user wants to take screenshot of Application, but because it contains some sensitive information, user want us add a button to blur all text objects: including legend, Axis label,

[flexcoders] Re: HTTPService timeout?

2011-08-03 Thread georgemeng2011
, georgemeng2011 georgemeng2000@ wrote: Hello, I have very simple code to call a simple PHP page. PHP page will insret 2000 records to mysql table, takes about 2 minutes. On PHP side, it is fine, I tested the php page within browser, it ran for 2 minutes and stoped. (I have

[flexcoders] Re: HTTPService timeout?

2011-08-03 Thread georgemeng2011
, there is PHP setting in php.ini for that max_execution_time = 30 ; Maximum execution time of each script, in seconds PS php_error.log is a good thing to check Cheers, --- In flexcoders@yahoogroups.com, georgemeng2011 georgemeng2000@ wrote: Hello, I have very simple code to call

[flexcoders] HTTP requestTimeout limit in AIR 2.6?

2011-08-03 Thread georgemeng2011
I posted another post with the same question, but that post was not clear. So here is the update. In short, I have the same code works in Web, Framework 3.5 AIR, but not Framework 4.1 AIR. Environment first: Flash Builder 4.1, AIR 2.6 I have a PHP page which insert records to DB, takes 2

[flexcoders] 60 seconds cut-off for batch HTTPService?

2011-08-03 Thread georgemeng2011
First my environment: Flash Builder 4.1, AIR 2.6 Within AIR application, I have code like this: private function init():void { for ( var i:int = 0; i 500; i++ ) { var ws:HTTPService = new HTTPService(); ws.requestTimeout = 300; ws.useProxy = false;

[flexcoders] Re: Simultaneous HTTPService limitation?

2011-08-02 Thread georgemeng2011
Thank you! Good to know there is such limit. George --- In flexcoders@yahoogroups.com, Alex Harui aharui@... wrote: I think there is an upper-bound on the number of requests you can make per frame for Flash and maybe for AIR too. On 7/29/11 7:23 PM, georgemeng2011 georgemeng2000

[flexcoders] HTTPService timeout?

2011-08-02 Thread georgemeng2011
Hello, I have very simple code to call a simple PHP page. PHP page will insret 2000 records to mysql table, takes about 2 minutes. On PHP side, it is fine, I tested the php page within browser, it ran for 2 minutes and stoped. (I have configured on PHP to run longer than normal.) One Flex