18/03/2024 | 11:36 AM

Fix một số lỗi Web services thường gặp

Xem: 44
(LTC) Fix một số lỗi Web services thường gặp
1. Thông báo lỗi không đủ dung lượng dữ liệu

The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use the MaxReceivedMessageSize property on the appropriate binding element
=> Giải pháp
<bindings>
  <basicHttpBinding>
    <binding name="FilesServicesSoap" maxBufferSize="1073741824" maxReceivedMessageSize="1073741824" />
  </basicHttpBinding>
</bindings>
Xem: 44

Các bài viết khác

Loading ...