Listening to both HTTP and HTTPS (wodWebServer / wodWebServer.NET)
Hi, Can one instance of wodWebserver listen to both HTTP and HTTPS ports and requests? Or do I have to run two instances in either the same or different executables? Thanks for any help.
Re: Listening to both HTTP and HTTPS
Marcus,
You need to run two instances. One for HTTP and other for HTTPS. Of course you can do that inside same project.
[code]
Dim WithEvents web1 As wodWebServerCom
Dim WithEvents web2 As wodWebServerCom
[/code]
Drazen