Use 51Degrees.mobi to Improve Mobile Traffic Detection

Page content

The default browser compatibilities mobile detection in ASP.NET in System.Web.HttpBrowserCapabilitiesBase is pretty poor. It ignores majority of the mobile devices and since it does not update on regular basis, it will ignore any new devices as well. Simply put, if you are using mobile-specific views then most mobile devices will get only the desktop views, because the device will be not recognised as a mobile device.

You can add browser definition files to your solution and specify capabilities for the latest devices. It is however a quick road to hell.

Instead, there are several open source libraries that help you improve the device detection and override the BrowserCapabilities. 51Degrees.mobi is widely recognised and I had very good experience using it in the past. It contains an amazing list of the devices which gets updated on regular basis. It is a freemium product, however, in most cases you will only need the functionality that is in the free version.

Add 51Degrees to your solution

blog-51Degrees-Nuget

The easiest way to integrate 51Degrees is by adding a nuget package. The package name is 51Degrees.mobi and it brings down the FiftyOne.Foundation.dll, 51Degrees.mobi.config config file and /Mobile/Default.aspx page.

If you run .NET 4, the dll automatically registers its own MobileCapabilitiesProvider (HttpCapabilitiesBase.BrowserCapabilitiesProvider) using PreApplicationStartMethod attribute and registers the RedirectModule. If you are on 2.0 or 3.5, you will need to register the detection module yourself in your web.config.

1<httpModules>
2    <add name="Detector" type="FiftyOne.Foundation.Mobile.Detection.DetectorModule, FiftyOne.Foundation"/>
3</httpModules>

OR

1<system.webServer>
2    <modules>
3    <remove name="Detector"/>
4    <add name="Detector" type="FiftyOne.Foundation.Mobile.Detection.DetectorModule, FiftyOne.Foundation"/>
5    </modules>
6</system.webServer>

Use Detector To Improve Mobile Detection

If all you want is improvement of your mobile detection, then you can safely delete the 51Degrees.mobi.config and the Default.aspx page. The 51Degrees MobileCapabilitiesProvider will still run and override your IsMobileDevice property. If you use mobile views, you will notice a significant improvement in which devices get the mobile view.

You should not forget that 51Degrees will regard all tablets as mobile devices. This will result in IPad getting served the mobile views. If that’s something that you don’t want, you will need to write extra filter that will reset the IsMobileDevice to false for all tablet devices.

Redirect Your Mobile Traffic

51Degrees can also be configured to redirect your mobile traffic using the 51Degrees.mobi.config file in the root of your app. It lets you define either page-by-page redirects or redirects based on patterns or regular expressions.

An example of the redirect setting

 1<redirect firstRequestOnly="true" timeout="20" devicesFile="~/App_Data/Devices.dat" mobilePagesRegex="/(Mobile|Tablet)/">
 2    <locations>
 3        <location name="tablet" url="~/Tablet/Default.aspx">
 4        <add property="IsTablet" matchExpression="true"/>
 5        <add property="IsMobile" matchExpression="true"/>
 6        </location>
 7        <location name="mobile" url="~/Mobile/Default.aspx">
 8        <add property="IsMobile" matchExpression="true"/>
 9        </location>
10    </locations>
11</redirect>

The sample above will catch the first request of the device and redirect it to either /Mobile/Default.aspx or /Tablet/Default.aspx based on the device features. If you are on premium, you can optionally specify your devices file. You can find out more about the redirect settings in the 51Degrees user guide.

What You Get For Your Money

If you decide to buy 51Degrees.mobi, it works out around $1 per day per site instance. You pay a subscription for a year, which gives you fully featured detection and regular updates. And what else do you get? Lots of detail – and I mean lots of it.

Here’s a list of all the capabilities that 51Degrees offers – the premium only features are in red.

51Degrees on Codeplex What’s New In Asp.NET MVC 4 Mobile Development