Tagged Questions
7
votes
2answers
5k views
How to use PEM file to create a SSL socket in Java?
See related question.
I have a PEM file provided to me and was told that it will be needed in establishing a SSL socket that connects to a c++ server for some API calls. Does anyone know how I can ...
3
votes
1answer
192 views
How do I access a third party component using ASP.NET and a JKS certificate?
I need to access a third party application that requires a JKS Certificate (which I have).
My client application is an ASP.NET one. How do I go about this?
(I would have liked to provide more ...
2
votes
1answer
97 views
how s_client present client certificate chain
I am trying to test whether the my certs and server certs works correctly by using openssl s_client.
openssl s_client -cert mycert -key mykey -CAfile CA.cert -connect host:name
But this tool only ...
2
votes
1answer
160 views
Connect to FTPS server
I write FTPS server, and I have problems with ssl connection after AUTH TLS command.
Simple example:
try
{
int ServerPort = 21;
ServerSocket FtpExServer = new ServerSocket(ServerPort);
...
1
vote
1answer
27 views
Keystore Alias Null Error
I am trying to configure a product called Hermes for a digital signature.
I have a file MyCert.pfx which I specified in its configuration as follows:
<component ...
1
vote
2answers
360 views
Calling WS with SSL in java
I connect to a web service with this client that work fine:
WSCSI WSCS = new WSCSI("http://localhost:8080/ServiceV2/services/WSCSISoap?wsdl","WSCSI","WSCSISoap");
IScoring instance = new ...
1
vote
2answers
428 views
Setting Grizzly's keystore to use a jks in a jar
I'm trying to use com.sun.grizzly.SSLConfig.setKeyStoreFile() to set SSL for Grizzly. It only takes a String as input (not InputStream or File). I want to use a jks file that is within a JAR file. ...
0
votes
1answer
26 views
GKR storetype not working in tomcat
I have a keystore generated with GNU/JAVA and its storetype is GKR.
Now the tomcat is not supporting GKR type keystore. Is there any way to rum GKR storetype in tomcat?
Or any way to convert GKR ...
0
votes
1answer
45 views
Java EE + JKS vs CSharp
from .NET 3.5 C# web application we want to connect to Java WebService. There are security checks using JKS certificate. How can we use it / send it in web method call?
Thanks.
0
votes
2answers
70 views
Problems when using multiple keys in a jks (ssl)
I have two client pkcs12 keystores. I exported the certs out of both of those and added them to a new jks using keyman. The strange thing is that each keystore seperately works fine, but when i ...
0
votes
1answer
2k views
C# client connecting to a Java server over SSL
As a team project I need to connect from a C# client to a Java 6.5 SSL server, however when I get to the stream.AuthenticateAsClient line it hangs.
C# connect code
public static void connect(string ...