I try to upload file (size: 364kb), and I get http error 404. I added to the web.config file the relevant settings:
  <location path="UploadFileServer.axd">
    <system.web>
      <httpRuntime executionTimeout="999999" maxRequestLength="2097151" />
    </system.web>
  </location>
  <system.web>
    <httpRuntime executionTimeout="999999" maxRequestLength="50000"/>
  </system.web>
    <system.webServer>
        <security>
          <requestFiltering>
            <requestLimits maxAllowedContentLength="52428800" />
          </requestFiltering>
        </security>
    </system.webServer>
but still, no luck!
Any suggestions why it fails? Am I doing something wrong?
