使用Fiddler 4 調用WebService

Fiddler讓咱們這些.neter感到很是欣慰, 是用C#寫出來的,它包含一個簡單卻功能強大的基於JScript .NET 事件腳本子系統,它的靈活性很是棒,能夠支持衆多的http調試任務,而且可以使用.net框架語言進行擴展。web

調用webservice須要設置正確的請求頭,如下爲例子,每一個webserive的請求頭可能不同,具體根據ws提供方來肯定json

請求頭:api

User-Agent: Fiddler
SOAPAction: "http://tempuri.org/GetObList"
Host: **IP
Content-Length: 329
Expect: 100-continue
Content-Type: text/xml; charset=utf-8

傳入值app

<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetObList xmlns="http://tempuri.org/"><time>2018-01-01T00:00:00</time></GetObList></soap:Body></soap:Envelope>

 

 點擊Execute顯示調用結果框架

 

 

 

 Fiddler調試WebApi注意事項:spa

一、需指定請求上下文類型,不然有些api可能會調用報錯,例如 Content-Type: application/json.net

二、調試

相關文章
相關標籤/搜索