This tool is outdated and no longer supported. ScientiaMobile reserves the right to remove it without notice. Please note how all the WURFL Products come
with a built-in WURFL updater feature that will update the wurfl.xml
file with the most recent version in the
user's customer vault: https://www.scientiamobile.com/update-api-xml-device-detection/
Utilities for updating the ScientiaMobile WURFL device database file (WURFL.xml).
The files in this project are only useful for downloading the commercial WURFL Device Detection database updates and will not function without a licensed product from ScientiaMobile that is eligible for on-premise updates. Please see http://www.scientiamobile.com for details.
The linux/
folder contains a script that can be used to update the WURFL file on Linux, UNIX, Mac OS X and perhaps other UNIX-like environments.
To see the usage information, run ./wurfl-uploader.sh
with no arguments:
$ linux/wurfl-updater.sh
ScientiaMobile WURFL Snapshot Updater
This utility is used to update the WURFL.xml device database file.
Note that the file format (zip or xml.gz) is determined by the URL.
usage: ./wurfl-updater.sh <url> <download_path>
url The WURFL Snapshot URL from your customer vault on scientiamobile.com
ex: https://data.scientiamobile.com/xxxxx/wurfl.zip
download_path The directory to place the WURFL file into.
Note: the filename will be the last segment of the snapshot URL (either
wurfl.zip
orwurfl.xml.gz
)
To download or update your WURFL file, pass the WURFL Snapshot URL from your customer vault on ScientiaMobile.com as the first argument and the directory that you want the file to be downloaded into as the second argument.
When you run the updater, if there is not a local copy of the file, the file is downloaded. If there is a local copy of the file but it is out of date, the updated version is downloaded, otherwise nothing is downloaded.
This script should run on must UNIX-like systems with no additional packages, however, you will need curl
or wget
, as well as date
, grep
, basename
and stat
.
# Success or already up-to-date
$ ./wurfl-updater.sh https://data.scientiamobile.com/xxxxx/wurfl.zip /tmp
Updating /tmp/wurfl.zip via CURL
# URL or License is invalid
$ ./wurfl-updater.sh https://data.scientiamobile.com/xxxxx/wurfl.zip /tmp
Updating /tmp/wurfl.zip via CURL
curl: (22) The requested URL returned error: 402 Payment Required
The URL above is fake and it will not work - you must have an eligible product from ScientiaMobile and use the URL from your customer vault.
Windows users may download a the updated as an exe
file that is available for download from here,
which can also be generated using the Visual Studio project located under the windows/WURFLUpdater
directory of this repository. This program will work
exactly the same way as the Linux script, with the same command-line arguments.
# Success
C:\temp\WURFLUpdater.exe https://data.scientiamobile.com/xxxxx/wurfl.zip c:\temp
Downloading WURFL file...
Successfully downloaded WURFL to: c:\temp\wurfl.zip
# File is already up-to-date
C:\temp\WURFLUpdater.exe https://data.scientiamobile.com/xxxxx/wurfl.zip c:\temp
Downloading WURFL file...
The WURFL File is up to date.
# URL or License is invalid
C:\temp\WURFLUpdater.exe https://data.scientiamobile.com/xxxxx/wurfl.zip c:\temp
Downloading WURFL file...
Unexpected status code: HTTP 402: Payment Required