1
How to configure the web.config to allow requests of any length的答案正常工作。允許每個服務的任何長度的請求
有沒有辦法改變特定服務的限制?
例如像
<system.webServer>
<security>
<requestFiltering serviceName="MyService.asmx">//Only for 1 service
<requestLimits maxQueryString="32768"/>
</requestFiltering>
</security>
</system.webServer>