1、第一種情況,當寫的WebService不支持其他請求時,處理方式;執行在WebConfig配置文件<system.web>節點增加
<webServices>
<protocols>
<add name="HttpPost"/>
<add name="Documentation"/>
<add name="HttpSoap"/>
<add name="HttpSoap12"/>
<add name="HttpPostLocalhost"/>
</protocols>
</webServices>
2. 當PostMan出現【從客戶端(xml="<?xml version="1.0" ...")中檢測到有潛在危險的 Request.Form 值。】
只需在WebConfig配置文件<system.web>增加 <httpRuntime requestValidationMode="2.0"/>


