Hello all,
Wondering if there is an example of jRDC2 with SSL connection, just in order to put me on the right direction.
First I'll go threw this tutorial:
https://www.b4x.com/android/forum/t...installing-ssl-certificate.55194/#post-346876
And later go threw this tutorial:
https://www.b4x.com/android/forum/threads/server-ssl-connections.40130/
And the extra code in jrdc2 i need to add is something like this?:
Is this ok?
And after all that i could use https with jrdc2?, am i correct?
Many thanks all for your help!
Wondering if there is an example of jRDC2 with SSL connection, just in order to put me on the right direction.
First I'll go threw this tutorial:
https://www.b4x.com/android/forum/t...installing-ssl-certificate.55194/#post-346876
And later go threw this tutorial:
https://www.b4x.com/android/forum/threads/server-ssl-connections.40130/
And the extra code in jrdc2 i need to add is something like this?:
ssl2:
Dim xSr As SslConfiguration
xSr.Initialize
xSr.KeyManagerPassword="SomeKeyManagerPassword"
xSr.KeyStorePassword="SomeKeyStorePassword"
xSr.SetKeyStorePath(File.DirAssets,"somefile.crt")
srvr.SetSslConfiguration(xSr,17179)' a different port of the common http?
srvr.AddFilter("/*", "HttpsFilter", False)
Is this ok?
And after all that i could use https with jrdc2?, am i correct?
Many thanks all for your help!