put this somewhere in your app where it runs once
xxxxxxxxxx
// remove default Xml handler,
var matches = config.Formatters
.Where(f => f.SupportedMediaTypes.Any(m =>
m.MediaType.ToString() == "application/xml" || m.MediaType.ToString() == "text/xml"))
.ToList();
foreach (var match in matches)
config.Formatters.Remove(match);