3

我们遇到以下错误:

反序列化 Project.ModelType 类型的对象时出错。读取 XML 数据时已超出最大字符串内容长度配额 (8192)。可以通过更改创建 XML 阅读器时使用的 XmlDictionaryReaderQuotas 对象的 MaxStringContentLength 属性来增加此配额。

有大量文章、论坛帖子等,展示了如何增加MaxStringContentLengthWCF 服务的大小。我遇到的问题是所有这些示例都使用了我们不使用的绑定。web.config我们的服务项目中没有设置绑定或端点配置。我们使用的是 .cs 文件,而不是 .svc 文件。我们已经实现了 RESTful WCF 服务。

在客户端,我们WebChannelFactory用来调用我们的服务。

ASP.NET 4.0

有任何想法吗?

4

1 回答 1

1

您确实有绑定,只是WebChannelFactory它会自动为您设置。事实证明,这个工厂总是创建一个带有 的端点WebHttpBinding,因此您可以在从它创建第一个通道之前更改绑定属性 - 请参见下面的示例。

public class StackOverflow_7013700
{
    [ServiceContract]
    public interface ITest
    {
        [OperationContract]
        string GetString(int size);
    }
    public class Service : ITest
    {
        public string GetString(int size)
        {
            return new string('r', size);
        }
    }
    public static void Test()
    {
        string baseAddress = "http://" + Environment.MachineName + ":8000/Service";
        WebServiceHost host = new WebServiceHost(typeof(Service), new Uri(baseAddress));
        host.Open();
        Console.WriteLine("Host opened");

        WebChannelFactory<ITest> factory = new WebChannelFactory<ITest>(new Uri(baseAddress));
        (factory.Endpoint.Binding as WebHttpBinding).ReaderQuotas.MaxStringContentLength = 100000;
        ITest proxy = factory.CreateChannel();
        Console.WriteLine(proxy.GetString(100).Length);

        try
        {
            Console.WriteLine(proxy.GetString(60000).Length);
        }
        catch (Exception e)
        {
            Console.WriteLine("{0}: {1}", e.GetType().FullName, e.Message);
        }

        ((IClientChannel)proxy).Close();
        factory.Close();

        Console.Write("Press ENTER to close the host");
        Console.ReadLine();
        host.Close();
    }
}
于 2011-08-10T16:53:30.740 回答