Hakon B

Results 3 comments of Hakon B

I got hit by this in my WCF service. I am running .NET 4.5.1. Any idea how to prevent RequestModel to stop checking for Files during WCF calls?

I upgraded the solution to use .NET 4.5 instead and wrapped the call to request.Files in a conditional checking if was ok like this: ``` if (request.ReadEntityBodyMode != ReadEntityBodyMode.Bufferless) {...

It is due to a breaking change between ruby 1.8.x and 1.9.x. The String class does not have an each method any longer. You should be able to use the...