Listening to both HTTP and HTTPS - WeOnlyDo Discussion board

Listening to both HTTP and HTTPS (wodWebServer / wodWebServer.NET)

by Marcus, Tuesday, June 12, 2012, 20:05 (4307 days ago)

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

by woddrazen, Tuesday, June 12, 2012, 20:14 (4307 days ago) @ Marcus

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