No need to purchase anything. HttpServer is a simplified version of jServer (which does support SSL).
@Erel forgive that I return to this topic and if it is the case to open a new thread tell me.
In the
jServer Library (B4J) the instance of the Server class (org.eclipse.jetty.server.Server) is created with the Initialize method. Before starting the server, you can add the SSL connector.
It can also be done not using the SetSslConfiguration command, but with JavaObject since the Server class is public.
In the HTTPServer library (B4A) the instance of the Server class is created with the START method and inside it the connector is inserted and the server started. So adding an SSL connector before or after the start would generate an error.
In any case it would not be possible to use the addConnector command because Server is a private variable, so I cannot use it with JavaObject.
So what do you advise me?
Unfortunately it is the best I can do in Java and it is already a lot for my poor language skills