3

次のように、コンソール アプリケーションにホストされた WCF サービスがあります。

static void Main(string[] args)
    {
        Uri baseAddress = new Uri("http://localhost:8080/Test");
        // Create the ServiceHost.
        using (ServiceHost host = new ServiceHost(typeof(TestService), baseAddress))
        {
            // Enable metadata publishing.
            ServiceMetadataBehavior smb = new ServiceMetadataBehavior();
            smb.HttpGetEnabled = true;
            smb.MetadataExporter.PolicyVersion = PolicyVersion.Policy15;
            host.Description.Behaviors.Add(smb);

            host.Open();

            Console.WriteLine("The Test service is ready at {0}", baseAddress);
            Console.WriteLine("Press <Enter> to stop the service.");



            Console.ReadLine();

            // Close the ServiceHost.
            host.Close();
        }  
    }

Windows ストア (WinRT) アプリケーションにクライアントがあります。私は得ています

"(413要求エンティティが大きすぎます"

大きなバイト配列を渡そうとしたとき。MaxReceivedMessageSizeコードでサービスを設定するにはどうすればよいですか?

4

2 に答える 2

6

Binding を作成してから、MaxReceivedMessageSize を指定する必要があります。

Uri baseAddress = new Uri("http://localhost:8080/Test");
var serviceHost = new ServiceHost(typeof(TestService));
var basicHttpBinding = new BasicHttpBinding();
basicHttpBinding.MaxReceivedMessageSize = int.MaxValue;
serviceHost.AddServiceEndpoint(typeof(IService), basicHttpBinding, baseAddress);
于 2013-04-06T12:07:08.470 に答える