Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can I increase maxRequestLength of ASP.NET request for MVC Controller Action?

I have an MVC controller that accepts file and it can be very large. I increased maxRequestLength in web.config, but it is security issue and the best solution for me will be have increased request length only for Upload method. Is it possible?

I tried

<location path="UploadFile">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
      <httpRuntime maxRequestLength="2097151"/>
    </system.web>
  </location>

But it didn't helped

Thank you.

share|improve this question

1 Answer

up vote 3 down vote accepted

Can I increase maxRequestLength of ASP.NET request for MVC Controller Action?

AFAIK, no. But you could use a generic HTTP handler instead of a controller action and then your <location path="UploadFile"> will work. For example your handler could be placed in ~/UploadFile/upload.ashx.

share|improve this answer
2  
What about setting <location path="Controller/Action"> from this thread: stackoverflow.com/questions/492346/… ? Does it only work for executionTimeout and not for maxRequestLength ? – Jaroslaw Waliszko Apr 15 '12 at 23:14
@JaroslawWaliszko I checked and it does seem to work :) – Ronnie Overby Dec 17 '12 at 21:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.