Re: Apache Flex AIR Application problems with a limitation of two HTTP request on windows

2019-01-07 Thread Carlos Rovira
Hi Jan,

many thanks for the suggestion, we finally took another direction in the
overall process (Java/Flex), but I think is good to hear more solutions to
the original problem so others finding it could get this ideas

thanks! :)

Carlos

El lun., 7 ene. 2019 a las 9:22, jan.weber ()
escribió:

> So, the raw-text format was removed in my previous reply; here the content
> of
> the batch/cmd file:
>
> @ECHO OFF
>
> REG add
> "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet
> Settings" /v MaxConnectionsPerServer  /t REG_DWORD /d 16 /f
>
> ECHO true
>
>
>
> --
> Sent from: http://apache-flex-users.246.n4.nabble.com/
>


-- 
Carlos Rovira
http://about.me/carlosrovira


Re: Apache Flex AIR Application problems with a limitation of two HTTP request on windows

2019-01-07 Thread jan.weber
So, the raw-text format was removed in my previous reply; here the content of
the batch/cmd file:

@ECHO OFF

REG add
"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet
Settings" /v MaxConnectionsPerServer  /t REG_DWORD /d 16 /f

ECHO true



--
Sent from: http://apache-flex-users.246.n4.nabble.com/


Re: Apache Flex AIR Application problems with a limitation of two HTTP request on windows

2019-01-07 Thread jan.weber
I read the original thread where the creation of an ANE was suggested in
order to manipulate the registry of Windows.

An easier way would be to create a Batch (or cmd) File for this and call
this batch file with an AS3 NativeProcess.

E.g. something like this:


[HTTP_Limit.cmd]




// 16 would be the new value for MaxConnectionsPerServer  
// REG_DWORD is the Registry Value Type. The value "REG_DWORD" is just an
assumption.




--
Sent from: http://apache-flex-users.246.n4.nabble.com/