My company is looking to cater for mobile/small-screen devices, and we have a need to be able to do stuff based on the capabilities of a device accessing our website.

We've ended up (like many others) looking at DeviceAtlas and ScientiaMobile's WURFL.

What are the benefits and disadvantages of each?

link|improve this question
feedback

4 Answers

Have you considered using something like Modernizr or yepnope.js to do the job? It depends on what you're trying to achieve, but the advantage with these is that they use feature detection to discover what the browser is capable of, so aren't tied to a database of historical data that may or may not be up to date.

As the Modernizr website says:

"Unlike with the traditional—but highly unreliable—method of doing “UA sniffing,” which is detecting a browser by its (user-configurable) navigator.userAgent property, Modernizr does actual feature detection to reliably discern what the various browsers can and cannot do. After all, the same rendering engine may not necessarily support the same things, and some users change their userAgent string to get around poorly developed websites that don’t let them through otherwise.

Modernizr aims to bring an end to the UA sniffing practice. Using feature detection is a more reliable mechanic to establish what you can and cannot do in the current browser, and Modernizr makes it convenient for you in a variety of ways."

Plus, they're free.

Tutorials: http://www.alistapart.com/articles/taking-advantage-of-html5-and-css3-with-modernizr/ and http://www.modernizr.com/docs/

link|improve this answer
1  
Furthermore, with browser evolving so quickly and mobiles devices being so different the best way, in my opinion, to develop and easily maintains a mobile website is to use feature detection. Modernizr is most of the times accurate and if a bug is discovered, it can be quickly resolved by its supporting community. Also techniques like "progressive enhancement" or "graceful degradation" works best with feature detection. And last some browsers don't have the same feature support on every devices. – GMO Mar 15 at 10:34
feedback

Hi Luca Passani of WURFL (and CTO @ScientiaMobile) here.

WURFL has existed since 2002 as an open-source initiative, while DA only came a lot later and pretty much took WURFL (data, experience), closed it into a blackbox, hired a bunch of salesman and started selling it behind corporate doors without ever contributing anything back to the WURFL project. Anyway, enough bashing of DA. I want to talk about WURFL and all the great things that are happening around it now, starting with ScientiaMobile, of course.

In 2011, together with two US partners (including Steve Kamerman of Tera-WURFL), we started ScientiaMobile, Inc as a US company. Objectives: - turn WURFL into a full-time activity for its creators and, in turn, improve WURFL (API, repository and tools). - be able to offer commercial-grade support to companies that adopt (or previously adopted) WURFL. - offer commercial licenses which would ease companies' minds about IP-related issues when adopting open-source or other commercial initiatives that rely on WURFL (believe it or not, the majority of mobile-enabling solutions on the market use WURFL under the hood in one form or the other).

One of the great features that commercial adopters of WURFL absolutely love is that WURFL is delivered with full source-code for the APIs (Java, PHP and .NET) as well as open data. This makes it incredibly easy to integrate WURFL with an incredibly wide array of pre-existing platforms and solutions. In addition, many customers are able to address issues autonomously (of course, ScientiaMobile is always there to help scratch the deepest itches, if this becomes necessary). Granted, someone was blindsided by the commercial twist (i.e. AGPL V3 licensing) that WURFL took, but the overwhelming majority were supportive and happily traded some cash for more better WURFL and the comforting presence of a solid company behind it. Plus, commercial licensee have access to weekly repository updates. Another feature they love.

Finally, one note about pricing: our multilingual sales team will work with organizations to find a price that's fair for the value companies find in WURFL.

Please refer to this FAQ for more info: http://www.scientiamobile.com/support

Thank you

Luca Passani (email not provided to spammers, but easy to guess for humans)

link|improve this answer
feedback

For background, server-side user agent detection is used by about 82% of the Alexa 100 in some form or other, even Opera use a form of it on mini.opera.com. http://mobiforge.com/designing/blog/server-side-device-detection-used-82-alexa-top-100-sites

