vote up 9 vote down star
9

We are beginning to go down the path of mobile browser support for an enterprise e-commerce webapp (Java/Servlet based). Of course there are many decisions to be made, but it seems to me the cornerstone is to be able to reliably detect mobile browsers, and make decisions on the content to be returned accordingly. Is there a standard way to make this determination (quickly) based on the http request, and ideally glean more information about the given browser and device making the request (screen size, html capabilities, etc?).

I would also appreciate any supplemental information that would be of use from someone who has gone down this path of taking an existing large scale enterprise webapp and architect-ing out mobile browser support from the development side.

[edit] I certainly understand the request header and the information about a database of standard user agents is a great help. For those talking about 'other' request header properties, if you could include similar standardized name / resource of values that would be a big help.

[edit] Several users have proposed solutions that involve a call over the wire to some web service that will do the detection. While I'm sure this works, it is not a good solution for an enterprise e-commerce site for two reasons: 1) speed. A call over the wire for every page request to a third party would have huge performance implications. 2) dependency/legal. We'd tie our website response time and key functionality to their service, which is horrible for legal and risk reasons.

flag

67% accept rate

11 Answers

vote up 10 vote down check

Wouldn't the standard way be to check the user agent? Here's a database of user agents you can use to detect mobile browsers.

link|flag
1  
I didn't realize there was an actively maintained reference for these. Thanks. – Pete Oct 2 '08 at 5:43
vote up 1 vote down

When I had a similar need recently, I found this code that uses HTTP_X_WAP_PROFILE, HTTP_ACCEPT, and HTTP_USER_AGENT to identify a browser as mobile or non-mobile. It's PHP but could be converted fairly easily into whatever you need (I implemented it in VBScript for classic ASP).

Ironically, it turned out that I didn't end up using the code because we decided to provide specific URLs for mobile and non-mobile users, but it certainly worked when I was testing it ...

link|flag
vote up 0 vote down

Hello

Please look at http://www.51degrees.mobi/Products/NETMobileAPI It is a open source .NET mobile API with lots of features

1) Easily detects that request is coming from mobile device and redirects user to mobile landing page defined in web.config file. You do not have to write any code in page load event for this. It makes use of WURLF (most trusted mobile device information database) for detection of request coming from mobile device.

2) Gives detailed information about mobile device capabilities. Using this you can customize pages as per the capabilities supported by mobile device.

3) It also provides free mobile controls like google maps, location, image, calendar etc.. You can integrate this features very easily in your website by just writing simple tags.

4) Many more features.

I have found this very useful and easy to implement.

Thanks

link|flag
vote up 1 vote down

The fact is that just relying on the useragent is not good enough to detect mobile browsers.

Sure, years ago you could search it for certain strings and guess that it was a Nokia or something, but now there are so many phones out there, and so many that pretend to be things that they are not that something more sophisticated is needed.

I found a great site at link textwhich is based on the same solution that MTV use for all their mobile web sites. It is REALLY good as it has a device independent markup language but more importantly they offer a webservice call for isMobileDevice().

Just look in the manual then 'how it works'.

I've been using it for my customers sites and have yet to find a mobile browser that it doesn't detect accurately. Totally blinding!

link|flag
1  
This is not reasonable for performance reasons - 'Using WAPL is extremely easy and only requires that you pass valid WAPL to Wapple's servers using the SOAP or REST webservices. The webservice server responds with the markup for you to output to the device. You have complete control over content, design and presentational elements.' – Pete Sep 16 at 19:10
vote up 1 vote down

I propose a free detection system which is based on uaprof and user agent: http://www.mobilemultimedia.be UAprof should be the primary key for detection when it's available as there are usually multiple user agents for the same uaprof. If you want to manage this on your own, you should then go for Wurfl because you can download the entire database and manage it locally by yourself.

link|flag
vote up 0 vote down

you can use a webservice to detect mobile browsing like handsetdetection.com.

link|flag
A call over the wire for each page request is not feasible for performance reasons – Pete Sep 16 at 19:07
vote up 4 vote down

David mentioned using WURFL -- which is probably your best option. Be forewarned, however, the success rate is usually around 60% (from mine and other's experience). With carriers changing UA's constantly and the amount of device profiles that exist (60,000+ ?), there's no bulletproof way to get all the right data you want.

Just a bit of warning before relying heavily on a device DB. I try to keep the user's options open by allowing them to change session options in case i've guessed wrong.

link|flag
vote up 2 vote down

While you could detect a mobile browser through it's user agent the browser war on the PC platform has shown that sniffing user agents isn't really such a good thing to do.

What ideally should be done is that specific styles should be applied based on media type or that a different answer should be sent based on a header other than the user agent - such as the Accept-header which tells which kind of content that the browser prefers.

Right now it might be enough to code a site that works with the iPhone and with Opera through browser sniffing - but Googles Anroid is coming any minute now and there are many other mobile phones that will have browser functionality close to the iPhone's in the near future and it would be a waste to develop a mobile website that didn't support those devices as good as possibel from scratch.

link|flag
vote up 1 vote down

You will get most of the information like browser, device, accepted languages, accepted formats etc from the request header. The user agent mentioned above is part of the request header.

link|flag
vote up 4 vote down

This article (and its follow-up) seems nice.

link|flag
vote up 0 vote down

You will have to check the user agent string with a previously defined list, like this one

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.