truststore Questions
0
Problem - Java security information popup appears when applet based application loads in the browser.
When I check "Always trust content from the publisher" and click run, the application runs a...
Infraction asked 12/2, 2019 at 0:12
1
I am trying to understand the difference between truststores and keystores in layman terms. How are they related to cacerts in java? I have gone through lot of threads but still cannot understand w...
Burks asked 13/1, 2018 at 16:18
2
Solved
What is the relationship between key stores, trust stores, and certificates? Are any of these tools proprietary to certain software? What literature could I obtain to get more information on these ...
Enrich asked 9/12, 2014 at 20:51
1
Solved
I need to import a certificate in order to make a http request to an external service in a Spring Boot application.
How do I set up Spring Boot in order to do this?
There's a lot of information o...
Mabe asked 4/7, 2018 at 15:49
2
There is a webservice protected by a certificate. In the client code which calls it, the certificate's CA has to present in the truststore (JRE_path\lib\security\cacerts) - if not, you get the PKIX...
Ardyce asked 2/7, 2015 at 10:14
2
Solved
I have a java server that is trying to connect to an external Ldap server through SSL (as a client in order to perform queries).
I'm having trouble connecting since the certificate they send me up...
Ouellette asked 21/12, 2016 at 7:31
5
Solved
I am trying to write an SSL client that sends mail using the javax.mail API. The problem I am having is that the server request that I use SSL, but the server is also configured with a non-standard...
Predacious asked 2/8, 2009 at 16:26
3
Solved
Has anyone came across where they have to deal with .truststore file? and knowing how to import .cer into .truststore file?
I am not sure if I have to use Java Keytool or Linux command (such as o...
Seethrough asked 17/12, 2008 at 0:33
1
Solved
I want to connect to a TLS server with a self-signed certificate, so I need a custom trust store. keytool seems to absolutely require a password in order to import the certificate, but I really don...
Arlinda asked 6/7, 2016 at 13:20
1
Solved
I need to consume a web Service using Spring Ws . I am using WEB service Template.
I need to know that by only specifying the certificates in java keystore and trustore will the sending and receivi...
Sextans asked 3/6, 2016 at 7:48
2
I am currently making a connection to my database without using SSL. I now would like to utilize SSL. The way I have it set up, is my database source is in config.
DB_SOURCE=jdbc:mysql://myDatabas...
Epicrisis asked 20/12, 2012 at 20:4
2
Solved
Premise: I have a certificate and I want to verify that the system 'trusts' this certificate (signed by a trusted root CA by Java / Operating System)
I have found some varying solutions on how to ...
Stockwell asked 13/4, 2016 at 21:56
0
I'm having issues with the https connection to a server with a self signed certificate on devices < api 19. I followed this guide published by android for trusting self-signed certifcates Androi...
Murmuration asked 7/4, 2016 at 9:47
5
Solved
We had been using java standard keystore ($JAVA_HOME/jre/lib/security/cacerts) as the trusted store for tomcat. And that tomcat server would communicate with some other server. A recent OS(AIX) upg...
Kauslick asked 25/10, 2011 at 20:8
4
I'm looking to parse an XML file that updates said file daily - the only issue I've run into is that they use their own certificate (https://...) and I can't use that specific URL, nor is the...
Grin asked 4/12, 2011 at 20:7
5
Solved
A module I'm adding to our large Java application has to converse with another company's SSL-secured website. The problem is that the site uses a self-signed certificate. I have a copy of the certi...
Wadai asked 13/5, 2009 at 16:54
1
I am trying to connect to a MySQL server using Java over SSL. I am getting the following exception:
com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Cannot connect to MySQL se...
Leduc asked 17/10, 2015 at 17:19
2
Solved
I have a certificate chain as der encoded byte[][] array to verify. I also have a truststore file.
After I create X509Certificate[] from that byte array[][] and initializing trustmanager, how wil...
Tricolor asked 29/4, 2015 at 17:50
1
Solved
I have to connect to a server via SSL dual authentication. I have added my own private key plus certificate to a keystore.jks and the self signed certificate of the server to a truststore.jks, both...
Birthmark asked 10/3, 2015 at 7:52
1
Solved
Using keytool, I am trying to extend the expiration date of a trustedCertEntry within a keystore that I have. The keystore has the contents below
$ keytool -list -keystore certs/authTruststore.jks...
Slunk asked 13/11, 2014 at 19:22
3
Solved
I am attempting to write a Java https client using jdk version 1.6.0_32. I have a self-signed public certificate that I have imported into a new truststore. The issue is that I keep getting "Except...
Orientation asked 17/5, 2012 at 3:5
1
Solved
I'm doing a JBoss AS 5.1 to 7.4, and Java 6 to 7 migration, and get a handshake failure.
The keystore and truststore are the ones we have been using successfully for ages with Java 6.
I've writte...
Saddlebow asked 11/8, 2014 at 10:40
4
Solved
I have a Java application accessing a service that uses a StartCom SSL certificate. For this to work, I need to add the StartCom CA certs to Java's truststore, because they're not in there by defau...
Amie asked 29/11, 2010 at 10:11
1
Solved
I'm currently trying to do multiple HttpGet requests at the same time with CloseableHttpClient.
I googled on how to do that and the answer was to use a PoolingHttpClientConnectionManager.
At this ...
Crutch asked 11/12, 2013 at 5:12
1
What is the difference between using a KeyStore Object for the keystore and truststore; as opposed to using the KeyManager and TrustManager?
Let me explain why I am asking. I am working with RESTE...
Stoker asked 21/12, 2012 at 21:26
© 2022 - 2024 — McMap. All rights reserved.