Search found 5 matches

by Undertone
Tue Apr 11, 2017 3:44 pm
Forum: Device Detection Issues
Topic: mobile_browser vs advertised_browser
Replies: 3
Views: 30596

Re: mobile_browser vs advertised_browser

Thanks Aaron, That is good to know. I do have a question then on how mobile_browser capability is/was working? Doesn't it also look at the UAString? What does run time has to do with this? If this is a offline use case where I have bunch of UAstring, and I provide them to the WURFL C++ APIs and quer...
by Undertone
Tue Apr 11, 2017 3:10 pm
Forum: Device Detection Issues
Topic: mobile_browser vs advertised_browser
Replies: 3
Views: 30596

mobile_browser vs advertised_browser

Hi, I took a Chrome on iOS UAString from here https://developer.chrome.com/multidevice/user-agent : Mozilla/5.0 (iPhone; CPU iPhone OS 10_3 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) CriOS/56.0.2924.75 Mobile/14E5239e Safari/602.1 Then, querying for the mobile_browser and advertised_bro...
by Undertone
Tue Feb 21, 2017 6:05 pm
Forum: Java API
Topic: Java API in standalone CLI?
Replies: 4
Views: 32038

Re: Java API in standalone CLI?

HI Aaron,

Thanks! I am good to go with the sample now. I was not adding the right jar (Servlet APIs for example) as that has a dependency even if you are trying to build a command line app.

I am able to run the sample that I wrote now.

Thanks
Ravneet
by Undertone
Tue Feb 21, 2017 4:54 pm
Forum: Java API
Topic: Java API in standalone CLI?
Replies: 4
Views: 32038

Re: Java API in standalone CLI?

Thanks Aaron. I have a use case where having a Java standalone application (not a web app) might need to use the API to resolve capabilities on a User Agent string passed manually to the API (not from a Servlet request).
by Undertone
Tue Feb 21, 2017 4:40 pm
Forum: Java API
Topic: Java API in standalone CLI?
Replies: 4
Views: 32038

Java API in standalone CLI?

Hi,

I am looking at the samples, to use the Java API, and all I am seeing is samples running inside a Web App where Servlet Instance is needed in

Code: Select all

engine.getDeviceForRequest("some UA String");
Is it possible to run the Java API in pure command line way?