Thanks that definitely helps, I purchased the debugging with fiddler book a long time ago, but it's nice to know that a 2nd edition has been released. It's in my shopping cart.
I want to also thank you for the work you've done with fiddler. I use fiddler day in and day out, it's amazing, and I owe you a debt of gratitude.
I'm trying to italicize and bold requests inside your function matchJunk like this, but it doesn't work.
if (oS.url.Contains("/idp/") || oS.url.Contains("/sp/") || oS.HTTPMethodIs("POST"))
{
oS["ui-italic"]="true";
oS["ui-color"]="orange";
}
what am i doing wrong!?
I tried studying the onExecAction bold command, and it's got uiBoldURI= sParams[1];.. What is confusing me is where oS: Session comes from, for example, in your matchJunk function above, you don't explicitly pass any object Session. I need to know where in the book this is documented, as I can't find uiBoldURI defined anywhere either. What am I missing here?
i tried invoking a function call directly from inside case "cleanup" like this:
formatRequests();
which is defined as:
static function formatRequests(oS: Session)
{
oS["ui-italic"]="true";
oS["ui-color"]="orange";
}
but that just complains about missing arguments.