You must Sign In to post a response.
  • Category: ASP.NET

    My production server getting time out frequently,

    Hi All,
    I am working on asp.net web application support project,my production server getting time out frequently,
    randomly,every 1 min or 5min or 11 min,but its worked previously,can any one guide me properly,

    application pool  is there, two server are there,

    one web application and two wcf services are there

    Thanks in advance,
    Hari.
  • #770243
    Please check the we.config. Also, check the connection string from the web.cofig. Alter it as shown below,

    <add key="DBConn" value="server=192.168.0.109;database=HRM;user id=sa;pwd=xxx;pooling=false;connection lifetime=4000;max pool size=400;" />

    Regards,
    Programmer

    http://www.dotnetutorial.com/interview-questions.aspx?catid=1

  • #770383
    There are several reasons to get the timeout exceptions
    1. is there anything updating or copying or creating files into central BIN folder of your application
    2. is anything updating configuration file
    3. is apppool configurations properly set especially the recycling properties
    4. make sure sql connection string not specified connection timeout
    5. make sure all the DB objects are properly executed or processed on DB server without having lock issues

    Thanks!
    B.Ramana Reddy


  • Sign In to post your comments