Search found 10 matches

by kendallbeaman
Thu Jan 24, 2013 9:43 am
Forum: Device Detection Issues
Topic: Skyfire Detection
Replies: 10
Views: 15716

Re: Skyfire Detection

None as of yet. In fact my boss was fine with waiting until we got requests but I'm a tad bit of a perfectionist. We were testing another issue which turned out to be Firefox specific and I happened to have Skyfire on my Android although I use Chrome mainly. When I went to see if that issue occurred...
by kendallbeaman
Thu Jan 24, 2013 9:08 am
Forum: Device Detection Issues
Topic: Skyfire Detection
Replies: 10
Views: 15716

Re: Skyfire Detection

So here is what I have. Boolean isSkyfire = false; // Check to see if the Skyfire Browser is being used. This "browser" is sometimes fun to detect // But currently the recommended way is to first check the X-Requested-With header and then the UA string. if ( Request.Headers["X-Requested-With"] != nu...
by kendallbeaman
Wed Jan 23, 2013 9:03 pm
Forum: Device Detection Issues
Topic: Skyfire Detection
Replies: 10
Views: 15716

Re: Skyfire Detection

Thanks. So to make sure I understand, to properly detect Skyfire I should employ two checks. First check is for that first UA string. The second check is a combination of the second UA string and the header variable being set with a value of com.skyfire.browser.

Do I have this right?
by kendallbeaman
Wed Jan 23, 2013 9:01 pm
Forum: Miscellaneous
Topic: App Pool Explosion
Replies: 8
Views: 46758

Re: App Pool Explosion

Sweet thanks! This was well written. I am going to include a link to it in our internal documentation.
by kendallbeaman
Wed Jan 23, 2013 4:45 pm
Forum: Device Detection Issues
Topic: Skyfire Detection
Replies: 10
Views: 15716

Re: Skyfire Detection

Thanks for the reply. So if I wanted to detect Skyfire right now would searching the UA for Skyfire be a bad idea? Are there non-mobile browsers that might use Skyfire in the UA?
by kendallbeaman
Wed Jan 23, 2013 1:59 pm
Forum: Device Detection Issues
Topic: Skyfire Detection
Replies: 10
Views: 15716

Skyfire Detection

Hey all, Ok, I just found out that when I tried to view my site in Skyfire it did not detect it as a mobile device. Now I had to do some reading and I see that Skyfire isn't exactly a browser but more of a trans-coder / proxy ? Or something like that. I went to http://tools.scientiamobile.com/ and I...
by kendallbeaman
Wed Jan 23, 2013 8:35 am
Forum: Miscellaneous
Topic: App Pool Explosion
Replies: 8
Views: 46758

Re: App Pool Explosion

Hey there, Just wanted to follow up on this. It worked. I followed your suggested and instead of using the Cache I used a static member on the global object and initialized it to an instance of the manager. This has solved the issues we were seeing on our large scaled site. I've added this to our in...
by kendallbeaman
Thu Jan 17, 2013 11:25 am
Forum: Miscellaneous
Topic: App Pool Explosion
Replies: 8
Views: 46758

Re: App Pool Explosion

That makes sense. So perhaps what was happening before was that the Cache was being cleared while the instance itself was not? Just trying to guess what may have been going on. I do see that what you mention is a new potential problem because I just added the code to create a new instance if the Cac...
by kendallbeaman
Wed Jan 16, 2013 12:07 pm
Forum: Miscellaneous
Topic: App Pool Explosion
Replies: 8
Views: 46758

Re: App Pool Explosion

Unknown at this time. When this occurred it was on a live server and so not many debugging details were gathered. They were frantically prepping the backup server and getting it running and since the only place where this happened was on the live server (dev, staging, local all ran fine) we're going...
by kendallbeaman
Wed Jan 16, 2013 9:33 am
Forum: Miscellaneous
Topic: App Pool Explosion
Replies: 8
Views: 46758

App Pool Explosion

Hey all, We just started using WURFL. We are currently tracking down an issue that causes our site to crash. The crash occurred after I added code to exclude Tablets from our mobile web app. When this code is commented out the problem goes away. So I have re-factored it a bit. Added a check to make ...