Nothing is sent as plain text when using SSL, it is encrypted. If you do not set what the default browser is (IE, Firefox, Chrome, etc.), you will need to find out what the default browser is and use its API to do this work (if possible).
It is likely that it will be faster and more efficient to open the default browser by calling the URL using the Start Process and passing the information in the query string (this is done by GET instead of POST, which I know isn't what you're asking for).
The response from the server can be redirected, and the redirection can send a completed form (saving values ββin a session or something like that).
Thus, the complexity is transferred to the website, and not to the Windows application, which should be easier to update if something goes wrong.
NTN
source share