<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Rujith Anand's space - WCF</title>
    <link>http://www.rujith.net/RujithBlogTech/</link>
    <description>The techie in me</description>
    <language>en-us</language>
    <copyright>Rujith Anand</copyright>
    <lastBuildDate>Sun, 07 Feb 2010 00:18:00 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.0.7226.0</generator>
    <managingEditor>rujith@rujith.net</managingEditor>
    <webMaster>rujith@rujith.net</webMaster>
    <item>
      <trackback:ping>http://www.rujith.net/RujithBlogTech/Trackback.aspx?guid=86152535-3c14-42da-939d-9d86384332a7</trackback:ping>
      <pingback:server>http://www.rujith.net/RujithBlogTech/pingback.aspx</pingback:server>
      <pingback:target>http://www.rujith.net/RujithBlogTech/PermaLink,guid,86152535-3c14-42da-939d-9d86384332a7.aspx</pingback:target>
      <dc:creator>Rujith Anand</dc:creator>
      <wfw:comment>http://www.rujith.net/RujithBlogTech/CommentView,guid,86152535-3c14-42da-939d-9d86384332a7.aspx</wfw:comment>
      <wfw:commentRss>http://www.rujith.net/RujithBlogTech/SyndicationService.asmx/GetEntryCommentsRss?guid=86152535-3c14-42da-939d-9d86384332a7</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Maximum request length matters when you want to allow upload/download of large files.
</p>
        <p>
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.
</p>
        <p>
In IIS 7, the attribute has been changed to maxAllowedContentLength and it has to
appear in &lt;system.webServer&gt; section (as for all IIS 7 settings). The complete
attribute will look something like this…
</p>
        <pre class="code">
          <span style="color: blue">&lt;</span>
          <span style="color: #a31515">system.webServer</span>
          <span style="color: blue">&gt;</span>
          <span style="color: blue">
            <br />
&lt;</span>
          <span style="color: #a31515">security </span>
          <span style="color: blue">&gt;
&lt;</span>
          <span style="color: #a31515">requestFiltering</span>
          <span style="color: blue">&gt;
&lt;</span>
          <span style="color: #a31515">requestLimits </span>
          <span style="color: red">maxAllowedContentLength</span>
          <span style="color: blue">=</span>"<span style="color: blue">3072000000</span>" <span style="color: blue">/&gt;
&lt;/</span><span style="color: #a31515">requestFiltering</span><span style="color: blue">&gt;
&lt;/</span><span style="color: #a31515">security</span><span style="color: blue">&gt;</span></pre>
        <p>
…
</p>
        <p>
 
</p>
        <p>
          <a href="http://11011.net/software/vspaste">
          </a>
        </p>
      </body>
      <title>Change Request length in IIS 7</title>
      <guid isPermaLink="false">http://www.rujith.net/RujithBlogTech/PermaLink,guid,86152535-3c14-42da-939d-9d86384332a7.aspx</guid>
      <link>http://www.rujith.net/RujithBlogTech/2010/02/07/ChangeRequestLengthInIIS7.aspx</link>
      <pubDate>Sun, 07 Feb 2010 00:18:00 GMT</pubDate>
      <description>&lt;p&gt;
Maximum request length matters when you want to allow upload/download of large files.
&lt;/p&gt;
&lt;p&gt;
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.
&lt;/p&gt;
&lt;p&gt;
In IIS 7, the attribute has been changed to maxAllowedContentLength and it has to
appear in &amp;lt;system.webServer&amp;gt; section (as for all IIS 7 settings). The complete
attribute will look something like this…
&lt;/p&gt;
&lt;pre class="code"&gt;&lt;span style="color: blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;system.webServer&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: blue"&gt;
&lt;br&gt;
&amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;security &lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;
&amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;requestFiltering&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;
&amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;requestLimits &lt;/span&gt;&lt;span style="color: red"&gt;maxAllowedContentLength&lt;/span&gt;&lt;span style="color: blue"&gt;=&lt;/span&gt;"&lt;span style="color: blue"&gt;3072000000&lt;/span&gt;" &lt;span style="color: blue"&gt;/&amp;gt;
&amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515"&gt;requestFiltering&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;
&amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515"&gt;security&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;
…
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;
&lt;/p&gt;</description>
      <comments>http://www.rujith.net/RujithBlogTech/CommentView,guid,86152535-3c14-42da-939d-9d86384332a7.aspx</comments>
      <category>Coding</category>
      <category>WCF</category>
    </item>
    <item>
      <trackback:ping>http://www.rujith.net/RujithBlogTech/Trackback.aspx?guid=26bcb1da-bfce-4c26-b5b5-240e7d32e3ef</trackback:ping>
      <pingback:server>http://www.rujith.net/RujithBlogTech/pingback.aspx</pingback:server>
      <pingback:target>http://www.rujith.net/RujithBlogTech/PermaLink,guid,26bcb1da-bfce-4c26-b5b5-240e7d32e3ef.aspx</pingback:target>
      <dc:creator>Rujith Anand</dc:creator>
      <wfw:comment>http://www.rujith.net/RujithBlogTech/CommentView,guid,26bcb1da-bfce-4c26-b5b5-240e7d32e3ef.aspx</wfw:comment>
      <wfw:commentRss>http://www.rujith.net/RujithBlogTech/SyndicationService.asmx/GetEntryCommentsRss?guid=26bcb1da-bfce-4c26-b5b5-240e7d32e3ef</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I ran into trouble during deploying a WCF service on IIS7 with https.
