1

データ転送用に屋外でRESTベースのWebサービスを開発していますが、RESTプロトコルを介して送受信できるデータの最大量を知りたいですか?

どんな参考資料も非常に役に立ちます。

よろしく。

4

1 に答える 1

2

データの最大量は 2147000000 です。そのため、データが十分に大きい場合は、ストリーミングして REST サービスに投稿することをお勧めします。例を次に示します。

送信者/アップローダー アプリケーションまたはクライアント

        var sb = new StringBuilder();
        sb.Append("Just test data. You can send large one also");
        var postData = sb.ToString();
        var url = "REST Post method example http://localhost:2520/DataServices/TestPost";
        var memoryStream = new MemoryStream();
        var dataContractSerializer = new DataContractSerializer(typeof(string));
        dataContractSerializer.WriteObject(memoryStream, postData);
        var xmlData = Encoding.UTF8.GetString(memoryStream.ToArray(), 0, (int)memoryStream.Length);
        var client = new WebClient();
        client.UploadStringAsync(new Uri(url), "POST", "");
        client.Headers["Content-Type"] = "text/xml";
        client.UploadStringCompleted += (s, ea) =>
        {
            if (ea.Error != null) Console.WriteLine("An error has occured while processing your request");
            var doc = XDocument.Parse(ea.Result);
            if (doc.Root != null) Console.WriteLine(doc.Root.Value);
            if (doc.Root != null && doc.Root.Value.Contains("1"))
            {
                string test = "test";
            }
        };

REST サービス メソッド

[WebInvoke(UriTemplate = "TestPost", Method = "POST", BodyStyle = WebMessageBodyStyle.WrappedRequest, RequestFormat = WebMessageFormat.Xml)]
    public string Publish(string market,string sportId, Stream streamdata)
    {
        var reader = new StreamReader(streamdata);
        var res = reader.ReadToEnd();
        reader.Close();
        reader.Dispose();

    }

REST サービス構成ファイルに次の構成設定を入れることを忘れないでください。これがないと、エラーがスローされます。

<system.web>
    <compilation debug="true" targetFramework="4.0" />
    <httpRuntime maxRequestLength="2147000000" maxQueryStringLength="2097151" maxUrlLength="2097151"/>
  </system.web>
  <system.webServer>
    ........
  </system.webServer>
  <system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
    <standardEndpoints>
      <webHttpEndpoint>
        <standardEndpoint name="" helpEnabled="true" automaticFormatSelectionEnabled="true" maxReceivedMessageSize="2147000000" maxBufferPoolSize="2147000000" maxBufferSize="2147000000"/>
      </webHttpEndpoint>
    </standardEndpoints>
  </system.serviceModel>
于 2013-01-25T07:20:15.340 に答える