I have a service running on my machine. This service is published on HTTPS and starting it on HTTP seems a bit complicated. A certain remote machine perform calls to my machine on HTTP (and this is not under my control). I want to perform some non-performance-critical tests with my service, and it looks like the simplest way is to use somewhat like HTTP to HTTPS reverse proxy. Fiddler works great with HTTP to HTTP and HTTPS to HTTPS scenarios, but I'm not able to make it work for my case. Thus what I need:
+----------------+ +--------------------------------+
| Remote machine | -------> | My machine |
| | HTTP | Fiddler -------> My machine |
| | | HTTPS service |
+----------------+ +--------------------------------+
Can I achieve this using Fiddler?