我有一个简单的自托管 WCF控制台Windows应用,我可以从我的客户端正常连接。 虽然将大型XML字符串发送到服务器但我遇到了问题。我收到以下错误:
“System.Xml.XmlException:读取XML数据时已超出最大字符串内容长度配额(8192)。可以通过更改XmlDictionaryReaderQuotas上的 MaxStringContentLength 属性来增加此配额... “
我可以通过更改其app.config文件(由svcutil.exe生成)在客户端中设置 MaxStringContentLength 。
但是在服务器端我无处可改变。我已经阅读了有关 web.config 文件的内容,并且不确定WCF控制台应用程序是否可以有一个,如果是这样我可以如何阅读并使用它?我的自托管代码如下:
static void RunWCFService()
{
// Step 1 of the address configuration procedure: Create a URI to serve as the base address.
Uri baseAddress = new Uri("http://localhost:8000/MyService/WcfService");
// Step 2 of the hosting procedure: Create ServiceHost
ServiceHost selfHost = new ServiceHost(typeof(MyServiceWcf), baseAddress);
try
{
// Step 3 of the hosting procedure: Add a service endpoint.
selfHost.AddServiceEndpoint(typeof(IMyService), new WSHttpBinding(), "MyService");
// Step 4 of the hosting procedure: Enable metadata exchange.
ServiceMetadataBehavior smb = new ServiceMetadataBehavior();
smb.HttpGetEnabled = true;
selfHost.Description.Behaviors.Add(smb);
// Step 5 of the hosting procedure: Start (and then stop) the service.
selfHost.Open();
Console.WriteLine("Press <ENTER> to terminate service.");
Console.ReadLine();
// Close the ServiceHostBase to shutdown the service.
selfHost.Close();
}
catch (CommunicationException ce)
{
Console.WriteLine("An exception occurred: {0}", ce.Message);
selfHost.Abort();
}
}
答案 0 :(得分:3)
WCF配置数据位于正在进行托管的exe的app.config
。