Results 14 issues of Mike O'Brien

This is a bug in mono, see [here](https://bugzilla.xamarin.com/show_bug.cgi?id=18105) for more info in the mono issue tracker.

bug

The POXXmlReader is passing some requests down to the XmlReader/XmlDictionaryReader and intercept others with its XmlNodeReader through the property Reader. I ran into an issue where the POX reader couldn't...

jQuery likes to append the charset onto it's content-type. example: Content-Type: application/x-www-form-urlencoded; charset=UTF-8 Seems that the system should be able to parse that out appropriately and not roll down to...

The current logic in WcfRestContrib.ServiceModel.ServiceHostBaseExtensions.LoadBehaviors seems geared towards allowing behaviors specified delcaritively in [ServiceConfiguration] to override server config values, however WcfRestContrib.ServiceModel.Web.WebServiceHost.OnOpening (which processess the ServiceConfig attributes) completely ignores the ServiceConfigurationAttribute...

In order to support both SOAP and REST with a single ServiceContract (interface) that is shared between both .svc files, the WebDispatchFormatter attribute needs to be added to the methods...

Per the discussion thread at http://wcfrestcontrib.codeplex.com/Thread/View.aspx?ThreadId=68350: It would be great if the WebDispatchFormatter configuration could be applied at the endpoint or service, instead of just at the service.

There is a need to submit a raw friendly message that is not string.formattable. To do so, please add another constructor: public WebException(HttpStatusCode status, string friendyMessage) : base(friendyMessage) { Status...

As a developer I would like to return something other than a 401 error when a Basic Authentication request fails so my user isn't prompted with a log in dialog...