ssl-certificate

Axis 2 webservice SSL communication

匆匆过客 提交于 2020-01-03 06:33:54
问题 I am getting Soap Response from this code SOAPConnectionFactory sfc = SOAPConnectionFactory.newInstance(); SOAPConnection connection = sfc.createConnection(); SOAPMessage soapMessageResponse = connection.call(soapRequest, new URL(serviceLocation)); How can I make it SSL based? I know how to create SSLSocketFactory from SSLContext giving my specified keystore . How can I tell SOAPConnection class about SSLSocketFactory or SSLContext ? So that my communication can be secured. I do not want to

SSL pinning not working (Objective-C, using NSURLSession)

江枫思渺然 提交于 2020-01-03 05:49:08
问题 NOTE: The same SSL pinning on working on Android counterpart application. So did iOS changed something? Are there many number of certificates on the server for my url and they keep rotating everyday? Questions are: SSL Pinning can be achieved by certificate pinning only, then why doesn't it work? If some one has a clear explanation of how to do it using public key? Please explain. First I want to explain how did I get local certificate. I think it's pretty straight. I just typed in https://ez

Apache HTTPClient sends no client cert during mutual authentication

微笑、不失礼 提交于 2020-01-03 05:04:26
问题 I'm getting a handshake_failed exception when making a RESTful post call to an API that requires mutual authentication. I have verified with an engineer on the other side who is watching a stack trace that the server-side certs are exchanged and accepted by my client without issue, but when the server requests the client-side cert my side doesn't provide that and the handshake terminates. The thing is I have no idea how to verify whether SSLSocketFactory is unable to identify the right

How to fix google cloud ssl issue

喜夏-厌秋 提交于 2020-01-03 04:48:13
问题 I pointed a new custom domain to a Google App Engine Standard Environment project and edited the DNS records per Google's instructions, and it seems to be redirected properly. When I go to www.mydomain.com with its supposedly activated certificate, I still get connection is not secure in the browser. If I go to mydomain.com it gets redirected to www.mydomain.com with the same result. But when I directly enter https ://www.mydomain.com it display the website and with connection is secure. Let

Should the trusted Root CA be a part of the certificate chain?

早过忘川 提交于 2020-01-03 04:15:13
问题 I'm setting up 2-way SSL communication between services on different hosts. Let's say I have my own CA called A. A is trusted by all of my services through a centralized jks. Now let's say I have certificate B signed by A. When services send the certificate should they be sending the entire chain B - A, or just B? I believe both tend to work with most implementations. I tried to find canonical information about this online, but I'm coming up with nothing. Thanks for the help 回答1: As per tls -

Should the trusted Root CA be a part of the certificate chain?

自闭症网瘾萝莉.ら 提交于 2020-01-03 04:15:06
问题 I'm setting up 2-way SSL communication between services on different hosts. Let's say I have my own CA called A. A is trusted by all of my services through a centralized jks. Now let's say I have certificate B signed by A. When services send the certificate should they be sending the entire chain B - A, or just B? I believe both tend to work with most implementations. I tried to find canonical information about this online, but I'm coming up with nothing. Thanks for the help 回答1: As per tls -

Adding certificate to trusted root authority

纵然是瞬间 提交于 2020-01-03 03:43:07
问题 I have moved to Windows Vista Business recently and am facing an issue with installng my networks cetiicate in the trusted root authority. on clicking on install certificate, i select the store where the certificat should be stored, which is Trusted Root Authorities-->Local Computer In XP. but in Vista i am not getting the Option to store on Local Computer. instead i only get Registry and Smart Card. Anyone who can help me to add the certificate in the Local computer Store? 回答1: i have just

android: how to accept CA certificate

我的梦境 提交于 2020-01-02 21:02:00
问题 I am trying to make a secure connection to a OCS server through https in android. I found the EasySSLFactory and EasyX509TrustManager classes to make android trust the certificate but I don't know how to initialize only one time the EasySSLFactory and EasyX509TrustManager objects. I have the following code to accept a certificate and make a single connection: SchemeRegistry schemeRegistry = new SchemeRegistry(); schemeRegistry.register(new Scheme("https", new EasySSLSocketFactory(), 443));

android: how to accept CA certificate

不打扰是莪最后的温柔 提交于 2020-01-02 21:01:31
问题 I am trying to make a secure connection to a OCS server through https in android. I found the EasySSLFactory and EasyX509TrustManager classes to make android trust the certificate but I don't know how to initialize only one time the EasySSLFactory and EasyX509TrustManager objects. I have the following code to accept a certificate and make a single connection: SchemeRegistry schemeRegistry = new SchemeRegistry(); schemeRegistry.register(new Scheme("https", new EasySSLSocketFactory(), 443));

android: how to accept CA certificate

匆匆过客 提交于 2020-01-02 21:01:01
问题 I am trying to make a secure connection to a OCS server through https in android. I found the EasySSLFactory and EasyX509TrustManager classes to make android trust the certificate but I don't know how to initialize only one time the EasySSLFactory and EasyX509TrustManager objects. I have the following code to accept a certificate and make a single connection: SchemeRegistry schemeRegistry = new SchemeRegistry(); schemeRegistry.register(new Scheme("https", new EasySSLSocketFactory(), 443));