Now I have some simple code, again, to add the SOAP-action header as a column to Fiddler. Here we go:
public static BindUIColumn("SOAP", 120)
function FillSoapAction(oS: Session) {
if ((oS.oRequest != null)
&& (oS.oRequest.headers != null)
&& (oS.oRequest.headers.Exists("SOAPAction"))) {
var action = oS.oRequest.headers.Item["SOAPAction"];
return action.replace(/^.*\//, "").replace(/"/, "");
} else return String.Empty;
}
Hope you'll use it.
No comments:
Post a Comment