似たような質問がたくさんありますが、私はそれらのすべての解決策をすべて試しましたが、役に立ちませんでした。
WebServiceHostFactory で初期化する Web サービスがありますが、64k を超える値がスローされると、「400 Bad Request」が返されます。通常、これは MaxReceivedMessageSize、MaxBufferSize、および MaxBufferPoolSize を増やすことで解決されます。問題は、WebServiceHostFactory を使用すると、Web.Config が完全に無視されることです。ServiceModel セクションで行った変更は、サービスにまったく反映されません。
WebServiceHostFactory を完全に捨てて、web.config をゼロから設定するだけでもいいのですが、サービスはそれなしでは動作しません。メソッドの 1 つには、ストリーム パラメータとその他の文字列パラメータがあります。工場がなければ、
System.InvalidOperationException: For request in operation Test to be a stream the operation must have a single parameter whose type is Stream
したがって、ファクトリを削除することはできません。このエラーを修正するために工場が行っていることを正確に理解することはできませんが、4日間費やしましたが、どこにも行きませんでした.
また、プログラムで MaxReceivedMessageSize をオーバーライドしようとしましたが、いくつかの例をあちこちで見つけました。
protected override void OnOpening()
{
base.OnOpening();
foreach (var endpoint in Description.Endpoints)
{
//var binding = endpoint.Binding as WebHttpBinding;
//if (binding != null)
//{
// binding.MaxReceivedMessageSize = 20000000;
// binding.MaxBufferSize = 20000000;
// binding.MaxBufferPoolSize = 20000000;
// binding.ReaderQuotas.MaxArrayLength = 200000000;
// binding.ReaderQuotas.MaxStringContentLength = 200000000;
// binding.ReaderQuotas.MaxDepth = 32;
//}
//var transport = endpoint.Binding.CreateBindingElements().Find<HttpTransportBindingElement>();
//if (transport != null)
//{
// transport.MaxReceivedMessageSize = 20000000;
// transport.MaxBufferPoolSize = 20000000;
//}
var newTransport = new HttpTransportBindingElement();
newTransport.MaxReceivedMessageSize = 20000000;
newTransport.MaxBufferPoolSize = 20000000;
endpoint.Binding.CreateBindingElements().Add(newTransport);
}
}
ファクトリが WebHttpBinding にキャストできない CustomBinding を作成するため、最初の方法は機能しません。バインディング要素が読み取り専用であるように見えるため、2番目は機能しません-要素を何に設定しても、何も変更されません。値を「変更」した後に値を読み戻すことで確認しました。3 つ目は、そこに新しいバインディング要素を投げ込もうとする最後の溝の試みでしたが、もちろんこれも失敗しました。
今、私たちは完全に途方に暮れています。どうすればこれを実行できますか?あなたはそれがとても簡単だと思うでしょう!
みんなありがとう
Web.Config
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
<compilation targetFramework="4.0" />
</system.web>
<system.serviceModel>
<bindings>
<webHttpBinding>
<binding name="rest" maxReceivedMessageSize="500000000" />
</webHttpBinding>
</bindings>
<services>
<service name="SCAPIService" behaviorConfiguration="ServiceBehaviour">
<endpoint address="" binding="webHttpBinding" bindingConfiguration="rest" contract="ISCAPIService" behaviorConfiguration="web">
</endpoint>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="ServiceBehaviour">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="web">
<webHttp />
</behavior>
</endpointBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true" />
</system.webServer>
</configuration>
これまでに失敗した提案された修正を使用して編集します。
public class MyServiceHost : WebServiceHost
{
public MyServiceHost()
{
}
public MyServiceHost(object singletonInstance, params Uri[] baseAddresses)
: base(singletonInstance, baseAddresses)
{
}
public MyServiceHost(Type serviceType, params Uri[] baseAddresses)
: base(serviceType, baseAddresses)
{
}
protected override void ApplyConfiguration()
{
base.ApplyConfiguration();
APIUsers.TestString += "here" + Description.Endpoints.Count.ToString();
foreach (var endpoint in this.Description.Endpoints)
{
var binding = endpoint.Binding;
APIUsers.TestString += binding.GetType().ToString();
if (binding is WebHttpBinding)
{
var web = binding as WebHttpBinding;
web.MaxBufferSize = 2000000;
web.MaxBufferPoolSize = 2000000;
web.MaxReceivedMessageSize = 2000000;
}
var myReaderQuotas = new System.Xml.XmlDictionaryReaderQuotas();
myReaderQuotas.MaxStringContentLength = 2000000;
myReaderQuotas.MaxArrayLength = 2000000;
myReaderQuotas.MaxDepth = 32;
binding.GetType().GetProperty("ReaderQuotas").SetValue(binding, myReaderQuotas, null);
}
}
}
class MyWebServiceHostFactory : WebServiceHostFactory
{
protected override ServiceHost CreateServiceHost(Type serviceType, Uri[] baseAddresses)
{
return new MyServiceHost(serviceType, baseAddresses);
}
}