Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Do you guys know fine tutorials, sample codes for SSL socket programming with Jetty? I am going to implement some secured applications with Jetty.. :)

share|improve this question

1 Answer

up vote 1 down vote accepted

Have a look at the Jetty Ssl Socket Connector instead of the often use Socket Connector. http://docs.codehaus.org/display/JETTY/Ssl+Connector+Guide http://docs.codehaus.org/display/JETTY/Embedding+Jetty?focusedCommentId=9241003#comment-9241003

Its not that difficult. Just add the sslSocketConnector to your server (after configuring it) and after this your application should respond to https requests.

server.addConnector(sslConnector);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.