Questions tagged [sslhandshakeexception]

This Java Exception is raised during an SSL/TLS Handshake and usually triggered by some incompatibility between the client and the server.

The possible incompatibilities typically are : TLS versions, Cipher Suites, Options, Certificate validation.

Once raised, the connection is no longer usable. If it follows a previous correctly established handshake, the Session Identifier is no more considered as correct.

529 questions
0
votes
0 answers

Sudden SSL error in Iphone

I really need help to fix this sudden SSL issue for my website on iPhone. My client reports to me that all of their visitors from iPhone have not been able to open the site in the last 2 weeks. It used to work fine. Website url is: Link It's…
0
votes
1 answer

Getting SSLPeerUnverifiedException on Twilio API calls

We are using twilio-java-sdk-3.4.1 since last 3 years. It was working fine until 31 May. Since then we are getting following exception for all USA numbers. Did any change happen on Twilio end during that time? We are using java…
Rajeev
  • 11
0
votes
1 answer

IBM Watson using Alchemy API

I am using iOS SDK for IBM Watson Alchemy API. I got my credentials for Alchemy API and used the code in the documentation to call the API (https://github.com/watson-developer-cloud/ios-sdk). However, I cannot find documentation how to solve the…
Raj
  • 165
  • 3
  • 15
0
votes
1 answer

SSLHandshake Exception in SoapUI

I am getting SSL Handshake exception calling a web service using the Axis framework. I can browse to the wsdl file with no issues. I have added the ssl certificate into cacert trust store and added the cacert into my project My Soapui options file…
Sofia Khwaja
  • 1,909
  • 3
  • 17
  • 20
0
votes
1 answer

Handshake error in Webservice

Our integration partner was using our Web service with http: 8090 and now we are moving to https: 8443 so they tried to update the WS URL but they are getting "handshake error". They are asking whether they can still use http 8090. If we route any…
0
votes
0 answers

How to get XML data from https url in Android

I want to get XML data from the web server https://ruralfire.qld.gov.au/bushfirealert/bushfireAlert.xml However, I can't do it because my codes always have an error "javax.net.ssl.SSLHandshakeException: Connection closed by peer". And my InputStream…
0
votes
1 answer

webservice call with certificates fails with socket read error

I connect to REST webservice running on server using Apache HttpClientBuilder. The client must send a certificate to validate and the server certificate is added in truststore in the client side. I specify with options -Djavax.net.ssl.keyStore ,…
0
votes
0 answers

Sending Base64 Bitmap and Intermittently getting ProtocolException

I've built an Android App that I'm using to send a camera captured image to our server. I convert the Bitmap to a Base64 String view the following code: ByteArrayOutputStream byteArrayOS = new…
0
votes
1 answer

Issues integrating java client application with Salesforce (wsc API)

I had to connect to salesforce through my Java application and followed the steps provided by salesforce.com Introduction. I faced a couple of issues in this process and any help would really help me a lot. Issue 1: First and foremeost I am unable…
0
votes
2 answers

Service account Throws - SSLHandshakeException

Thank you very much for reading this post, any help will be greatly appreciated!! I am trying to use service account to list and create a text file in the Drive. Have generated a Service account, downloaded the p12 file also enabled Drive api for…
0
votes
2 answers

Unable to get local issuer certificate on Solaris 10

I'm running Solaris 10 in a production environment and I have an integration with a third party webservice using ssl for which they have provided the certificates. It was working fine until a couple of weeks back when they updated their certificates…
0
votes
1 answer

SSL Handshake failure - HttpClient 4.1.2

I am trying to make an API call on a server but getting an SSL handshake failure. The library i am using is httpclient 4.1.2. Here is the how i am creating the httpClient object System.setProperty("https.protocols","TLSv1"); SSLContext sslContext =…
0
votes
0 answers

SSL Handshake Error: Handshake_Failure during ChangeCipherSpec from the Server

I am trying to call an API using SSL Certificates. From -Djavax.net.debug = all log I am passing the following steps. Received "Server Hello Done" Client Key Exchange: RSA PreMasterSecret, TLSv1 Received Finished Status on Client Key…
0
votes
2 answers

JDK 1.5 SSLHandshakeException

I have strange problem, that I could not fixed. I have JDK 1.5 version and SSL based communication via sockets, simply send and receive string data. try { KeyStore ks = KeyStore.getInstance("JKS"); ks.load(new FileInputStream( …
Mike
  • 55
  • 1
  • 7
0
votes
0 answers

ActiveMQ, SSL Handshake throws Unsupported critical extensions

I've configured an ActiveMQ broker with AMQP over SSL with mutual authentication, and it is working well with selfsigned certificates. The problem appeared when trying to test with one of my client's certificate which contains some critical…
31torvl
  • 1
  • 1