Found the new problem; maximum connection pool
This week, I face the *very annoying* red message on my web application; ….the maximum connection pool size was reached….
What I've done to resolve that problem is to investigate and to discuss with the developers who responsible for coding and building that application. We found that there is no connection leakage; every connection has been close and dispose, we don't use dataset which is not suitable for web application, and we put only one connection in a function (open and close the connection in each function).
Since we've almost been desperate to solve the problem, I found –during googling-- that there is an attribute called "pooling" that we can use in connection string. Its value can be either true or false. We agree to use the "pooling" attribute in the connectionstring tag in web.config file and we assign "Pooling = false:;. The result is "the *very annoying* red message telling the maximum connection pool doesn't show anymore".
However, I think that the solution is not so elegant. The HB (Hajar Bleh) Style still exists the in my development environment.. ;-) ting!
Should you have any suggestion to solve that problem, tell me, please?
Cheers,
Pingky