Hello,
1.
On AX 2009 (Rollup 3), the following code make the computer crashed (Technical it is called - ZOMBEE).
container c;
foo(c); // this makes the zombee.
I correct the above to the followings:
container c = connull(); // = connnull make the thing.
foo(c); // this not crashed.
Is it a well known bug, and is there any correction for that?
2. for following code:
UserConnection dbConnection;
dbConnection = new UserConnection;
Is there any limit (or best practice AX) of maximum number of connections that a user can have?
also,when there is situation that the above lines can last too long time (On some environments of mine this take several seconds. for 10,000 connection + closing, this take on one environment hours, and on the second less than one second. What may be the reason for taking too long time?)