<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>igorbrejc.net &#187; ASP.NET</title>
	<atom:link href="http://igorbrejc.net/category/development/aspnet/feed" rel="self" type="application/rss+xml" />
	<link>http://igorbrejc.net</link>
	<description>Just another developer's weblog</description>
	<lastBuildDate>Sun, 12 Feb 2012 06:47:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Uri Class Cheat Sheet</title>
		<link>http://igorbrejc.net/development/c/uri-class-cheat-sheet</link>
		<comments>http://igorbrejc.net/development/c/uri-class-cheat-sheet#comments</comments>
		<pubDate>Mon, 12 Jul 2010 07:15:57 +0000</pubDate>
		<dc:creator>breki</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://igorbrejc.net/development/c/uri-class-cheat-sheet</guid>
		<description><![CDATA[Another reference post, this time covering usage of .NET Uri class. Example URL: http://somewhere.else.com:9999/service/packages?page=2#fragment The table below contains values for various properties of Uri for that example URL: AbsolutePath /service/packages AbsoluteUri http://somewhere.else.com:9999/service/packages?page=2#fragment Authority somewhere.else.com:9999 DnsSafeHost somewhere.else.com Fragment #fragment Host somewhere.else.com HostNameType Dns IsAbsoluteUri true IsDefaultPort false IsFile false IsLoopback false IsUnc false LocalPath /service/packages OriginalString [...]]]></description>
			<content:encoded><![CDATA[<p>Another reference post, this time covering usage of .NET <a href="http://msdn.microsoft.com/en-us/library/system.uri.aspx" target="_blank">Uri</a> class. </p>

<p>Example URL: http://somewhere.else.com:9999/service/packages?page=2#fragment</p>

<p>The table below contains values for various properties of Uri for that example URL:</p>

<table border="1" cellspacing="0" cellpadding="5" width="622"><tbody>     <tr>       <td valign="top" width="158">AbsolutePath</td>        <td valign="top" width="462">/service/packages</td>     </tr>      <tr>       <td valign="top" width="158">AbsoluteUri</td>        <td valign="top" width="462">http://somewhere.else.com:9999/service/packages?page=2#fragment</td>     </tr>      <tr>       <td valign="top" width="158">Authority</td>        <td valign="top" width="462">somewhere.else.com:9999</td>     </tr>      <tr>       <td valign="top" width="158">DnsSafeHost</td>        <td valign="top" width="462">somewhere.else.com</td>     </tr>      <tr>       <td valign="top" width="158">Fragment</td>        <td valign="top" width="462">#fragment</td>     </tr>      <tr>       <td valign="top" width="158">Host</td>        <td valign="top" width="462">somewhere.else.com</td>     </tr>      <tr>       <td valign="top" width="158">HostNameType</td>        <td valign="top" width="462">Dns</td>     </tr>      <tr>       <td valign="top" width="158">IsAbsoluteUri</td>        <td valign="top" width="462">true</td>     </tr>      <tr>       <td valign="top" width="158">IsDefaultPort</td>        <td valign="top" width="462">false</td>     </tr>      <tr>       <td valign="top" width="158">IsFile</td>        <td valign="top" width="462">false</td>     </tr>      <tr>       <td valign="top" width="158">IsLoopback</td>        <td valign="top" width="462">false</td>     </tr>      <tr>       <td valign="top" width="158">IsUnc</td>        <td valign="top" width="462">false</td>     </tr>      <tr>       <td valign="top" width="158">LocalPath</td>        <td valign="top" width="462">/service/packages</td>     </tr>      <tr>       <td valign="top" width="158">OriginalString</td>        <td valign="top" width="462">http://somewhere.else.com:9999/service/packages?page=2#fragment</td>     </tr>      <tr>       <td valign="top" width="158">PathAndQuery</td>        <td valign="top" width="462">/service/packages?page=2</td>     </tr>      <tr>       <td valign="top" width="158">Port</td>        <td valign="top" width="462">9999</td>     </tr>      <tr>       <td valign="top" width="158">Query</td>        <td valign="top" width="462">?page=2</td>     </tr>      <tr>       <td valign="top" width="158">Scheme</td>        <td valign="top" width="462">http</td>     </tr>      <tr>       <td valign="top" width="158">Segments</td>        <td valign="top" width="462">array: “/”, “service/”, “packages”</td>     </tr>      <tr>       <td valign="top" width="158">UserEscaped</td>        <td valign="top" width="462">false</td>     </tr>      <tr>       <td valign="top" width="158">UserInfo</td>        <td valign="top" width="462">“” (empty string)</td>     </tr>   </tbody></table>
]]></content:encoded>
			<wfw:commentRss>http://igorbrejc.net/development/c/uri-class-cheat-sheet/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
	</item>
		<item>
		<title>System.Web.HttpRequest Paths Cheat Sheet</title>
		<link>http://igorbrejc.net/development/c/system-web-httprequest-paths-cheat-sheet</link>
		<comments>http://igorbrejc.net/development/c/system-web-httprequest-paths-cheat-sheet#comments</comments>
		<pubDate>Wed, 07 Jul 2010 13:33:41 +0000</pubDate>
		<dc:creator>breki</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://igorbrejc.net/development/c/system-web-httprequest-paths-cheat-sheet</guid>
		<description><![CDATA[More a “remember” post for me than a real reference thing, but I think it might be useful to anybody doing more than simple work with HttpRequests. Example request URL: http://localhost:65107/Services.svc/services?page=30 The table below contains values for various path-related properties of HttpRequest for that example request URL: ApplicationPath / AppRelativeCurrentExecutionFilePath ~/Services.svc CurrentExecutionFilePath /Services.svc FilePath /Services.svc [...]]]></description>
			<content:encoded><![CDATA[<p>More a “remember” post for me than a real reference thing, but I think it might be useful to anybody doing more than simple work with HttpRequests.</p>

<p>Example request URL: <strong>http://localhost:65107/Services.svc/services?page=30</strong></p>

<p>The table below contains values for various path-related properties of <strong>HttpRequest</strong> for that example request URL:</p>

<table border="1" cellspacing="0" cellpadding="5" width="622"><tbody>     <tr>       <td valign="top" width="309">ApplicationPath</td>        <td valign="top" width="311">/</td>     </tr>      <tr>       <td valign="top" width="309">AppRelativeCurrentExecutionFilePath</td>        <td valign="top" width="311">~/Services.svc</td>     </tr>      <tr>       <td valign="top" width="309">CurrentExecutionFilePath</td>        <td valign="top" width="311">/Services.svc</td>     </tr>      <tr>       <td valign="top" width="309">FilePath</td>        <td valign="top" width="311">/Services.svc</td>     </tr>      <tr>       <td valign="top" width="309">Path</td>        <td valign="top" width="311">/Services.svc/services</td>     </tr>      <tr>       <td valign="top" width="309">PathInfo</td>        <td valign="top" width="311">/services</td>     </tr>      <tr>       <td valign="top" width="309">PhysicalApplicationPath</td>        <td valign="top" width="311">D:\svn\eEnvoyer\SEPA\EEnvoyer.Server\</td>     </tr>      <tr>       <td valign="top" width="309">PhysicalPath</td>        <td valign="top" width="311">D:\svn\eEnvoyer\SEPA\EEnvoyer.Server\Services.svc</td>     </tr>      <tr>       <td valign="top" width="309">RawUrl</td>        <td valign="top" width="311">/Services.svc/services?page=30</td>     </tr>      <tr>       <td valign="top" width="309">Url</td>        <td valign="top" width="311">http://localhost:65107/Services.svc/services?page=30</td>     </tr>   </tbody></table>
]]></content:encoded>
			<wfw:commentRss>http://igorbrejc.net/development/c/system-web-httprequest-paths-cheat-sheet/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
	</item>
		<item>
		<title>ASP.NET MVC: Use Integrated Managed Pipeline Mode</title>
		<link>http://igorbrejc.net/development/aspnet-mvc-use-integrated-managed-pipeline-mode</link>
		<comments>http://igorbrejc.net/development/aspnet-mvc-use-integrated-managed-pipeline-mode#comments</comments>
		<pubDate>Wed, 10 Jun 2009 05:56:36 +0000</pubDate>
		<dc:creator>breki</dc:creator>
				<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://igorbrejc.net/development/aspnet-mvc-use-integrated-managed-pipeline-mode</guid>
		<description><![CDATA[A note to myself: the IIS application under which an ASP.NET MVC application runs has to be set up to use Integrated Managed Pipeline Mode (Advanced Settings&#8230;), otherwise you&#8217;ll end up with the HTTP Error 404.0 &#8211; Not Found The resource you are looking for has been removed, had its name changed, or is temporarily [...]]]></description>
			<content:encoded><![CDATA[<p>A note to myself: the IIS application under which an ASP.NET MVC application runs has to be set up to use <strong>Integrated</strong> Managed Pipeline Mode (<em>Advanced Settings&#8230;</em>), otherwise you&#8217;ll end up with the </p>

<blockquote> <p>HTTP Error 404.0 &#8211; Not Found <p>The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.</p></blockquote>

<p>error for any virtual URL (other than the default one).</p>

<p>This of course applies to IIS 6 and above.</p>
]]></content:encoded>
			<wfw:commentRss>http://igorbrejc.net/development/aspnet-mvc-use-integrated-managed-pipeline-mode/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
	</item>
	</channel>
</rss>

