if ( (oSession.host=="203.104.209.55") && (oSession.PathAndQuery.indexOf("/kcsapi/api_port/port")>-1) ){
oSession["ui-bold"]="true";
oSession["x-breakresponse"]="true";
oSession.utilSetResponseBody("");
}
Above is what is have in OnBeforeResponse function.
However when I request this url,
1. the session won't be paused
2. although it shows in fiddler inspection that the response body is blank, I can still view the response body in my browser
3. the ui-bold works :(
If I enable the automatic breakpoint (alt+F11), and then continue the process. Both fiddler and my browser shows no response now.
oSession["ui-bold"]="true";
oSession["x-breakresponse"]="true";
oSession.utilSetResponseBody("");
}
Above is what is have in OnBeforeResponse function.
However when I request this url,
1. the session won't be paused
2. although it shows in fiddler inspection that the response body is blank, I can still view the response body in my browser
3. the ui-bold works :(
If I enable the automatic breakpoint (alt+F11), and then continue the process. Both fiddler and my browser shows no response now.