</p>
        <p>
There's a great resource on all things WCF Security related here
</p>
        <p>
          <a title="http://www.codeplex.com/WCFSecurity" href="http://www.codeplex.com/WCFSecurity">http://www.codeplex.com/WCFSecurity</a>
        </p>
        <p>
This helped me a lot.
</p>
      </body>
      <title>WCF Security Guidance</title>
      <guid isPermaLink="false">http://www.rujith.net/RujithBlogTech/PermaLink,guid,26bcb1da-bfce-4c26-b5b5-240e7d32e3ef.aspx</guid>
      <link>http://www.rujith.net/RujithBlogTech/2010/01/12/WCFSecurityGuidance.aspx</link>
      <pubDate>Tue, 12 Jan 2010 19:50:00 GMT</pubDate>
      <description>&lt;p&gt;
I ran into trouble during deploying a WCF service on IIS7 with https.
&lt;/p&gt;
&lt;p&gt;
There's a great resource on all things WCF Security related here
&lt;/p&gt;
&lt;p&gt;
&lt;a title="http://www.codeplex.com/WCFSecurity" href="http://www.codeplex.com/WCFSecurity"&gt;http://www.codeplex.com/WCFSecurity&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
This helped me a lot.
&lt;/p&gt;</description>
      <comments>http://www.rujith.net/RujithBlogTech/CommentView,guid,26bcb1da-bfce-4c26-b5b5-240e7d32e3ef.aspx</comments>
      <category>WCF</category>
    </item>
    <item>
      <trackback:ping>http://www.rujith.net/RujithBlogTech/Trackback.aspx?guid=2fff7885-a97a-474e-a703-72e534a50cdb</trackback:ping>
      <pingback:server>http://www.rujith.net/RujithBlogTech/pingback.aspx</pingback:server>
      <pingback:target>http://www.rujith.net/RujithBlogTech/PermaLink,guid,2fff7885-a97a-474e-a703-72e534a50cdb.aspx</pingback:target>
      <dc:creator>Rujith Anand</dc:creator>
      <wfw:comment>http://www.rujith.net/RujithBlogTech/CommentView,guid,2fff7885-a97a-474e-a703-72e534a50cdb.aspx</wfw:comment>
      <wfw:commentRss>http://www.rujith.net/RujithBlogTech/SyndicationService.asmx/GetEntryCommentsRss?guid=2fff7885-a97a-474e-a703-72e534a50cdb</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
See how you can things more complicated… <a href="http://msdn.microsoft.com/en-us/library/ms731734.aspx" target="_blank">click
here</a>… 
</p>
        <p>
 
</p>
        <p>
and how you can make things simpler… <a href="http://winterdom.com/2007/02/wcfconfigurationcomplexity" target="_blank">here</a></p>
      </body>
      <title>WCF configuration schema is complicated !</title>
      <guid isPermaLink="false">http://www.rujith.net/RujithBlogTech/PermaLink,guid,2fff7885-a97a-474e-a703-72e534a50cdb.aspx</guid>
      <link>http://www.rujith.net/RujithBlogTech/2009/11/10/WCFConfigurationSchemaIsComplicated.aspx</link>
      <pubDate>Tue, 10 Nov 2009 14:58:17 GMT</pubDate>
      <description>&lt;p&gt;
See how you can things more complicated… &lt;a href="http://msdn.microsoft.com/en-us/library/ms731734.aspx" target="_blank"&gt;click
here&lt;/a&gt;… 
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
and how you can make things simpler… &lt;a href="http://winterdom.com/2007/02/wcfconfigurationcomplexity" target="_blank"&gt;here&lt;/a&gt;
&lt;/p&gt;</description>
      <comments>http://www.rujith.net/RujithBlogTech/CommentView,guid,2fff7885-a97a-474e-a703-72e534a50cdb.aspx</comments>
      <category>WCF</category>
    </item>
  </channel>
</rss>