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

Ok, before you yell at me for saying Java is already portable, read the question. I need to write a server and client using the Java.net.ssl package.The server and client need to be executable .jar files that are compatible with J2SE 1.3+. If anyone about a resource that can help, please post a link. I would prefer not to use the default SSLSocketFactory. Also, the server and client need to run on the same computer.

share|improve this question
what's not clear is what you expect 'us' to do about it. start writing and when you run into trouble, post it here - with code- so that we can help. (the 1.3 requirement could be a problem though as this a an obsolete version of java that can be very hard to come by) – KevinDTimm Oct 29 '10 at 13:15
What do you have against the classes provided by the JSSE? SSLSocketFactory is just a "factory", it can use non-default providers if you really want to. What do you have against it? What kind of protocol do you want to have on top of SSL? – Bruno Oct 29 '10 at 13:20
"Ok, before you yell at me for saying Java is already portable, read the question" not a good way to start a question... we're not that mean are we? – SB. Oct 29 '10 at 13:20
Why not use the default SSLSocketFactory and why use SSL for a TCP connection over the loopback interface (localhost-localhost-connection)? – jarnbjo Oct 29 '10 at 13:49
What is the problem you need to solve? – Thorbjørn Ravn Andersen Oct 29 '10 at 14:42

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.