Search found 393 matches

by kamermans
Wed Mar 07, 2012 10:40 pm
Forum: Device Detection Issues
Topic: Problem detecting HTC Radar C110e
Replies: 1
Views: 5117

Re: Problem detecting HTC Radar C110e

Hi, thanks for the questions. The WURFL API does indeed detect this device properly (http://bit.ly/A61iNp) with a relatively recent copy of the WURFL device database. The API tries an exact match first, but if it is not found, it uses one or more of about 50 user agent matchers, each specifically ta...
by kamermans
Tue Mar 06, 2012 1:50 pm
Forum: ScientiaMobile WURFL Cloud Service
Topic: Receiving Capability Info from known User Agent?
Replies: 3
Views: 9061

Re: Receiving Capability Info from known User Agent?

I'm assuming you're using PHP. Here's an example of testing the client without caching and forcing a given user agent: <?php // Include the WURFL Cloud Client // You'll need to edit this path require_once '../Client/Client.php'; // Create a configuration object $config = new WurflCloud_Client_Config...
by kamermans
Tue Mar 06, 2012 1:44 pm
Forum: ScientiaMobile WURFL Cloud Service
Topic: Receiving Capability Info from known User Agent?
Replies: 3
Views: 9061

Re: Receiving Capability Info from known User Agent?

The cloud clients use Cookie Caching by default, so it's likely that this response is being returned from cache. For testing you can specify the Null Cache provider. Which language are you using?
by kamermans
Sun Mar 04, 2012 11:37 pm
Forum: PHP API
Topic: Bug related to APC, solved
Replies: 1
Views: 9155

Re: Bug related to APC, solved

Thanks for the info - we will include a warning about using volatile storage as a persistence mechanism in the documentation, and give a recommended cache size!
by kamermans
Sun Mar 04, 2012 11:35 pm
Forum: Device Information
Topic: Kindle
Replies: 3
Views: 7484

Re: Kindle

Hi Indigoe, The WURFL DB user-agent search is for substring and exact matches only - it does not use the WURFL API (this is intentional). The Kindle you are looking for is amazon_kindle3_ver1 (here's a list of all the Kindles: https://db.scientiamobile.com/device/results?user_agent=&identifier=kindl...
by kamermans
Mon Feb 27, 2012 12:43 pm
Forum: General API Questions
Topic: Are there any C++ APIs please?
Replies: 1
Views: 41956

Re: Are there any C++ APIs please?

Hi C++ Coder,

We have an Official C++ API in the testing stages and we will be providing more information about it in the coming weeks. If you'd like to hear more about it, please fill out the form at http://www.scientiamobile.com/license and we would be happy to have a chat with you.
by kamermans
Wed Feb 22, 2012 10:45 am
Forum: Java API
Topic: wurfl thread-safe usage
Replies: 3
Views: 9606

Re: wurfl thread-safe usage

We're doing a documentation overhaul for our products, so we will certainly take this into consideration.
by kamermans
Wed Feb 15, 2012 6:59 pm
Forum: Device Detection Issues
Topic: Firefox 10 detected as mobile device
Replies: 11
Views: 15484

Re: Firefox 10 detected as mobile device

Thanks for bringing this to our attention. Our records indicate that you are using the Java API - can you confirm the API version while we attempt to reproduce the issue?
by kamermans
Wed Feb 15, 2012 10:36 am
Forum: ScientiaMobile WURFL Cloud Service
Topic: Issues in WurflCloud
Replies: 6
Views: 13314

Re: Issues in WurflCloud

Hi, 1. The WURFL Cloud service is indeed powered by the same logic as the Database API (aka Tera-WURFL). I've been able to reproduce the problem with the ChaCha user agent provided - thanks! The Cloud Beta service runs a development version of the detection API, and in this was the problem in this c...
by kamermans
Tue Feb 14, 2012 10:54 am
Forum: General API Questions
Topic: How to get Latest wurlf updates
Replies: 10
Views: 64639

Re: How to get Latest wurlf updates

Hi wurfluser,

I've added a .NET example for downloading the WURFL file only if it's been updated to the thread here: http://www.scientiamobile.com/forum/vie ... p=404#p404
by kamermans
Mon Feb 13, 2012 12:06 pm
Forum: General API Questions
Topic: How to get Latest wurlf updates
Replies: 10
Views: 64639

Re: How to get Latest wurlf updates

Assuming you purchase a commercial license, you can setup automatic WURFL snapshot downloads.
by kamermans
Mon Feb 13, 2012 11:21 am
Forum: General API Questions
Topic: Automatically updating commercial WURFL file
Replies: 9
Views: 76319

Automatically updating commercial WURFL file

Edit: For the most up-to-date method of automatically updating the wurfl.xml, please read the support documentation here . The information below may be outdated and is left intact to serve as an archive. All ScientiaMobile API customers are given access to a direct download URL for obtaining the lat...
by kamermans
Sat Feb 11, 2012 3:01 pm
Forum: Database API
Topic: advice on updating tera-wurlf
Replies: 10
Views: 64427

Re: advice on updating tera-wurlf

Actually, I don't think dumping the procs with the tables will help since they are always recreated when you update the DB, and the PHP->MySQL connection charset is to blame for the problem. Changing the default charset in php.ini to the charset you use in your DB should fix the problem: mysql.conne...
by kamermans
Fri Feb 10, 2012 8:43 pm
Forum: Database API
Topic: advice on updating tera-wurlf
Replies: 10
Views: 64427

Re: advice on updating tera-wurlf

Hi Robert, I’ve solved the problem after much investigation! When you dumped the database, you didn’t dump the procedures, so when it’s imported into another MySQL instance, the tables are created with the UTF8 charset (this is specified per table in the dump), but since the stored procedures are no...
by kamermans
Thu Feb 09, 2012 5:06 pm
Forum: Database API
Topic: advice on updating tera-wurlf
Replies: 10
Views: 64427

Re: advice on updating tera-wurlf

Thanks for providing the test results, Robert. Can you send me a zipped dump of your MySQL DB so I can see what's going on? My email is steve@(this domain).
by kamermans
Wed Feb 08, 2012 5:03 pm
Forum: Database API
Topic: advice on updating tera-wurlf
Replies: 10
Views: 64427

Re: advice on updating tera-wurlf

I didn't realize you were using RDS - that's probably the issue. When Tera-WURFL loads the WURFL, it splits the whole data file into large chunks and inserts them in bulk, so it might only take 10 or 20 queries to load the WURFL data, but when it rebuilds the cache, each cached item may result in 10...
by kamermans
Wed Feb 08, 2012 9:52 am
Forum: Database API
Topic: advice on updating tera-wurlf
Replies: 10
Views: 64427

Re: advice on updating tera-wurlf

Hi Robert, The logs you've posted do indeed show that the update process is taking exceptionally long to complete. Even on legacy hardware, like Amazon is using, the cache rebuild process should be able to recache devices at a rate of over 150/sec, so 5500 cached items would take about 35 seconds to...
by kamermans
Tue Feb 07, 2012 4:43 pm
Forum: Feature Requests
Topic: Sync ML capability (vs OMA Support ?)
Replies: 1
Views: 30693

Re: Sync ML capability (vs OMA Support ?)

Hi - thanks for your request. The capability you mentioned (oma_support), does not guarantee that the device supports SyncML. As we do not currently have a capability for SyncML, you will need to find another approach, like determining the families of devices that have support for SyncML (for exampl...
by kamermans
Mon Feb 06, 2012 10:30 am
Forum: PHP API
Topic: Problem with WURFL lock functionality
Replies: 8
Views: 48663

Re: Problem with WURFL lock functionality

Hi Arve, Thanks for the input - the temp dir will be configurable, and since we've already got problems with flock() on Solaris and NFS (perhaps other filesystems as well), I think I'll take your advice and use a directory entry as a exclusive lock indicator, with a destructor that removes the direc...
by kamermans
Tue Jan 31, 2012 9:40 am
Forum: Device Information
Topic: Galaxy Tab 10.1 , android 3.2
Replies: 1
Views: 5598

Re: Galaxy Tab 10.1 , android 3.2

Hi Robert,

We've received the UA and it will be added this morning. Thanks for the submission!