0

我是使用Refit的新手。我现在使用 Refit 来调用需要 xml 作为输入的 REST Api。这可行,但似乎 Refit 会自动添加众所周知的 xml 前导码来描述编码。

我想发送没有前导的 xml 元素(根据目标系统的要求)。我该怎么做呢?这是我在启动类中的代码:

    var settings = new RefitSettings
    {
        ContentSerializer = new XmlContentSerializer()
    };
    services.AddRefitClient<IItemApi>(settings)
        .ConfigureHttpClient(c => c.BaseAddress = new Uri("http://127.0.0.1:5000"));

这是我的数据类和刚刚使用的接口

public class PayLoad
{
    public string A { get; set; }
    public string B { get; set; }
}

public interface IItemApi
{
    [Post("/target/{id}")]
    Task<ApiResponse<string>> PostItemAsync(string id, [Body] PayLoad item,
        CancellationToken cancellationToken = default);
}

下面是一个 post call 的例子:

        var result = itemApi.PostItemAsync("X",new PayLoad
        {
            A = "A",
            B = "B"
        });

这是原始请求:

POST http://127.0.0.1:5000/target/X HTTP/1.1
Content-Type: application/xml; charset=utf-8
Content-Length: 76
Host: 127.0.0.1:5000

<?xml version="1.0" encoding="utf-8"?><PayLoad><A>A</A><B>B</B></PayLoad>

如何以这种方式更改我的代码这部分

<?xml version="1.0" encoding="utf-8"?>

不在请求中了吗?

4

1 回答 1

0

您需要配置您的 xml 序列化程序以跳过它,因此您需要将示例中的设置更改为如下所示:

var settings = new RefitSettings
    {
        ContentSerializer = new XmlContentSerializer(
            new XmlContentSerializerSettings
            {
                XmlReaderWriterSettings = new XmlReaderWriterSettings
                {
                    WriterSettings = new XmlWriterSettings
                    {
                        OmitXmlDeclaration = true
                    }
                }
            })
    };
于 2020-02-27T13:53:07.750 回答