<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Mobile Tech</title>
	<atom:link href="http://ilmian.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ilmian.wordpress.com</link>
	<description>Everything you need to know about mobile development</description>
	<lastBuildDate>Thu, 22 Jan 2009 08:33:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ilmian.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Mobile Tech</title>
		<link>http://ilmian.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ilmian.wordpress.com/osd.xml" title="Mobile Tech" />
	<atom:link rel='hub' href='http://ilmian.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Device Detection</title>
		<link>http://ilmian.wordpress.com/2009/01/22/device-detection/</link>
		<comments>http://ilmian.wordpress.com/2009/01/22/device-detection/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 07:34:15 +0000</pubDate>
		<dc:creator>Omar Rehman</dc:creator>
				<category><![CDATA[Mobile Application Development]]></category>
		<category><![CDATA[Device Detection]]></category>
		<category><![CDATA[Identify MIME Type]]></category>
		<category><![CDATA[Identify Mobile Device]]></category>
		<category><![CDATA[MIME Type]]></category>
		<category><![CDATA[Mobile Detection]]></category>
		<category><![CDATA[UAProf]]></category>
		<category><![CDATA[UAProfile]]></category>
		<category><![CDATA[User Agent]]></category>

		<guid isPermaLink="false">http://ilmian.wordpress.com/?p=4</guid>
		<description><![CDATA[How to deliver correct mobile content to a mobile device successfully? Well, the first and most important thing to do is &#8211; correctly identify the mobile device of the user. And the second thing would be to identify the MIME Type supported by the mobile device. We can get the information about a device by [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ilmian.wordpress.com&amp;blog=6185420&amp;post=4&amp;subd=ilmian&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>How to deliver correct mobile content to a mobile device successfully?</p>
<p>Well, the first and most important thing to do is &#8211; correctly identify the mobile device of the user.</p>
<p>And the second thing would be to identify the MIME Type supported by the mobile device.</p>
<p>We can get the information about a device by looking at the &#8220;User Agent&#8221; of that mobile device. User Agent sometimes referred as &#8220;UAProfile&#8221; or &#8220;UAProf&#8221; contains some information about that particular mobile device. e.g. Have a look at the following user agent of a Nokia N95 device.</p>
<p style="text-align:center;">
<div id="attachment_5" class="wp-caption aligncenter" style="width: 212px"><a href="http://ilmian.files.wordpress.com/2009/01/nokia_n95.jpg"><img class="size-full wp-image-5" title="nokia_n95" src="http://ilmian.files.wordpress.com/2009/01/nokia_n95.jpg?w=450" alt="Nokia N95"   /></a><p class="wp-caption-text">Nokia N95</p></div>
<p><strong>&#8220;Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95/10.0.018; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413&#8243;</strong></p>
<p>Now you can see some basic information in it like Symbian OS version is 9.2, device name is Nokia N95. You can also see the version of J2ME Profile (MIDP) and Configuration (CLDC) as well.</p>
<p>You can get the user agent from the request&#8217;s &#8220;user-agent&#8221; header.</p>
<p><strong>Sting userAgent = request.getHeader(&#8220;user-agent&#8221;);</strong></p>
<p>Unfortunately, we don&#8217;t have any standard available for user agent, so at times its hard to identify the device.</p>
<p>There are a number of device detection solutions available too.  Following are some i know</p>
<p>Device Atlas <a title="Device Atlas" href="http://www.deviceatlas.com/" target="_blank">http://www.deviceatlas.com/</a></p>
<p>Wurfl <a title="Wurfl" href="http://wurfl.sourceforge.net/" target="_blank">http://wurfl.sourceforge.net/</a></p>
<p>As far as identifing MIME Type is concerned i ll post that soon as well.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ilmian.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ilmian.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ilmian.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ilmian.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ilmian.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ilmian.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ilmian.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ilmian.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ilmian.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ilmian.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ilmian.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ilmian.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ilmian.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ilmian.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ilmian.wordpress.com&amp;blog=6185420&amp;post=4&amp;subd=ilmian&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ilmian.wordpress.com/2009/01/22/device-detection/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/aaca3caa06c22ab42f636b30e65735db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ilmian</media:title>
		</media:content>

		<media:content url="http://ilmian.files.wordpress.com/2009/01/nokia_n95.jpg" medium="image">
			<media:title type="html">nokia_n95</media:title>
		</media:content>
	</item>
	</channel>
</rss>
