I am planning to use Wurfl in a web application in order to distinguish between mobile device and desktop browser. The isMobileBrowser(String userAgent) from net.sourceforge.wurfl.core.utils seems the appropriate function to do that.

Nevertheless looking at the source code of the 1.0.1-rc3 I can see that if the user agent string does not contain the "Tablet" word, it always returns false. I was reading this article http://wurfl.sourceforge.net/newapi/ and I would like to use the fuzzy match that is described there to identify the devices. Could be possible that am I using the wrong function?, if that is the case could you please point me to the right direction?.

Also , do you know where can I find the source code for the 1.0.1-rc4?.

Thanks

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You have to use those capabilities:

if(is_wireless_device=false and device_claims_web_support=true) {
the request is from web browser
}

via

link|improve this answer
If I use the code you propose I will need something like this: getDeviceForRequest(WURFLRequest request); to get the Device object, and then get and check these two capabilities. I was trying to find a high level method in the wurfl api. The function isMobileBrowser(String userAgent) from net.sourceforge.wurfl.core.utils seems the appropriate but having checked the source code, I found it does not do what I expected. – yeforriak Apr 13 '10 at 15:24
Sry, i have changed my answer. Yes you have to use those capabilities. – fravelgue Apr 13 '10 at 15:25
Any idea why the method isMobileBrowser(String userAgent) is there?. Here you can find the javadoc: wurfl.sourceforge.net/njava/javadocs/net/sourceforge/wurfl/core/…) . I am a bit confused about this method. – yeforriak Apr 13 '10 at 15:34
Sry, but i don´t know why, so it is a internal method. Googling i found msie uses Table for Tablet PC: zytrax.com/tech/web/msie-history.html – fravelgue Apr 13 '10 at 19:59
I asked the same question in the wml programming group and I found all the answers I needed :). tech.groups.yahoo.com/group/wmlprogramming/message/32344 – yeforriak Apr 14 '10 at 11:54
show 1 more comment
feedback

if($device->getCapability('is_wireless_device') == 'true') { //This is a mobile device } else { // this is for a browser }

This is what I am using to do my mobile device vs browser detection... Works seamlessly at the moment.

link|improve this answer
this worked for me dude.. – Dee-M Nov 10 '11 at 9:34
When doing this Firefox passes the if statement above – Martin Nov 24 '11 at 0:05
feedback

Your Answer

 
or
required, but never shown

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