Building a secured (TLS / SSL) plugin reachable via HTTP

Hello community,

I currently got a plugin running that is based on the userService Plugin.

I can run certain methods via http and request some data via http.

I am now looking for a way to secure this interface in some way.

I’d like to secure it using TLS / SSL …can anybody point me in the right direction for this?

Thanks in advance.

I found the following and got it to work now:

http://stackoverflow.com/questions/10092649/how-do-you-start-a-java-servlet-over -https

Within the plugin I can do a request.isSecure() to check if …well, its a secured request.

Everything works just fine this way.