Hello Everyone,
I am a first time Fiddler user and I could use some help.
I have an ipad app hard coded to go to https://server1.com and i need it to go to http://server2.com
So I added...
if (oSession.HostnameIs("server1.com")) {
oSession.hostname="server2.com";
}
the app is hard coded to use https port 443 with server1, and server2 has https working with a self signed certificate I think it is failing because of cert mismatch, i see it is tunneling to server2:443 in the capture, but still getting connection refused.
What is the easiest way to get this working?
Thanks in advance for any help you can provide.
Rodney