Load Testing File Uploads

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Load Testing File Uploads

    I am installing a new feature on our application that will allow the user to upload small to medium files from the web. I am using a pure script solution for the upload logic and storing the information in the database.

    I am running some load tests for the file upload, and I am getting a high number of 403 (Forbidden) result codes. However, each request seems to complete successfully. The memory and processor utilization is always pretty low, and I am not seeing any queuing or wait times.

    Any ideas as to what could be causing the problem?
    Scott Guest

  2. Similar Questions and Discussions

    1. Web File uploads
      While trying to do a simple file upload via a web form, (enctype="multipart/form-data"), I've run into a problem that has me stymied. This is an...
    2. Specify temp directory and file name for file uploads?
      I'm interested in understanding how MX processes file uploads. 1) By default, uploaded files seem to be placed in the...
    3. File Uploads
      Hello You must use <form action="uploadItem.php" method="post" enctype="multipart/form-data"> gerwazy POLAND
    4. PHP and file uploads
      Hi All, Here's one thing that I don't know much about - file uploading. As part of my project, I will have to build a file manager of sorts -...
    5. Uploads and file owner
      "Markus Baertschi" <markus@markus.org> wrote in message news:MPG.19b8540836c6ce579896ec@News.CIS.DFN.DE... ...
  3. #2

    Default Re: Load Testing File Uploads

    Permission setting in destination folder??

    "Scott" <Scott@discussions.microsoft.com> wrote in message
    news:1F58F0BF-2B07-4869-9920-F98E830D82B5@microsoft.com...
    > I am installing a new feature on our application that will allow the user
    to upload small to medium files from the web. I am using a pure script
    solution for the upload logic and storing the information in the database.
    >
    > I am running some load tests for the file upload, and I am getting a high
    number of 403 (Forbidden) result codes. However, each request seems to
    complete successfully. The memory and processor utilization is always
    pretty low, and I am not seeing any queuing or wait times.
    >
    > Any ideas as to what could be causing the problem?

    IPT 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