I need to implement a remoting server in .NET C# and have the following requirements/restrictions for various reasons:
- Use .NET remoting and NOT WCF
- NOT hosted in IIS
There is no restriction on the version of .NET framework though (can be 3.5 if need be).
BUT: The server needs to be serving using HTTPS. I know I can do .NET remoting outside IIS with HTTP but how can I do HTTPS with the above requirements?
UPDATE: To clarify the requirements a bit further, I need to use SSL over any protocol for security reasons and port serve over port 80 for firewall reasons. I also need the protocol to be HTTPS so the deep inspection of packets on the firewall doesn't block the traffic. So using non-HTTP on port 80 is not quite the answer.