Rather than go into features and benefits of particular solutions here, the following is the list of questions we (dotMobi, creators of DeviceAtlas) think you should be asking of any detection solution, broken down by category.

Data

Ultimately the quality of any device detection solution comes down to the data that powers it. Any properties reported by a device detection solution must be trustable, otherwise it serves no useful purpose. Data quality is the most difficult aspect of device detection systems to measure, but is arguably the single most important aspect and hence worth spending time on before making a choice.

  • Is the data accurate? This is really hard to measure, and can be subjective, but we'd advise spot checking the device detection solution against real devices. Don't just check iPhones and other popular devices because they're usually well covered. Instead, pick something a bit off the beaten path and also try looking up a device that was released very recently.
  • Does the solution have the properties that you need? Are HTML5, JavaScript and CSS well covered?
  • Is the global coverage good? Device databases often have a regional focus, typically North America and Europe. Mobile is a very global medium so check for coverage of lesser known devices from China and India etc.
  • Is the data fresh? Up to date information is very important in the rapidly evolving mobile landscape.
  • Is the data multi-sourced? Multi-sourced data is far more likely to be correct, and have good global coverage.
  • Is there data transparency? If you disagree with a certain property, is there a way for you to see the provenance of that property, and to update it?
  • Property coverage - does the solution have the properties that you need for your solution and, importantly, are the properties actually populated for across all devices (empty properties are no good to anyone) without fall-backs to generic devices.

API

  • Is the API easy to integrate - are there APIs for most common languages, and is the approach for to fetching fresh data easy?
  • Detection accuracy - having accurate data about devices is not enough, solutions also need to be able to accurately map this data to incoming requests. This is a surprisingly tricky area because some devices deliberately masquerade as others.
  • Speed - does the solution deliver the speed that you need? For use cases such as ad serving and analytics speed is critical. Thousands of recognitions per second should be very achievable with any solution, going to over 1 million/s with C++ or Apache module solutions. Apache module solutions have the tremendous benefit that any process called by Apache (including Apache redirect rules etc.) has access to rich device information.
  • Are all versions of the API licensed separately? Are you allowed to use your own API to access the data? This can be important of you want to build your own solution around the data.
  • Are the APIs all published by the same vendor and of similar quality?
  • What is the memory footprint of the solution? Compact data representations will ease the impact on your server.
  • Do you want a cloud-based or locally deployed solution?

Other Considerations

  • Title to data - does the company or owner selling the solution have full title to the data?
  • Support - will you be able to get support in your time zone?
  • Stability - has the company or project been around for a while?

Separately, given that the question was tagged responsive-design, you may be interested in our summary of the various content adaptation techniques in use today, of which responsive design is just one of many. You can find this on mobiForge, our mobile web developer's forum: http://mobiforge.com/starting/story/mobile-web-content-adaptation-techniques

Ronan

link|improve this answer
feedback

I see posts by promoters of client-side detection. This site isn't giving me a chance to append my comment there, so I'll write here.

Client-side detection is of course an option on the table and has pros and cons. Of course it is totally legitimate to present that option. My only remark is the underlying message (by CSD promoters) that server-side detection is inherently bad, while client-side is inherently good. This is by far not the case. Is client-side detection a new religion?

In general, Server-side detection provides more overall control, because you can address classes of devices and single devices specifically. Also, server-side detection does not mean that you cannot do client-side detection on certain families of devices, if this is what hits the target for you. Exclusive use of Client-side detection means sending one version of the code that attempts to work on as many devices as possible. The result is that if you have a bug on a specific device and you care about that device, you can't easily touch a thing for fear of breaking the application for other devices. Who is going to re-test the site on all of those devices?

Of course, client-side detection is cheaper (software is typically non-copyleft FOSS), so, at the end of the day, developers will need to evaluate all the options on the table, do a little of testing and come up with the strategy that works best for them.

Some prefer beer. Some prefer wine. I prefer beer with pizza, white wine with fish and red wine with meat. But that's me. I don't go around saying that beer is fundamentally flawed. (now I wonder...would I say that if my business was selling wine?)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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