I know how to do this using the right click menu "Reissue Sequentially" but I'm not sure how to do same thing using fiddler script.
For example I have two or more requests need to be generated in strict order.
var RequestA="POST xxxxx";
FiddlerObject.utilIssueRequest(RequestA);
var RequestB="POST xxxxx";
FiddlerObject.utilIssueRequest(RequestB);
I guess Fiddler will try to submit these requests in order but cannot guarantee that "later requests will be submitted only when earlier requests are finished" due to network lags.
I googled and found something related but I'm not sure if the following can do exactly what I want.
var b=false;
while(!b){
try{
FiddlerObject.utilIssueRequest(s);
b=true;
}
catch {
}
Any suggestions?
For example I have two or more requests need to be generated in strict order.
var RequestA="POST xxxxx";
FiddlerObject.utilIssueRequest(RequestA);
var RequestB="POST xxxxx";
FiddlerObject.utilIssueRequest(RequestB);
I guess Fiddler will try to submit these requests in order but cannot guarantee that "later requests will be submitted only when earlier requests are finished" due to network lags.
I googled and found something related but I'm not sure if the following can do exactly what I want.
var b=false;
while(!b){
try{
FiddlerObject.utilIssueRequest(s);
b=true;
}
catch {
}
Any suggestions?