Performance prolem when deploying

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Performance prolem when deploying

    Hi,

    We have a quite simple asp.net application that works fne on my XP
    development box. When we deploy it to a Windows 2003 Server performance is
    really poor when rendering pages. When I turn tracing on it shows that it
    takes more than 15 seconds between "Begin Render" and "End Render". All
    application logic is in OnLoad which takes less than 0,1 seconds to complete
    on both machines. The weird thing is that if we request this page locally
    (from the server box) it takes 0,1 seconds. Authentication is Anonymous and
    we don't find any errors anywhere. The statusline text in IE is flickering
    while the request is being processed.

    So, the question is: How come the times varies depending on where the
    request comes from? It must be security related somehow but I can't figure
    it out.

    Thanks !

    Mans


    Mans Guest

  2. Similar Questions and Discussions

    1. Problem Deploying
      Hi! I've had trouble deploying quite a complex Cairngorm solution so I created a mere Hello World application and tried to deploy that ~...
    2. I/O exception when deploying from .ear
      We are currently using Websphere Application Server 6.00.1 and want to use Flex alongside struts. We also want to deploy the .war file the flex...
    3. Codec prolem (possibly)
      Hi all, can anyone enlighten me? i have a project which uses the quicktime control slider behaviour. This was originally implemented in the...
    4. deploying the web application
      Hi, I am using visual studio .net for developing and deploying the web application. My application is running perfectly on my system. I...
    5. Errors Deploying Web App
      what are the issues??? "Jose" <jose_martins@concentra.com> wrote in message news:032d01c33c21$1c1f8180$a401280a@phx.gbl...
  3. #2

    Default Re: Performance prolem when deploying

    Hi...

    Do you have used any client side implementation in the code behind pages..

    As you have written there is flickering in the status bar, there is is some
    kind to and from from server to browser before rendering the html..

    Can you spcify some portion of the first aspx page.....

    "Mans" <mans@nomail.com> wrote in message
    news:uQLgeta5DHA.2496@TK2MSFTNGP09.phx.gbl...
    > Hi,
    >
    > We have a quite simple asp.net application that works fne on my XP
    > development box. When we deploy it to a Windows 2003 Server performance is
    > really poor when rendering pages. When I turn tracing on it shows that it
    > takes more than 15 seconds between "Begin Render" and "End Render". All
    > application logic is in OnLoad which takes less than 0,1 seconds to
    complete
    > on both machines. The weird thing is that if we request this page locally
    > (from the server box) it takes 0,1 seconds. Authentication is Anonymous
    and
    > we don't find any errors anywhere. The statusline text in IE is flickering
    > while the request is being processed.
    >
    > So, the question is: How come the times varies depending on where the
    > request comes from? It must be security related somehow but I can't figure
    > it out.
    >
    > Thanks !
    >
    > Mans
    >
    >

    Madan Nayak Guest

  4. #3

    Default Re: Performance prolem when deploying

    you probably have a large payload whose impact only shows up with a network
    request. check how big your viewstate is. if you use netscape, check page
    info, if ie, save the page to disk, and check the file size.

    -- bruce (sqlwork.com)


    "Mans" <mans@nomail.com> wrote in message
    news:uQLgeta5DHA.2496@TK2MSFTNGP09.phx.gbl...
    > Hi,
    >
    > We have a quite simple asp.net application that works fne on my XP
    > development box. When we deploy it to a Windows 2003 Server performance is
    > really poor when rendering pages. When I turn tracing on it shows that it
    > takes more than 15 seconds between "Begin Render" and "End Render". All
    > application logic is in OnLoad which takes less than 0,1 seconds to
    complete
    > on both machines. The weird thing is that if we request this page locally
    > (from the server box) it takes 0,1 seconds. Authentication is Anonymous
    and
    > we don't find any errors anywhere. The statusline text in IE is flickering
    > while the request is being processed.
    >
    > So, the question is: How come the times varies depending on where the
    > request comes from? It must be security related somehow but I can't figure
    > it out.
    >
    > Thanks !
    >
    > Mans
    >
    >

    bruce barker Guest

  5. #4

    Default Re: Performance prolem when deploying

    There are also some useful tools that let you see what is going on between
    your browser and the server. The best is [url]http://www.httpwatch.com/[/url] . There's
    also [url]http://www.blunck.info/iehttpheaders.html[/url]

    If it is the size of the output that is the problem then look at optimising
    it - removing viewstate if you aren't using it etc... You can also reduce
    the size with Http Compression - [url]http://www.intesoft.net/aspaccelerator/[/url]

    - Simon Green
    InteSoft IT Ltd


    "bruce barker" <nospam_brubar@safeco.com> wrote in message
    news:eQZuARd5DHA.632@TK2MSFTNGP12.phx.gbl...
    > you probably have a large payload whose impact only shows up with a
    network
    > request. check how big your viewstate is. if you use netscape, check page
    > info, if ie, save the page to disk, and check the file size.
    >
    > -- bruce (sqlwork.com)
    >
    >
    > "Mans" <mans@nomail.com> wrote in message
    > news:uQLgeta5DHA.2496@TK2MSFTNGP09.phx.gbl...
    > > Hi,
    > >
    > > We have a quite simple asp.net application that works fne on my XP
    > > development box. When we deploy it to a Windows 2003 Server performance
    is
    > > really poor when rendering pages. When I turn tracing on it shows that
    it
    > > takes more than 15 seconds between "Begin Render" and "End Render". All
    > > application logic is in OnLoad which takes less than 0,1 seconds to
    > complete
    > > on both machines. The weird thing is that if we request this page
    locally
    > > (from the server box) it takes 0,1 seconds. Authentication is Anonymous
    > and
    > > we don't find any errors anywhere. The statusline text in IE is
    flickering
    > > while the request is being processed.
    > >
    > > So, the question is: How come the times varies depending on where the
    > > request comes from? It must be security related somehow but I can't
    figure
    > > it out.
    > >
    > > Thanks !
    > >
    > > Mans
    > >
    > >
    >
    >

    Simon Green Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139