<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:blog="http://dnn-connect.org/blog/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/">
  <channel>
    <title>Blog - Web API</title>
    <link>https://xrmlabs.com/About-Us/XRMs-Blog/term/1331/locale/en-US/Blog-Web-API</link>
    <description />
    <managingEditor>sales@xrmlabs.com</managingEditor>
    <pubDate>Tue, 26 May 2026 16:00:21 GMT</pubDate>
    <lastBuildDate>Tue, 26 May 2026 16:00:21 GMT</lastBuildDate>
    <category>Web API</category>
    <generator>DotNetNuke Blog RSS Generator Version 6.5.2.0</generator>
    <ttl>30</ttl>
    <atom:link href="https://xrmlabs.com/DesktopModules/Blog/API/RSS/Get?moduleid=440&amp;tabid=94&amp;term=1331" rel="self" type="application/rss+xml" />
    <item>
      <title>Web API how to use web API and how to secure them in DNN</title>
      <link>https://xrmlabs.com/About-Us/XRMs-Blog/Post/8316/Web-API-how-to-use-web-API-and-how-to-secure-them-in-DNN</link>
      <description>&lt;p&gt;In today&amp;rsquo;s world if we are using any service on the internet, we are consuming some sort of APIs in many ways. Even the article you are reading is coming as a response to an API request to our servers.&amp;nbsp;Have you ever thought how you are able to see Google Maps on websites other than Google? That is where the APIs comes into picture.&lt;/p&gt;
</description>
      <category>API In DotNetNuke</category>
      <category>ContentManagement</category>
      <category>DNNPlatform</category>
      <category>Dotnetnuke</category>
      <category>Web API</category>
      <category>WebDevelopment</category>
      <category>.Net</category>
      <category>DotNetNuke</category>
      <guid isPermaLink="true">https://xrmlabs.com/About-Us/XRMs-Blog/Post/8316/Web-API-how-to-use-web-API-and-how-to-secure-them-in-DNN</guid>
      <pubDate>Sun, 09 Aug 2020 18:26:00 GMT</pubDate>
      <blog:publishedon>2020-08-09 18:26:00Z</blog:publishedon>
    </item>
    <item>
      <title>ASP.NET Web API 2 and Cross Domain Problem</title>
      <link>https://xrmlabs.com/About-Us/XRMs-Blog/Post/7020/ASP-NET-Web-API-2-and-Cross-Domain-Problem</link>
      <description>&lt;p&gt;&lt;span style="color:#333333; font-family:Arial,sans-serif; font-size:10pt"&gt;One of the most common issues we face is creating a REST API for our client which is hosted on&amp;nbsp;a brand new domain while the client application is being hosted on the clients old domain. Specifically when client demands that we carry both the system parallel for couple of months until he/she has confidence on the upgraded API&amp;#39;s. In our own company we found this issue when launching a brand new domain for a new application. Unfortunately the new application hosted on the new domain talks to our old REST API hosted on our company domain. Problem!&lt;/span&gt;&lt;/p&gt;
</description>
      <category>ASP.NET</category>
      <category>C#</category>
      <category>ContentManagement</category>
      <category>Web API</category>
      <category>WebDevelopment</category>
      <category>WebsiteManagement</category>
      <category>.Net</category>
      <guid isPermaLink="true">https://xrmlabs.com/About-Us/XRMs-Blog/Post/7020/ASP-NET-Web-API-2-and-Cross-Domain-Problem</guid>
      <pubDate>Mon, 17 Apr 2017 14:25:00 GMT</pubDate>
      <blog:publishedon>2017-04-17 14:25:00Z</blog:publishedon>
    </item>
    <item>
      <title>Web API Attribute Routing</title>
      <link>https://xrmlabs.com/About-Us/XRMs-Blog/Post/6874/Web-API-Attribute-Routing</link>
      <description>&lt;p&gt;In my previous post here I had discussed about convention based routing which is the default way in Web API.&amp;nbsp;&lt;a href="http://www.xrmlabs.com/LinkClick.aspx?link=%2fAbout-Us%2fXRMs-Blog%2fPost%2f6867%2fWeb-API-Convention-Based-Routing&amp;amp;tabid=94&amp;amp;portalid=0&amp;amp;mid=440" target="_blank"&gt;Check it out here&lt;/a&gt;.Starting with Web API 2 Microsoft introduced attribute based routing. Which is way more simpler. The reason for introducing this new feature was two folds, one it is easier to understand and maintain, second is the kind of REST calls required.&lt;/p&gt;
</description>
      <category>DNNModules</category>
      <category>DNNPlatform</category>
      <category>Web API</category>
      <category>WebDevelopment</category>
      <category>WebsiteManagement</category>
      <category>.Net</category>
      <category>DotNetNuke</category>
      <guid isPermaLink="true">https://xrmlabs.com/About-Us/XRMs-Blog/Post/6874/Web-API-Attribute-Routing</guid>
      <pubDate>Tue, 26 Jan 2016 14:28:00 GMT</pubDate>
      <media:thumbnail width="144" height="96" url="https://xrmlabs.com:443/DesktopModules/Blog/BlogImage.ashx?TabId=94&amp;ModuleId=440&amp;Blog=1&amp;Post=6874&amp;w=144&amp;h=96&amp;c=1&amp;key=25f07f84-072f-492b-95b9-c6a7cb11fd5d" />
      <blog:publishedon>2016-01-26 14:28:00Z</blog:publishedon>
    </item>
    <item>
      <title>Web API Convention Based Routing</title>
      <link>https://xrmlabs.com/About-Us/XRMs-Blog/Post/6867/Web-API-Convention-Based-Routing</link>
      <description>&lt;p&gt;One of the most confusing aspect of MVC and Web API is the subject of routing. MVC routing looks and feels more logical to most developers as compared to the Web API routing. The reason behind this is that Web API depends on the HTTP verb to match the action being called. It follows a set of conventions which automatically fires a particular action based on the endpoint being hit. This throws of most of us because we are in the habit of calling methods by name.&lt;/p&gt;

&lt;p&gt;Hopefully this post will give you a head start at what is the simplest or the default way in which Web API manages its routing based on conventions. I will show all the concepts using simple boiler plate code, don&amp;rsquo;t focus on the logic inside the Action(method).&amp;nbsp;&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;
</description>
      <category>ContentManagement</category>
      <category>Web API</category>
      <category>WebDevelopment</category>
      <category>WebsiteManagement</category>
      <category>.Net</category>
      <guid isPermaLink="true">https://xrmlabs.com/About-Us/XRMs-Blog/Post/6867/Web-API-Convention-Based-Routing</guid>
      <pubDate>Mon, 18 Jan 2016 14:03:00 GMT</pubDate>
      <blog:publishedon>2016-01-18 14:03:00Z</blog:publishedon>
    </item>
  </channel>
</rss>