1
vote
1answer
19 views

Could Not convert socket to TLS

I am trying to send email using java servlets in eclipse IDE. This is my Code. final String username = "******@gmail.com"; final String password = "******"; Properties props = new ...
0
votes
1answer
27 views

javax.net.ssl.HttpsURLConnection returning martian poetry

I am writing a simple https client that will pull down the html of a webpage over https. I can connect to the webpage fine however the html I pull down is gibberish. public String ...
0
votes
0answers
10 views

Seeing SSLHandshakeException: Received fatal alert: certificate_unknown

I wanted server and client communication to happen via SSL . I have followed this link. It says generate keypair and then generate server.private and server.public. Now when I run my server and ...
-3
votes
0answers
16 views

server specific :SSL HANDSHAKE EXCEPTION : even after self verification [closed]

I m getting this error in my code sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid ...
1
vote
0answers
8 views

How to retrieve connection data in MBeanServer?

I'm new in JMX RMI. I need to authenticate many clients in one server. I use SSL certificates and I would like to retrieve some data from data from certificate to identify client. How to do it? How to ...
0
votes
0answers
6 views

What are the algorithms supported by JsafeJCE for KeyManagerFactory?

In our project we need to communicate with a third party server on SSL. Earlier we were using sslJ provider com.rsa.jsse.JsseProvider from RSA, but because of some issue in it, now we have to use ...
0
votes
0answers
28 views

“Received fatal alert: handshake_failure” when trying to connect to https web service

I want to build a Spring 3 (v 3.1.1.RELEASE) application (on Java 1.6) to communicate with an HTTPS web service, which is using a self-signed certificate that I created. I'm confused about how to set ...
1
vote
1answer
33 views

Use a different keystore per every webapp in tomcat (one JVM)

I've a tomcat instance with many webapps. Some of them require their own independent keystore to call an external Web Service over SSL. So far the only way I've found to use the provided keystore is ...
-1
votes
1answer
31 views

how can I use SSLServerSocket in order to make a Multithread server? [closed]

I'm trying to make a multithread server (and the related client-side) using an encrypted connection. Firstly, I made my own RSA+AES classes, but there were some problems that I can't solve, so I had ...
0
votes
1answer
16 views

Java web app serve both secure and insecure resource

I am writing a Java web app (spring 3.2). Basically, I have several sites that need to access my web service. These sites are a mixture of both secured (ssl) and insecured. I have an endpoint ...
0
votes
1answer
28 views

Not able to access webservice using https protocol (ssl)

We had a webservice that is recently exposed over https. When we try to connect to it over https using JAX-WS client, it throws following exception com.sun.xml.ws.client.ClientTransportException: ...
0
votes
0answers
13 views

Aceepting any Client Certificate in SSL-Handshake

I'm using Netty on Android and server side to establish a SSL-secured connection with client-authentication. Now I'm having difficulties connecting with these certificates since SSLEngine declines ...
1
vote
0answers
21 views

custom-domain https requests aborted on appengine app

I have recently enabled https on custom domain for my appengine app. Everything worked just fine for a couple of days. After a while, on some machines requests started getting aborted. I observed ...
0
votes
2answers
37 views

javax.net.ssl.SSLException: Received fatal alert: protocol_version

Has anyone encountered this error before? I'm new to SSL, is there anything obviously wrong with my ClientHello that I'm missing? That exception is thrown with no ServerHello response. Any advice ...
0
votes
0answers
13 views

Extend SSLEngine to add support of TLS Extensions

I am using SSLEngine to provide secured authentication using UDP as transport (RADIUS) protocol. Now Java by default does not support many extensions except Renegotiation Indication Extension ...
0
votes
0answers
26 views

Android Client / Server on TLS v1.2

I'm trying my to create TLS v1.2 communication between a server and android client. I established a TLS v1.0 connection with any problem, but I cannot get v1.2. This is server code: char[] passphrase ...
0
votes
0answers
21 views

Is my client and server authentication with ssl certificates is secure?

I was wondering if my client and server authentication with ssl certificates is secure. My setup is: client generates keystore ( keytool -genkey -alias client -keyalg RSA -keystore client.ks ) and ...
0
votes
0answers
34 views

