Craig Andrews

Results 178 comments of Craig Andrews

A bug should definitely be opened with the Android project about this. @swankjesse can you chime in? You wrote this, and presumably this effects some of the projects you're currently...

What version of Android is the troublemaker device using?

@jaypatrickhoward I'm not sure I'm following your last comment - are you saying that you found a workaround? If so, could you submit a merge request? If not... could you...

Unfortunately, they are necessary. There are a few reasons: The stock classes aren't visible (application code cannot see/access them) They don't exist, or have different features/bugs/methods for different versions of...

I think I follow what you're saying - can you submit a merge request against head? 3 methods are called on the SSLSocket: setEnabledCompressionMethods, setUseSessionTickets, setHostname. So at least one...

No tests fail on my system. What JDK are you using? I'm using Oracle 7u3. If you have multiple JDKs, perhaps you could try them and find out which fail,...

Sorry to be a pest, but is there any news on this? I'm running into this issue, too.

Here's some more information on IE's CSS limitations: http://big-webowsky.meetpollux.com/2011/10/css-size-limit-in-internet-explorer-8/ There are file size limits, file count limits, nesting limits, and rules per file limits.

Actually, my proposed solution wouldn't work if there are multiple web servers using one DFS root (which is one of the recommended RR setups, and one that I'm using). I...

It seems that ResponseTransformer.DoTransform is where the magic happens. I believe adding ``` csharp Response.Cache.SetCacheability(HttpCacheability.Private); ``` at [ResponseTransformer.cs line 143](https://github.com/mwrock/RequestReduce/blob/785be29e29dbad2f2212f9be14a4e09038a66e93/RequestReduce/Module/ResponseTransformer.cs#L143) resolves this issue.