Search found 11 matches

by jbart08
Wed Oct 12, 2011 6:07 pm
Forum: Device Detection Issues
Topic: myTouch 3g slide not recongized as mobile device
Replies: 5
Views: 10342

Re: myTouch 3g slide not recongized as mobile device

Sure, Essentially my code is targetting the is_wireless_device property via the device.getCapability("is_wireless_device") method. Below is a snippet example: WURFLHolder wurflHolder = (WURFLHolder)filterConfig.getServletContext().getAttribute("net.sourceforge.wurfl.core.WURFLHolder"); WURFLManager ...
by jbart08
Wed Oct 12, 2011 7:08 am
Forum: Device Detection Issues
Topic: myTouch 3g slide not recongized as mobile device
Replies: 5
Views: 10342

Re: myTouch 3g slide not recongized as mobile device

I can also include the LG Quantum, Samsung Omnia 7, and a few yet-to-be-named Android devices by my client to this list
by jbart08
Mon Oct 10, 2011 10:51 am
Forum: Device Detection Issues
Topic: myTouch 3g slide not recongized as mobile device
Replies: 5
Views: 10342

Re: myTouch 3g slide not recongized as mobile device

PS, I'm on the latest wurfl file and java implementation.

Thanks,

-j
by jbart08
Mon Oct 10, 2011 10:03 am
Forum: Device Detection Issues
Topic: myTouch 3g slide not recongized as mobile device
Replies: 5
Views: 10342

myTouch 3g slide not recongized as mobile device

Currently there is no is-mobile-device type attribute set for this hardware. Is there a different attribute that one should target when using the WURFL strictly for mobile device detection? My current approach was "if mobile device = true, redirect to mobile url", but it seems that more and more dev...
by jbart08
Fri Sep 16, 2011 8:50 am
Forum: Device Detection Issues
Topic: Possible to configure Web.xml to listen to specific file(s)?
Replies: 1
Views: 5946

Possible to configure Web.xml to listen to specific file(s)?

Right now the default setting for our website configuration is to listen to all site requests in order to pull any tracking querystring values (TrackingFilter) listed below. Our mobile listener also listens to all incoming requests currently, and for reasons unknown this is causing server errors on ...
by jbart08
Fri Sep 16, 2011 8:45 am
Forum: Device Detection Issues
Topic: Tablets are rendering mobile sites instead of standard
Replies: 9
Views: 14134

Re: Tablets are rendering mobile sites instead of standard

Turns out my issue was that DeviceServlet was never checked into source control. Once we got it back, I'm able to program against tablet devices.... D'OH!
by jbart08
Thu Sep 15, 2011 8:38 am
Forum: Device Detection Issues
Topic: Tablets are rendering mobile sites instead of standard
Replies: 9
Views: 14134

Re: Tablets are rendering mobile sites instead of standard

Sorry for the delay, I've had some progress and then a dead end. I've been able to isolate the Tomcat "welcome-file-list" is conflicting with the redirect in some way. When I remove the default file orders everything works, but when I put it back in the redirect never seems to occur. Seems like Tomc...
by jbart08
Tue Sep 13, 2011 1:47 pm
Forum: Device Detection Issues
Topic: Tablets are rendering mobile sites instead of standard
Replies: 9
Views: 14134

Re: Tablets are rendering mobile sites instead of standard

TrackingFilter.java is an existing code class set for some site features unrelated to our WURFL. I went ahead and verified it's not doing anything with the mobile filter, it only deals with our persistent cookie and querystring reads for tracking site users and search engines. Yup, it's a fine Unive...
by jbart08
Tue Sep 13, 2011 11:21 am
Forum: Device Detection Issues
Topic: Tablets are rendering mobile sites instead of standard
Replies: 9
Views: 14134

Re: Tablets are rendering mobile sites instead of standard

I'm using the JAVA API with the following settings in my web.xml file. Let me know if I can provide more, and thanks for the help: <web-app> <display-name>www.XXXXXXXXXXX.edu</display-name> <context-param> <param-name>wurfl</param-name> <param-value>/WEB-INF/wurfl-latest.zip</param-value> </context-...
by jbart08
Tue Sep 13, 2011 10:03 am
Forum: Device Detection Issues
Topic: Tablets are rendering mobile sites instead of standard
Replies: 9
Views: 14134

Re: Tablets are rendering mobile sites instead of standard

I get that, but the default configuration of the Java solution we have implemented is making that decision for me right now. I'd like to know where the setting(s) is/are that will allow me to specify the action to take for Tablets
by jbart08
Tue Sep 13, 2011 9:19 am
Forum: Device Detection Issues
Topic: Tablets are rendering mobile sites instead of standard
Replies: 9
Views: 14134

Tablets are rendering mobile sites instead of standard

I've found in testing that tablet devices (iPad, iPad2, Samsung Galaxy 10") are going to the mobile version of our sites rather than the standard site versions. Is there a central location that allows you to define what version to serve up to a tablet device? I've grabbed the latest wurfl xml and pa...