I have a .NET application built with Mono, that I've bundled into a native (Linux) executable using `mkbundle`. This is so that end users don't need to mess around and install Mono themselves.
The application uses ServiceStack, which under the hood uses `HttpListener`. I need the web services to be exposed over an SSL-enabled HTTP endpoint. Normally, you would run something like `httpcfg -add -port 1234 -p12 MyCert.pfx -pwd "MyPass"` during configuration (all this really does is copy the certificate to a specific path), and `HttpListener` would automatically bind the certificate to the port. So `HttpListener` loads certificates from a particular path at runtime. Is that path hard-coded? Or is there some way I can tell it to use a certificate from another location, since the end user will not have Mono installed? -- View this message in context: http://mono.1490590.n4.nabble.com/How-to-use-SSL-with-HttpListener-with-an-mkbundle-d-Mono-app-tp4662596.html Sent from the Mono - General mailing list archive at Nabble.com. _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