Configure SSL between Websphere App Server and Websphere MQ

I try connect to WMQ from a simple web service launched on WebSphere app server. On WMQ I have channel with SSL. I use self-signed certificates for now. In the case of glassfish I just add this cert ...
1
vote
2answers
110 views
+150

Validate TLS server certificate with BouncyCastle's “lightweight” API

I'm using Java BouncyCastle so-called "lightweight" API to establish a TLS connection over a TCP socket. I want to verify server-provided certificate chain being signed by one of trusted CAs. Sounds ...
0
votes
1answer
17 views

Exported certificate contains private information / Implement own trustmanager?

I'm quite new to ssl, but i managed to setup server and client certification on my java application. I generated the keystores and truststore using the keytool. This works quite nicely. Now i'm ...
0
votes
1answer
36 views

How do I use our private key to make a web service call?

We're using Java 6, JBoss 7.1.1 and Spring 3.1.1.RELEASE. I'm trying to write an application that will request data from a WSDL on a corporate web site and then write that data back to a local ...
0
votes
1answer
76 views

socket.outputStream is taking so much time why?

Hi I have written a server in Android. The following is my code:- SSLServerSocket ss=(SSLServerSocket)sslssf.createServerSocket(Constants.CHAT_SERVER_PORT); final String[] enabledCipherSuites = { ...
0
votes
1answer
38 views

How to make data from applet secure?

I created a Java applet that will perform some computing on client side and return data to the server. But I'm afraid that client can send me some wrong data. So my question is: how I can guarantee ...
0
votes
0answers
29 views

Keytool error importing SSL certificate into J9 keystore

We trying to import main certificate into keystore caserts J9 mobile VM. The exception: keytool error: java.security.NoSuchAlgorithmException: 1.2.840.113549.1.1.11 Certificates algorithm is ...
4
votes
2answers
119 views

Verifying server Verisign certificates throws Not trusted server certificate exception

I have a problem verifying Verisign certificate when trying to connect with HttpsURLConnection to our backend. Current certification chain: $openssl s_client -connect host:443 0 ...
0
votes
0answers
21 views

Trouble connecting to IBM MQ on SSL

I'm having a problem setting SSL properties when connecting to an MQ. This piece of code gives me the problem: sslContext = SSLContext.getInstance("SSLv3"); trustMgrFactory = ...
0
votes
0answers
37 views

Supress SSL warnings

Is there any way to supress SSL warning messages in java or weblogic I am getting this output from my java code which connects to SSL weblogic domain .I do not need this output. <May 6, 2013 ...
0
votes
2answers
33 views

Java - ssl certificate with JAX-WS client

I have imported the self sign certificate from the server using keytool and all work well. Problem is that it works only when the CN name is use "example.corp.org" for the https: url with JAX-WS ...
2
votes
1answer
85 views

Implementing a Simple HTTPS Proxy Application with Java?

I'm writing a simple HTTPS proxy program with Java for educational purposes. My program listens on a port (say 7443) for incoming HTTPS requests from a browser (say Firefox), parses the request and ...
3
votes
1answer
68 views

JBOSS 7 with two contexts. One with SSL Mutual Auth and the other just SSL

We are having a problem to configure our JBoss. We are tring to configure it to make it possible to use at the same time Mutual auth and to don't use it. Like: https://example.com/contextA/ (Requires ...
0
votes
1answer
51 views

keytool erorr bash: keytool: command not found

I have tried to execute keytool from Java bin directory but I get an erorr with warning bash: keytool: command not found. root@xxxxxx]# keytool -genkey -alias mypassword -keyalg RSA bash: keytools: ...
1
vote
1answer
75 views

Example Apache Thrift service which uses HTTPS, in Python

I have been able to find examples for how to implement services using Apache Thrift which use SSL as transport .. in Java. But not in Python. I would like to use Apache Thrift to generate the ...
0
votes
0answers
14 views

How to override the cipherlist sent to the server by Android when using HttpsURLConnection?

