A: Of course Fiddler will show you this information! If you right-
click on a Session and choose Properties, you will see the following:
== FLAGS ==================
X-SERVERSOCKET: REUSE Server pipe #3
X-CLIENTIP: ::ffff:127.0.0.1
X-CLIENTPORT: 42559
X-PROCESSINFO: iexplore:3248
X-EGRESSPORT: 42555
X-HOSTIP: 67.199.28.223
This information conveys everything you need to know in order to
determine which requests are made on which server socket. Now,
obviously, this isn’t a simple user-experience if you want to see this
information on a regular basis. To do that, you should add it to the
Fiddler UI, perhaps as a column in the Session List (http://
www.fiddler2.com/fiddler/help/configurecolumns.asp).
To do that, you should open your FiddlerScript file (Rules > Customize
Rules) and add something like so:
public static BindUIColumn("ServerSocketInfo")
function CalcSocketInfo(oS: Session)
{
return (oS["x-EgressPort"] + "=>" + oS["X-HOSTIP"] + ":"+ oS.port);
}