Thank you Eric!
With below changes it worked for me !!!.
Change 1: Fiddler root certificate was already installed on my mobile, but still I removed and reinstalled again.
Change 2: on pcFiddler, to make sure 443 port is not in use, stopped IIS on pcFiddler, and then using netstat make sure port 443 is not in use.
Change 3: using fiddler QuickExec texbox, I ran command "!listen 443 pcfiddler"
Change 4: modified the fiddler script
static function OnBeforeRequest(oSession: Session) {
if(oSession.HostnameIs("pcFiddler") && oSession.port == "443") {
oSession.oRequest.headers.UriScheme = "https";
}
}
... it worked for me!
Now I am trying with port 444 and at the same time IIS to work with port 443. Let you know my finding.