Questions tagged [wurfl]

WURFL stands for Wireless Universal Resource FiLe.

The WURFL is a commercial open-source mobile device database and open-source (AGPL) API that provides access to a database of mobile devices and browser characteristics. WURFL recognizes virtually all known mobile devices and tracks many device characteristics. All the device data is stored in an XML file which can be customized and extended using patch files.

113 questions
0
votes
1 answer

Unable to use WURFL with Scala

When I run WURFL demo app for scala: object Demo { def main(args: Array[String]) { // Create WURFL passing a GeneralWURFLEngine object with a wurfl xml val wurflWrapper = new Wurfl(new…
bashan
  • 3,572
  • 6
  • 41
  • 58
0
votes
2 answers

Regex to detect valid xbox devices

I am using WURFL service to detect devices using user agent. I have got one weird user agent as follow: Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Mobile Safari/537.36…
dhamu
  • 605
  • 1
  • 7
  • 17
0
votes
1 answer

How to correctly display html-page on all mobile devices/browsers

I'm currently working on survey project where users answer surveys from they mobile phones. I need to display a vary basic pages with one question on each page, but I need to make sure they are correctly displayed on all mobile phones, because user…
andr111
  • 2,982
  • 11
  • 35
  • 45
0
votes
3 answers

WURFL without a servlet

In my database I have a long list of user agents that I require a translation of them, a very promising tool is WURFL, but it has no gradle support and is not very well documented. All of the examples I could recover explained how to implement it…
Adi
  • 2,074
  • 22
  • 26
0
votes
2 answers

Tricking WURFL mobile detection

I'm trying to test the mobile version of a webpage on my desktop. It uses WURFL for mobile detection, which I thought could be tricked by changing my user agent. This has no impact on what page is displayed to me.. Any ideas how I can trick the page…
Max
  • 639
  • 2
  • 6
  • 19
0
votes
1 answer

There is no device with ID Using Zend and WURFL

I have integrate WURFL 1.6.0 with Zend every thing goes smooth it detects the desktop but in case of Android i am getting this error .On digging in deep i found out that my dir data/wurfl/cache is not loading with any data i have given it 777…
Abdul Basit
  • 493
  • 11
  • 34
0
votes
2 answers

Detect default android browser by Wurfl

I want to detect default browser of android inside my MVC controller. I have mobile detection right now: public ActionResult Index() { if (WurflHelper.Instance.IsMobile(Request.UserAgent)) { return View("MobileView"); } else …
freethinker
  • 2,257
  • 4
  • 26
  • 49
0
votes
1 answer

Retrieve user agent from device model, os or browser version

I have a need to determine the User-Agent given the device model, os or browser versions. Is there any WURFL api which can be readily used for this purpose? Any other library? Please point me to the respective code snippets. Thanks,
Kedarnath
  • 260
  • 1
  • 3
  • 13
0
votes
1 answer

Integrate wurlf in web services java

I search a framework for detecting device. I have my web services in Jersey (java) and i discover WURFL is possible to integrate this framework with my web services? or exists another framework?
DevOps85
  • 6,473
  • 6
  • 23
  • 42
0
votes
1 answer

How to use WURFL in servlet as I m missing WURFLEngine

Thanks in advance. I am using first time this WURFL API I am using wurfl-1.3.1.1.jar and wurfl-1.5.1.1-javadoc.jar in my demo application for detecting mobile browser capability. But here in this jar I am not finding…
Srinu
  • 1
0
votes
2 answers

Assigning the same function to different variables

I was going through the WURFL.js source, I saw this towards the bottom of the page: var logo=document.getElementById("hero"),heroText=document.getElementById("hero"), ... Obviously, the variables, logo and heroText, are referring to the same thing.…
afaolek
  • 8,452
  • 13
  • 45
  • 60
0
votes
1 answer

.net application picking up all instances of chrome as mobile

I have a .net application that has both mobile and traditional web pages. For device detection i am using wurfl, problem is not matter what chrome is detected as mobile. i have tried using all available version of wurlf, as well as using the web…
user1902540
  • 111
  • 2
  • 12
0
votes
0 answers

WURFL and Zend Page Caching

I seem to have a chicken/egg situation that I cannot resolve. I'm using WURFL to sniff mobile clients for my site and varying content based it. This happens in a Controller_Plugin. I'm looking at adding page caching, but as far as I know, that can…
stagl
  • 501
  • 3
  • 18
0
votes
1 answer

How to check if javascript is enabled or not using wurfl?

Question says it all. I can get the mobile name using mobile_name I can get brand name using brand_name etc. But how to check whether javascript enabled or not?
0
votes
1 answer

Can't update TeraWurfl database through Symfony 1.4

I'm trying to resume and expand an old web application developed by other people and based on Symfony 1.4. This web application get some data from TeraWurfl database through sfTeraWurflPlugin (ver. 0.9.9), a plugin that bridges the symfony framework…