During TLS negotiation, clients send a list of supported ciphers to the server, the server picks one, and encryption starts. I want to change this cipherlist sent to the server by Android, when I'm ...
2
votes
3answers
88 views

Java: simulating a stream cipher with AES/CTR

I'm writing an application server and I've decided to use AES128/CTR/NoPadding to secure connections, as it's considered to be secure enough without having to expand the bytes to the block boundary ...
0
votes
2answers
25 views

How to add multiple trustsources on the server

My question is somewhat related to this question on Stackoverflow. However, my server will be listening on a single port. The server will trust the client only of it finds the clients public key ...
0
votes
1answer
44 views

How to verify a certificate using Keytool?

I want to a program to verify to create a SSL Sockets using Oracle's SSLSocket class. In my program I want the client to pass its certificate (created using Keytool). The Server should verify the ...
0
votes
0answers
178 views

Windows Azure : javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated

I'm using Eclipse Java EE Juno, Java JRE 7 & Java JDK 1.7.0_13. And I have this error : javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated The purpose of my code is to contact the ...
0
votes
0answers
15 views

Get certificate data in web service server

I have a web service built with java, axis2 and rampart for security. All communication is with signed and encrypted soap messages over https. The client has requested that they do not want to use any ...
0
votes
1answer
53 views

Import expired SSL certificate into Java keystore

I need to be able to point JMeter at a test server which has an expired SSL certificate (it will be some time before we are able to renew it). JMeter is quite rightly throwing an exception when it ...
0
votes
0answers
41 views

Java, pass a Certificate during runtime

This is my problem, I'm loading the certificate(public key to access a SMTP server, STARTTLS) from a database, because I have a requirement that the certificate shouldn't be locally on the machine. ...
0
votes
2answers
79 views

Converting .jks truststores and keystores to ios

I have created a java webservice that is going to be communicating with iPads using restlet on the server side that communicates over HTTPS with mutual authentication. I have generated two .jks ...
3
votes
3answers
115 views

Using SSL with Soap on java, No servlet

I was following a fairly useful online tutorial to create a soap server that used mysql to call a stored procedure. This worked quite well and I got code that would respond correctly using a program ...
2
votes
1answer
146 views

Java 7 ssl handshake fails when on Java 6 it works

I'm using Ability Mail Server (AMS) tool to test my SMTP server network availablilty in variours configurations (SMTP, SMTP with TLS, SMTP over SSL, etc.). My server side is written on java and uses ...
2
votes
1answer
72 views

It is possible that a weblogic ssl communication accept all certificates?

I want to implement a client application to get some information of a weblogic server. The communication has to be secure because the weblogic server is configure secure. Now I'm able to establish a ...
1
vote
2answers
57 views

Trusting an expired certificate

My client is failing with the below error while communicating with a https server with an expired cert. While we are in the process of waiting that to be fixed on the server side by renewing, I am ...
0
votes
1answer
24 views

How to achieve some measure of “privilege separation” with Java web-server?

I'm trying to be proactive around security on my Jetty web-server boxes -- especial with regards to storing SSL key information. Apache uses privilege separation so that it starts as root so it can ...
0
votes
0answers
24 views

Java HTTPS Client [duplicate]

My question is how to request a HTTPS request to a Server, and get the content of response? without use any 3rd party API? NOTE!! This is HTTPS, not HTTP! For example, I give a URL: "www.google.com" ...
0
votes
1answer
120 views

EWS 1.2 - Unable to connect to company Exchange Server

I'm currently trying to connect to our company's exchange server using the EWS Java API. Unfortunately when try to execute anything (either autodiscover or some other action after using setUrl ...
6
votes
3answers
3k views

JavaMail IMAP over SSL quite slow - Bulk fetching multiple messages

I am currently trying to use JavaMail to get emails from IMAP servers (Gmail and others). Basically, my code works: I indeed can get the headers, body contents and so on. My problem is the following: ...
2
votes
2answers
2k views

CXF SSL secured Web Service client with multiple certificates

I have a Java CXF client that connects to a SSL secured Web Service with mutual authentication. I have my keystore and my truststore properly configured on the client-side and it works fine. I am ...

1 2 3 4 5 27