JSSE « Socket « Java Network Q&A

Home
Java Network Q&A
1.API
2.bluetooth
3.Client
4.connection
5.Cookie
6.Development
7.Email
8.File
9.ftp
10.http
11.HttpClient
12.https
13.ip
14.Network
15.OS
16.RMI
17.Security
18.Server
19.Socket
20.tcp
21.UDP
22.url
Java Network Q&A » Socket » JSSE 

1. Multiple sockets - one of which causing SSLException - how to debug trace openSocket in jsse.jar    stackoverflow.com

I've got an issue in an enterprise application that is opening multiple sockets in a particular scenario. I want to trace back from the openSocket method in the SSLSocketFactory in jsse.jar ...

2. JWS, JSSE, keytool and/or javakey HOWTO?    coderanch.com

I see how to view the contents of the "cacerts" file that comes with the JSSE (I've succeeded at that), but I can't seem to export my JWS server certificate in order to import it into the cacerts file that one is to use with the examples that come with the JSSE. I tried using keytool to simply "list" the contents ...

3. JSSE package problem    coderanch.com

4. Help! App using JSSE 1.0.2 freezes    coderanch.com

I'm attempting to use JSSE to connect to a URL. For some reason, my program (code follows) freezes at the openConnection() call. I'm new to this. Does anyone see anything I'm doing wrong? Thanks! import java.io.*; import java.lang.*; import java.net.*; import java.security.*; import java.util.*; import javax.net.*; public class MyProg { public MyProg() { setHTTPS(); connectToServer(); } //end MyProg private void connectToServer() ...

5. About JSSE.    coderanch.com

Hello All! I would like to encrypt all of my client/server (not webserver) applications with a master encryption key, so that the applications will recognize eachother, and that the master encryption key will be in thier key store from the begin. I just don't know how to do it. is to be encrypted with bulk encryption or authentication encryption? how this ...

6. JSSE with Applets    coderanch.com

7. JSSE and use of certificates    coderanch.com

8. HTTPSURLConnect and JSSE    coderanch.com

Hi...I am having some difficulty making a secure connection to send/receive streams. In order to connect to non-secure sites, I use the following code: // Initialize URL variables URL url = null; HttpURLConnection urlConnection = null; // Get handle to URL and its connection url = new URL("http://www.whatever.com"); urlConnection = (HttpURLConnection)url.openConnection(); // Open input/output stream [Add code to open stream(s) here] ...

9. JSSE and NIO    coderanch.com

I need to implement secure (https) non-blocking communication. I want to use java.nio with JSSE. I found a paper on that subject (http://www-106.ibm.com/developerworks/java/library/j-sslnb.html?ca=dgr-lnxw16JSSE-NIO) and tried to run the example program. Unfortunately, when I run the program, the output contains many "bad characters". When I comment this line : s.setSoTimeout(25); in nbChannel.java, the output is OK. I think the SocketTimeoutException that is ...

10. SSL certificate with JSSE    coderanch.com

11. JSSE 1.0.2 EOL ?    coderanch.com

Hi, Just wanted to know if any of you know if JSSE 1.0.2 is still not ended by Sun. Does anybody has any idea as we are using it in our application and its stopped working giving some HTTPCLient Connection Exception. Has Sun EOL reached for JSSE 1.0.2 and we need to migrate to JSSE 1.0.3 any official links on that. ...

12. JSSE Problem    coderanch.com

13. JSSE    coderanch.com

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.