Internal Server Error 500

  1. #1

    Internal Server Error 500

    Hi, Danill

    I have Published Web application on IIS 7.0
    now its working fine but after certain time like session expires in 20 min
    it gives error as [Communication Failure] and [Internal Server Error 500]

    Can, you please help me out of this problem.

    Thanks and Regards
    Ganesh.
  2. #2

    re:

    are you using Session[' value',value ] parameters ?
  3. #3

    Internal Server Error 500

    Quote Originally Posted by xborderland View Post
    are you using Session[' value',value ] parameters ?
    No I am using Session["Value"]=value only.

    Can u help me out.

    Ganesh
    Last edited by Ganesh3.shirsath; Jan 20, 2011 at 2:00 PM.
  4. #4

    RE:

    when i using session parameters
    I had the same problem
    the solution in my case
    replace the Session Parameters with cookie parameters


    create a Cookie Parameters

    HttpCookie cookie = new HttpCookie("nameOfthecookie", variable);

    Response.Cookies.Add(cookie);


    and For Requesting

    Request.Cookies.Get("nameOfthecookie").Value

    for clean cookies

    Response.Cookies.Clear();

Similar Threads

  1. Internal Server Error 500
    By Ganesh3.shirsath in forum 1.x Help
    Replies: 2
    Last Post: Feb 07, 2013, 9:37 AM
  2. Direct Method cause Internal Server Error.
    By Kaveh in forum 2.x Help
    Replies: 0
    Last Post: Apr 17, 2012, 2:44 PM
  3. Request failure : Internal Server Error
    By richard in forum 2.x Help
    Replies: 1
    Last Post: Mar 15, 2012, 12:16 PM
  4. Replies: 1
    Last Post: Jul 01, 2010, 7:09 AM
  5. Replies: 5
    Last Post: May 28, 2009, 5:03 AM

Posting Permissions