このように JSON フォーマッタを削除して XML のみを返すことを保証する場合
config.Formatters.Remove(config.Formatters.JsonFormatter);
メッセージ ハンドラーを使用して、このようなすべての応答に対して盲目的にエンベロープを追加できます。
public class MyHandler : DelegatingHandler
{
protected override async Task<HttpResponseMessage> SendAsync(
HttpRequestMessage request,
CancellationToken cancellationToken)
{
var response = await base.SendAsync(request, cancellationToken);
string responseBody = "<rsp stat=\"ok\">" +
await response.Content.ReadAsStringAsync() +
"</rsp>";
response.Content = new StringContent(
responseBody, Encoding.UTF8, "application/xml");
return response;
}
}