Slow page loads, possible security issue?

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

  1. #1

    Default Slow page loads, possible security issue?

    Hello all,

    I am attempting to work on a project for work at home and I'm experiencing
    extremely slow page loads. These are pages that work fine in the office but
    when I try to work on the project at home on my laptop, the pages take
    upwards of 100+ seconds to load. I will try to give all the pertinent info
    below. I think it is probably a security issue which is why I am cross
    posting.

    My laptop is acting as my web server. I am using DSL to access the
    corporate network thru VPN. The site uses Windows auth, no anonymous
    authentication is allowed. The problem occurs between the
    PreRequestHandlerExecute and the PostRequestHandlerExecute. Like I said, a
    delay of at least 100 seconds. I am thinking that maybe it attempts to
    authenticate using one method to the corporate network and times out, then
    goes to another method and succeeds. Here is some more info... using 1.0
    framework. XP Pro, IE6.0. Once again, the only reason it is going back to
    the corporate network is to authenticate.

    When I run this on my desktop(with the desktop acting as the webserver) at
    work, it has absolutely no problems. The only major difference between what
    I have in the office, and what I have at home is going through VPN.

    Anyone able to help me with this? I am the first to admit that security
    is one of my weaker areas so any help would be greatly appreciated. If you
    need more info, let me know...

    Scott


    Scott F. Brown Guest

  2. Similar Questions and Discussions

    1. Page loads slow
      Take a look at this site I'm working on. http://www.viswiz.biz/simacor/simacor.html Does anyone else watch the background images loading in...
    2. PDF performance issue - Very Slow on 3+ page PDFs
      I'm having a performance problem with the <cfdocument> PDF renderer. And, I know its a PDF performance problem b/c the exact same page output in...
    3. Slow file loads in Photoshop CS Mac
      Buko - why would that have any relation to this problem? The CDS code has no measurable impact on file loading.
    4. My website completed entirely in Flash loads slow....
      Here is my problem: I am a newbie to Flash and assume that others have encountered this problem before. I built a site entirely using flash. I...
    5. site loads slow
      My site www.puroconjunto.com was created in Purlisher 2002. I had background music (since it is a music site) and the whole works. All of a...
  3. #2

    Default Re: Slow page loads, possible security issue?


    Answering my own post here....

    &nbsp; &nbsp; &nbsp; &nbsp; The problem was a call to IsInRole. &nbsp;The code checks the local machine to see if the authorized user is a member of a particular users group. &nbsp;That group was not on the local box and it seems like rather than causing an exception, it just timed out. &nbsp;There may also be a problem with connecting to the RPC server that I'm not going to worry about at this time. &nbsp;So, what I did to get around the problem was to put in precompiler #if/else &nbsp;to return true on the security check if in debug mode. &nbsp;For my situation, this is an acceptable work around to get me back up and running.
    bomlin@nnnnoooossssppppaaaaammmverizon.net 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