Questions tagged [sslexception]

90 questions
54
votes
14 answers

Spring Boot: Jdbc javax.net.ssl.SSLException: closing inbound before receiving peer's close_notify

I am currently learning more about implementing JDBC and using databases in a Spring Boot webapp, and I encountered the following Stack Trace written in the bottom of the post. I have created a simple Employee model, and I am trying to execute some…
DP Park
  • 815
  • 1
  • 9
  • 19
12
votes
3 answers

SSL Exception when using Volley

I'm using Volley in Android to perform my app requests. Unfortunately, I'm getting the following error: com.android.volley.NoConnectionError: javax.net.ssl.SSLHandshakeException: javax.net.ssl.SSLProtocolException: SSL handshake aborted:…
Edson Menegatti
  • 4,006
  • 2
  • 25
  • 40
12
votes
5 answers

Randomly SSLException Unsupported record version Unknown-0.0

Sometimes the code below fails and sometimes it work. I'm using Java8. Is it a server side problem? Exception in thread "main" javax.net.ssl.SSLException: Unsupported record version Unknown-0.0. EDIT: I downgrade to JDK7 from JDK8 and it works. The…
daniele.guiducci
  • 153
  • 1
  • 1
  • 5
11
votes
2 answers

Android: SSLException I/O error during system call, Connection timed out

I have a function in my android code which send data to the web service using KSOAP. I am able to send data to the service, but sometimes I get an exception: "SSLException I/O error during system call, Connection timed out". After performing a…
BRDroid
  • 3,920
  • 8
  • 65
  • 143
9
votes
1 answer

javax.net.ssl.SSLException during Amazon S3 Multipart Upload

I'm using Simpl3r, a simple high level Android API for robust and resumable multipart file uploads using the Amazon S3 service, to upload media files to my bucket. On some uploads, I'm getting a SSLException error. Here's the code where the…
dornad
  • 1,274
  • 3
  • 17
  • 36
7
votes
1 answer

javax.net.ssl.SSLException: SSLEngine closed already SSLEngine closed already in webclient (Springboot)

I am using webclient in springboot application to call a external restful webservice. getting this exception intermittently. javax.net.ssl.SSLException: SSLEngine closed already SSLEngine closed already I see below warning in logs before getting…
7
votes
0 answers

Error : javax.net.ssl.SSLException: Connection reset (Specific Website only)

Kind Attn Moderators: Before marking this query as duplicate, please note I have checked these questions... java.net.SocketException: Connection reset What's causing my java.net.SocketException: Connection reset? Getting error…
iCoder
  • 1,406
  • 6
  • 16
  • 35
7
votes
2 answers

SSLException due uploading item for Amazon service

I upload my file to aws service from android. I configured it like this: AwsMetadata awsMetadata = resultData.getParcelable(Params.CommandMessage.EXTRA_MESSAGE); AWSCredentials awsCredentials = new BasicAWSCredentials( …
Android dev
  • 75
  • 1
  • 8
7
votes
0 answers

Android : SSLException: Unable to create application data + multiple HTTPS connection

I have created one android application and two server application. Server Details Tomcat 6 with SSL. My both the server are on HTTPS. In this application I read commands from Server "A" and process them.Once processing is complete I need to send…
yash
  • 151
  • 1
  • 2
  • 11
6
votes
6 answers

SSLException: Connection has been shutdown: javax.net.ssl.SSLException: Tag mismatch

In Android Studio, when I try to update large SDKs through the SDK Manager, I keep getting the following error: SSLException: Connection has been shutdown: javax.net.ssl.SSLException: Tag mismatch! This always happens with large SDKs. What should…
user7337635
5
votes
2 answers

Getting SSLException using Retrofit 2

I'm creating authorization app, where I'm using Retrofit 2. When I'm doing call, that goes to onFailure method and gets exception "javax.net.ssl.SSLException: Connection closed by peer" But the problem is, that yesterday this worked great. Today it…
Hayk Mkrtchyan
  • 2,835
  • 3
  • 19
  • 61
5
votes
1 answer

What are the security consequences of setting "jsse.enableSNIExtension" to false?

I currently have an application that would make HTTP post request to a lot of URLs. Some of the connections are failing with the following exception. Exception in thread "main" javax.net.ssl.SSLProtocolException: handshake alert: …
Keen Sage
  • 1,899
  • 5
  • 26
  • 44
5
votes
0 answers

JRE 7 SSL Exception UnsupportedOperationException

I have an applet that attempts to fetch content from a specific HTTPS URL. I used the following sample code: URL url = new URL(urlLink); URLConnection urlConn = (URLConnection)url.openConnection();…
4
votes
1 answer

c# SslException: SSL Handshake failed with OpenSSL error - SSL_ERROR_SSL

This error occurs on a single endpoint. It is the one that tries to extract data from SqlServer. If I try to run IIS everything works fine. When I run in a linux docker container, it doesn't work anymore. I have the following…
4
votes
2 answers

ANR and crash in an android app, Android 8(.1), 90% Huawei devices

Since a recent android app update, I'm facing an ANR and a crash issue, that mainly appear on Huawei devices running Android 8. (I managed to reproduce the ANR on an Honor 7x, Android 8.0). According to the Google Play Console Logs, the crash…
MinosL
  • 138
  • 1
  • 10
1
2 3 4 5 6