The techie in me RSS 2.0
 Sunday, February 07, 2010

Maximum request length matters when you want to allow upload/download of large files.

This is one of the major change in IIS7. In previous version the default is 4MB, in IIS7 its 28.6MB. So when you deploy your ASP.NET application you will see that it will work for files larger than 4MB, but will give as soon as you cross the 28MB.

In IIS 7, the attribute has been changed to maxAllowedContentLength and it has to appear in <system.webServer> section (as for all IIS 7 settings). The complete attribute will look something like this…

<system.webServer>
<
security > <requestFiltering> <requestLimits maxAllowedContentLength="3072000000" /> </requestFiltering> </security>

 

Sunday, February 07, 2010 12:18:00 AM (GMT Standard Time, UTC+00:00)  #    Comments [0] -
Coding | WCF
 Tuesday, January 12, 2010

I ran into trouble during deploying a WCF service on IIS7 with https.

There's a great resource on all things WCF Security related here

http://www.codeplex.com/WCFSecurity

This helped me a lot.

Tuesday, January 12, 2010 7:50:00 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] -
WCF
 Tuesday, November 10, 2009

See how you can things more complicated… click here

 

and how you can make things simpler… here

Tuesday, November 10, 2009 2:58:17 PM (GMT Standard Time, UTC+00:00)  #    Comments [0] -
WCF
About me
Name : Rujith Anand
Occupation : Eating, drinking, sleeping and Yes ofcourse coding.
Location : Reading, UK
Archive
<March 2010>
SunMonTueWedThuFriSat
28123456
78910111213
14151617181920
21222324252627
28293031123
45678910
Blogs I read
Disclaimer

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

© Copyright 2010
Rujith Anand

Statistics
Follow me on Twitter
All Content © 2010, Rujith Anand