We've got an ASP.NET application working with with Oracle database. To connect to the database we've used the basic ways:
OracleConnection con= new OracleConnection(....;
OracleCommand cmd=new OracleCommand();
cmd.Connection=con;
cmd.CommandText=....;
I have no idea why but after 14-15 users are logged in to the application no additional user can log in and the application refuses to log in. I don't have any clue as to where I can start investigating except for the connection string. Here's how the connection string looks like:
"User ID=SSPF_WEB_EDITION;Data Source=SSPF;Persist Security Info=False;Password=123;Validate Connection=true; Connection TimeOut=15;Pooling=False;
I thought maybe this issue is related with the "Pooling=False" option?
EDIT: We use Oracle's ODP.NET. Here's what we have in the log: "TNS:listener could not find available handler witht matching protocol stack "