|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
|
Announcements
Want a new Job?
Chapters
Services
Feature Zones
|
IntroductionWhile writing ASP.NET applications targeting the BlackBerry browser I have made some interesting discoveries. In this article I will show how to configure .NET 2.0 to recognise the BlackBerry browser so that it behaves as you would expect. BackgroundI have developed several ASP.NET 1.1 applications targeting the BlackBerry browser version 4.1 on the 7290 device and more recently the 8700g. I have been upgrading those projects to ASP.NET 2.0 and was quite baffled initially, when several features would just not work. Creating a BlackBerry.browser config fileAfter a quick look through the \WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers directory I discovered that version 2.0 of the framework does not ship with configuration details for the BlackBerry browser. Some of the older browsers are covered with the goAmerica.browser configuration file but that doesn't cover the newer browsers. To find out what the framework knows about a browser you can create a page which writes out some details: protected void Page_Load(object sender, EventArgs e)
{
Response.Write("<B>User Agent:</B> " + Request.UserAgent + "<BR />");
Response.Write("<B>IsMobileDevice:</B> " + Request.Browser.IsMobileDevice
+ "<BR />");
Response.Write("<B>Browser:</B> " + Request.Browser.Browser + "<BR />");
Response.Write("<B>Version:</B> " + Request.Browser.Version + "<BR />");
Response.Write("<B>Major:</B> " + Request.Browser.MajorVersion + "<BR />");
Response.Write("<B>Minor:</B> " + Request.Browser.MinorVersion + "<BR />");
}
Browsing to this page on a Blackberry the UserAgent will return something
like this: Creating a Blackberry.browser config file is pretty straight forward. Having a read through the other *.browser files will give you an idea of what properties can be set. Here is the configuration which I have created: <browsers>
<browser id="BlackBerry" parentID="Default">
<identification>
<userAgent match="BlackBerry(?'model'\d+)/(?'version'((?'major'\d+).
(?'minor'\d+).(?'other'\d+)))" />
</identification>
<capabilities>
<capability name="browser" value="BlackBerry" />
<capability name="isMobileDevice" value="true" />
<capability name="javascript" value="true" />
<capability name="ecmascriptversion" value="1.3" />
<capability name="version" value="${version}" />
<capability name="majorVersion" value="${major}" />
<capability name="minorVersion" value="${minor}" />
<capability name="supportsCss" value="true" />
<capability name="frames" value="false" />
<capability name="cookies" value="true" />
</capabilities>
</browser>
</browsers>
In the One of the most important capabilities here is the
There are many other properties which can be set but I have found these sufficient for my needs. Enter these details in a text file and save as BlackBerry.browser in the C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers directory. ASP.NET Browser Registration ToolCreating the file is only half the job. We now need to let the framework know about it. There is a command line tool called aspnet_regbrowsers.exe which creates an assembly based on the information in the *.browser files and installs the assembly in the global assemly cache. From a command prompt enter the path to aspnet_regbrowsers.exe and use the -i
switch to register the browser configurations. For my installation the path is
as
follows: More information on aspnet_regbrowsers.exe can be found here. ConclusionThe
|
||||||||||||||||||||||