<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>AspDotNet &amp;mdash; Attach to Process</title>
    <link>https://devblog.dinobansigan.com/tag:AspDotNet</link>
    <description>Thoughts and Notes on Software Development</description>
    <pubDate>Fri, 01 May 2026 18:58:06 +0000</pubDate>
    <image>
      <url>https://i.snap.as/4wmUdb6N.png</url>
      <title>AspDotNet &amp;mdash; Attach to Process</title>
      <link>https://devblog.dinobansigan.com/tag:AspDotNet</link>
    </image>
    <item>
      <title>Increase WCF Service Call Timeout in ASP.NET Web API Project</title>
      <link>https://devblog.dinobansigan.com/increase-wcf-service-call-timeout-in-asp-net-web-api-project?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[A few months ago, I ran into a situation where I had to increase the timeout for a WCF service call, that my ASP.NET Web API was making. It wasn&#39;t as straightforward as just adding configuration to a config file, like you would do with a WCF service. You actually have to do it in code. The answers to the stackoverflow question listed below, helped a lot in figuring out a solution for it.&#xA;&#xA;Link: How to increase the timeout values for a WCF service in a dot net core 2.1 project - Stack Overflow&#xA;&#xA;In your Web API code, you can create a partial class for the WCF client you are trying to call. In that class, you should be able to get to the Endpoint object. This object allows you get to the WCF bindings where you can set the timeout values. Then you can do something similar to the code I have below to set the timeouts. &#xA;TimeSpan timeSpan = new TimeSpan(hours: 0, minutes: 0, seconds: timeoutInSeconds);&#xA;Endpoint.Binding.CloseTimeout = timeSpan;&#xA;Endpoint.Binding.OpenTimeout = timeSpan;&#xA;Endpoint.Binding.ReceiveTimeout = timeSpan;&#xA;Endpoint.Binding.SendTimeout = timeSpan;&#xA;&#xA;Tags: #AspDotNet #AspDotNetWebApi #WCF&#xA;&#xA;a href=&#34;https://remark.as/p/devblog.dinobansigan.com/increase-wcf-service-call-timeout-in-asp-net-web-api-project&#34;Discuss.../a or leave a comment below.]]&gt;</description>
      <content:encoded><![CDATA[<p>A few months ago, I ran into a situation where I had to increase the timeout for a WCF service call, that my ASP.NET Web API was making. It wasn&#39;t as straightforward as just adding configuration to a config file, like you would do with a WCF service. You actually have to do it in code. The answers to the stackoverflow question listed below, helped a lot in figuring out a solution for it.</p>

<p>Link: <a href="https://stackoverflow.com/questions/53046380/how-to-increase-the-timeout-values-for-a-wcf-service-in-a-dot-net-core-2-1-proje">How to increase the timeout values for a WCF service in a dot net core 2.1 project – Stack Overflow</a></p>

<p>In your Web API code, you can create a partial class for the WCF client you are trying to call. In that class, you should be able to get to the <a href="https://docs.microsoft.com/en-us/dotnet/api/system.servicemodel.description.serviceendpoint?view=dotnet-plat-ext-5.0">Endpoint</a> object. This object allows you get to the WCF bindings where you can set the timeout values. Then you can do something similar to the code I have below to set the timeouts.</p>

<pre><code class="language-c">TimeSpan timeSpan = new TimeSpan(hours: 0, minutes: 0, seconds: timeoutInSeconds);
Endpoint.Binding.CloseTimeout = timeSpan;
Endpoint.Binding.OpenTimeout = timeSpan;
Endpoint.Binding.ReceiveTimeout = timeSpan;
Endpoint.Binding.SendTimeout = timeSpan;
</code></pre>

<p><em>Tags: <a href="https://devblog.dinobansigan.com/tag:AspDotNet" class="hashtag"><span>#</span><span class="p-category">AspDotNet</span></a> <a href="https://devblog.dinobansigan.com/tag:AspDotNetWebApi" class="hashtag"><span>#</span><span class="p-category">AspDotNetWebApi</span></a> <a href="https://devblog.dinobansigan.com/tag:WCF" class="hashtag"><span>#</span><span class="p-category">WCF</span></a></em></p>

<p><strong><a href="https://remark.as/p/devblog.dinobansigan.com/increase-wcf-service-call-timeout-in-asp-net-web-api-project">Discuss...</a></strong> or leave a comment below.</p>
]]></content:encoded>
      <guid>https://devblog.dinobansigan.com/increase-wcf-service-call-timeout-in-asp-net-web-api-project</guid>
      <pubDate>Mon, 12 Jul 2021 17:30:22 +0000</pubDate>
    </item>
    <item>
      <title>WriteFreely Archive Page Generator</title>
      <link>https://devblog.dinobansigan.com/writefreely-archive-page-generator?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[Finished work on the WriteFreely Archive Page Generator Blazor app. While it does say WriteFreely, you can still pass in Write.as as the instance name and your Write.as alias, and it will work just the same.&#xA;&#xA;Tags: #AspDotNet #Blazor #WriteAs&#xA;&#xA;a href=&#34;https://remark.as/p/devblog.dinobansigan.com/writefreely-archive-page-generator&#34;Discuss.../a or leave a comment below.]]&gt;</description>
      <content:encoded><![CDATA[<p>Finished work on the <a href="https://wf-archive.dinobansigan.com/">WriteFreely Archive Page Generator</a> Blazor app. While it does say WriteFreely, you can still pass in <code>Write.as</code> as the instance name and your Write.as alias, and it will work just the same.</p>

<p><em>Tags: <a href="https://devblog.dinobansigan.com/tag:AspDotNet" class="hashtag"><span>#</span><span class="p-category">AspDotNet</span></a> <a href="https://devblog.dinobansigan.com/tag:Blazor" class="hashtag"><span>#</span><span class="p-category">Blazor</span></a> <a href="https://devblog.dinobansigan.com/tag:WriteAs" class="hashtag"><span>#</span><span class="p-category">WriteAs</span></a></em></p>

<p><strong><a href="https://remark.as/p/devblog.dinobansigan.com/writefreely-archive-page-generator">Discuss...</a></strong> or leave a comment below.</p>
]]></content:encoded>
      <guid>https://devblog.dinobansigan.com/writefreely-archive-page-generator</guid>
      <pubDate>Tue, 05 Jan 2021 02:00:00 +0000</pubDate>
    </item>
    <item>
      <title>Blazor WASM Caching Issue</title>
      <link>https://devblog.dinobansigan.com/blazor-wasm-caching-issue?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[While working on a Blazor WASM project last week, I noticed that no matter what changes I make to the index.html and app.css files, they were not reflected whenever I open up the site on IIS Express. It turns out to be a caching issue. All I needed to do, was hit CTRL + F5 after the site loads, and it will pull in my changes.&#xA;&#xA;Tags: #AspDotNet #Blazor&#xA;&#xA;a href=&#34;https://remark.as/p/devblog.dinobansigan.com/blazor-wasm-caching-issue&#34;Discuss.../a or leave a comment below.]]&gt;</description>
      <content:encoded><![CDATA[<p>While working on a Blazor WASM project last week, I noticed that no matter what changes I make to the <code>index.html</code> and <code>app.css</code> files, they were not reflected whenever I open up the site on IIS Express. It turns out to be a caching issue. All I needed to do, was hit <code>CTRL + F5</code> after the site loads, and it will pull in my changes.</p>

<p><em>Tags: <a href="https://devblog.dinobansigan.com/tag:AspDotNet" class="hashtag"><span>#</span><span class="p-category">AspDotNet</span></a> <a href="https://devblog.dinobansigan.com/tag:Blazor" class="hashtag"><span>#</span><span class="p-category">Blazor</span></a></em></p>

<p><strong><a href="https://remark.as/p/devblog.dinobansigan.com/blazor-wasm-caching-issue">Discuss...</a></strong> or leave a comment below.</p>
]]></content:encoded>
      <guid>https://devblog.dinobansigan.com/blazor-wasm-caching-issue</guid>
      <pubDate>Tue, 05 Jan 2021 02:00:00 +0000</pubDate>
    </item>
    <item>
      <title>Write.as Popular Posts – Blazor WASM App</title>
      <link>https://devblog.dinobansigan.com/write-as-popular-posts-blazor-wasm-app?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[Update 4/23/2021: The write.as team has introduced some rate-limiting features on their API to combat spam bots. That stopped this Glitch app and my other Blazor WASM apps from working.&#xA;&#xA;Was supposed to create an “Unpopular Posts” Blazor WASM app, but ended up creating the opposite. Anyway, I managed to make the app flexible by having it use query string parameters. That means that you can use the app and embed it into your own Write.as page/site. Just follow the instructions in the readme.&#xA;&#xA;Link: Write.as Popular Posts – Blazor WASM App&#xA;&#xA;Tags: #AspDotNet #Blazor&#xA;&#xA;a href=&#34;https://remark.as/p/devblog.dinobansigan.com/write-as-popular-posts-blazor-wasm-app&#34;Discuss.../a or leave a comment below.]]&gt;</description>
      <content:encoded><![CDATA[<p><em>Update 4/23/2021: The write.as team has introduced some rate-limiting features on their API to combat spam bots. That stopped this Glitch app and my other Blazor WASM apps from working.</em></p>

<p>Was supposed to create an “Unpopular Posts” Blazor WASM app, but ended up creating the opposite. Anyway, I managed to make the app flexible by having it use query string parameters. That means that you can use the app and embed it into your own Write.as page/site. Just follow the instructions in the readme.</p>

<p>Link: <a href="https://github.com/DinoBansigan/PopularPosts">Write.as Popular Posts – Blazor WASM App</a></p>

<p><em>Tags: <a href="https://devblog.dinobansigan.com/tag:AspDotNet" class="hashtag"><span>#</span><span class="p-category">AspDotNet</span></a> <a href="https://devblog.dinobansigan.com/tag:Blazor" class="hashtag"><span>#</span><span class="p-category">Blazor</span></a></em></p>

<p><strong><a href="https://remark.as/p/devblog.dinobansigan.com/write-as-popular-posts-blazor-wasm-app">Discuss...</a></strong> or leave a comment below.</p>
]]></content:encoded>
      <guid>https://devblog.dinobansigan.com/write-as-popular-posts-blazor-wasm-app</guid>
      <pubDate>Tue, 22 Dec 2020 02:00:00 +0000</pubDate>
    </item>
    <item>
      <title>Blazor Web Apps</title>
      <link>https://devblog.dinobansigan.com/blazor-web-apps?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[Was playing around with Blazor and created this site. It is a static site that has web apps written in C# instead of Javascript. Why? Because with Blazor, you can.&#xA;&#xA;Next step is figuring out how I can embed Blazor apps.&#xA;&#xA;Tags: #AspDotNet #Blazor #DotNetCore&#xA;&#xA;a href=&#34;https://remark.as/p/devblog.dinobansigan.com/blazor-web-apps&#34;Discuss.../a or leave a comment below.]]&gt;</description>
      <content:encoded><![CDATA[<p>Was playing around with <a href="https://dotnet.microsoft.com/apps/aspnet/web-apps/blazor">Blazor</a> and created this <a href="https://apps.dinobansigan.com/">site</a>. It is a static site that has web apps written in C# instead of Javascript. Why? Because with Blazor, you can.</p>

<p>Next step is figuring out how I can embed Blazor apps.</p>

<p><em>Tags: <a href="https://devblog.dinobansigan.com/tag:AspDotNet" class="hashtag"><span>#</span><span class="p-category">AspDotNet</span></a> <a href="https://devblog.dinobansigan.com/tag:Blazor" class="hashtag"><span>#</span><span class="p-category">Blazor</span></a> <a href="https://devblog.dinobansigan.com/tag:DotNetCore" class="hashtag"><span>#</span><span class="p-category">DotNetCore</span></a></em></p>

<p><strong><a href="https://remark.as/p/devblog.dinobansigan.com/blazor-web-apps">Discuss...</a></strong> or leave a comment below.</p>
]]></content:encoded>
      <guid>https://devblog.dinobansigan.com/blazor-web-apps</guid>
      <pubDate>Mon, 08 Jun 2020 22:45:20 +0000</pubDate>
    </item>
    <item>
      <title>Hundreds of practical ASP.NET Core samples to learn the fundamentals | Scott Hanselman</title>
      <link>https://devblog.dinobansigan.com/hundreds-of-practical-asp-net-core-samples-to-learn-the-fundamentals-scott?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[This is a great resource for anyone who wants to get started with C# and .NET Core.&#xA;&#xA;Link: Hundreds of practical ASP.NET Core samples to learn the fundamentals&#xA;&#xA;Tags: #Bookmarks #AspDotNet #DotNet #DotNetCore&#xA;&#xA;a href=&#34;https://remark.as/p/devblog.dinobansigan.com/hundreds-of-practical-asp-net-core-samples-to-learn-the-fundamentals-scott&#34;Discuss.../a or leave a comment below.]]&gt;</description>
      <content:encoded><![CDATA[<p>This is a great resource for anyone who wants to get started with C# and .NET Core.</p>

<p>Link: <a href="https://www.hanselman.com/blog/HundredsOfPracticalASPNETCoreSamplesToLearnTheFundamentals.aspx/">Hundreds of practical ASP.NET Core samples to learn the fundamentals</a></p>

<p><em>Tags: <a href="https://devblog.dinobansigan.com/tag:Bookmarks" class="hashtag"><span>#</span><span class="p-category">Bookmarks</span></a> <a href="https://devblog.dinobansigan.com/tag:AspDotNet" class="hashtag"><span>#</span><span class="p-category">AspDotNet</span></a> <a href="https://devblog.dinobansigan.com/tag:DotNet" class="hashtag"><span>#</span><span class="p-category">DotNet</span></a> <a href="https://devblog.dinobansigan.com/tag:DotNetCore" class="hashtag"><span>#</span><span class="p-category">DotNetCore</span></a></em></p>

<p><strong><a href="https://remark.as/p/devblog.dinobansigan.com/hundreds-of-practical-asp-net-core-samples-to-learn-the-fundamentals-scott">Discuss...</a></strong> or leave a comment below.</p>
]]></content:encoded>
      <guid>https://devblog.dinobansigan.com/hundreds-of-practical-asp-net-core-samples-to-learn-the-fundamentals-scott</guid>
      <pubDate>Wed, 19 Feb 2020 00:00:00 +0000</pubDate>
    </item>
    <item>
      <title>ASP.NET Core and .NET Core and the Web Development Stack Timeline - Iris Classon</title>
      <link>https://devblog.dinobansigan.com/asp-net-core-and-net-core-and-the-web-development-stack-timeline-iris-classon?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[Iris Classon wrote a good lengthy post about the history of .NET web development and how it all lead to the development of the .NET Core that we have today. As someone who doesn&#39;t get to work as much on the web dev side of things, this was a very informative read for me. I think it is a good read for any .NET developer, so check out her post by following the link below.&#xA;&#xA;ASP.NET Core and .NET Core and the Web Development Stack Timeline&#xA;&#xA;Tags: #Bookmarks #AspDotNet #DotNet #DotNetCore &#xA;&#xA;a href=&#34;https://remark.as/p/devblog.dinobansigan.com/asp-net-core-and-net-core-and-the-web-development-stack-timeline-iris-classon&#34;Discuss.../a or leave a comment below.]]&gt;</description>
      <content:encoded><![CDATA[<p>Iris Classon wrote a good lengthy post about the history of .NET web development and how it all lead to the development of the .NET Core that we have today. As someone who doesn&#39;t get to work as much on the web dev side of things, this was a very informative read for me. I think it is a good read for any .NET developer, so check out her post by following the link below.</p>

<p><a href="http://irisclasson.com/2019/05/20/asp-net-core-and-net-core-and-the-web-development-stack-timeline/">ASP.NET Core and .NET Core and the Web Development Stack Timeline</a></p>

<p><em>Tags: <a href="https://devblog.dinobansigan.com/tag:Bookmarks" class="hashtag"><span>#</span><span class="p-category">Bookmarks</span></a> <a href="https://devblog.dinobansigan.com/tag:AspDotNet" class="hashtag"><span>#</span><span class="p-category">AspDotNet</span></a> <a href="https://devblog.dinobansigan.com/tag:DotNet" class="hashtag"><span>#</span><span class="p-category">DotNet</span></a> <a href="https://devblog.dinobansigan.com/tag:DotNetCore" class="hashtag"><span>#</span><span class="p-category">DotNetCore</span></a></em></p>

<p><strong><a href="https://remark.as/p/devblog.dinobansigan.com/asp-net-core-and-net-core-and-the-web-development-stack-timeline-iris-classon">Discuss...</a></strong> or leave a comment below.</p>
]]></content:encoded>
      <guid>https://devblog.dinobansigan.com/asp-net-core-and-net-core-and-the-web-development-stack-timeline-iris-classon</guid>
      <pubDate>Wed, 22 May 2019 23:00:00 +0000</pubDate>
    </item>
  </channel>
</rss>