ssl-certificate Questions

4

Solved

We like to access a webserver using client certificate authentication instead of basic authentication. Certificate is a PEM cert and the key file is a separate file. The curl call looks like this...
Abmho asked 5/6, 2018 at 7:27

6

I am using openssl to convert the cert bought from Godaddy for using IIS Windows 2016. Command I used to convert is the following, I press Enter for no password. I also tried input a simple and com...
Keirakeiser asked 3/12, 2021 at 7:0

4

Solved

I have generated a CSR that includes the field subject alt names: openssl req -out mycsr.pem -new -key mykey.pem -days 365 When I inspect this it looks as expected with a new field present: X50...
Carmeliacarmelina asked 22/6, 2015 at 10:9

3

code example import aiohttp import asyncio async def main(url): async with aiohttp.ClientSession() as session: async with session.get(url) as response: print("Status:", response.stat...
Siple asked 17/10, 2021 at 14:31

20

Solved

I am using npm v1.0.104/node 0.6.12 on ubuntu - I am receiving the error copied below while attempting to install any new modules via npm (I tested socket.io earlier using http, not https though &a...
Coenzyme asked 9/3, 2012 at 0:1

16

Solved

I am having two Spring-based web apps A and B, on two different machines. I want to make an HTTPS call from web app A to web app B, however, I am using a self-signed certificate in Machine B. So my...
Mesotron asked 1/11, 2010 at 19:58

6

Solved

I get the following exception while using the scribe OAuth library. Caused by: javax.net.ssl.SSLException: java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterExc...
Fitts asked 11/1, 2013 at 14:50

3

Today i get an email from AWS that says "Update Your Amazon RDS and Amazon Aurora SSL/TLS Certificates by August 22, 2024". So after that i changed the certificate from rds-ca-2019 to rds...
Stodder asked 24/8, 2023 at 12:56

5

Solved

I am creating a web API in .NET Core. To debug it locally, I have created a console application that connects to my API. I am debugging in Linux. When connecting to my local URL at https://localho...
Goosefish asked 15/4, 2019 at 9:51

3

Solved

We currently have an Angular web app created for an online ordering utility. But we want to create a native app out of it, and we wanted to use Flutter. At first, though we just want to use a webvi...
Eindhoven asked 1/3, 2021 at 10:53

4

Solved

I want to install the '.crt' certificate I received from a certificate provider to my IIS 7.5 server. I have tried many times to install the .crt file by clicking on the 'certificates', and it stat...
Lustral asked 2/4, 2012 at 5:52

48

Solved

I am getting the following error: Exception in thread Thread-3: Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", lin...
Amongst asked 8/1, 2015 at 8:14

23

Solved

I am trying to connect to an IIS6 box running a godaddy 256bit SSL cert, and I am getting the error : java.security.cert.CertPathValidatorException: Trust anchor for certification path not found. ...
Admittance asked 26/7, 2011 at 4:22

7

I have a WCF web service running in IIS 7 using a self-signed certificate (it's a proof of concept to make sure this is the route I want to go). It's required to use SSL. Is it possible to use the...
Wobble asked 8/5, 2010 at 1:8

21

Solved

I have a problem with authorized SSL connection. I have created Struts Action that connects to external server with Client Authorized SSL certificate. In my Action I am trying to send some data to ...
Smiga asked 15/6, 2011 at 6:23

11

Solved

The following doesn't seem to do anything. ng serve --ssl true --ssl-key <key-path> --ssl-cert <cert-path> Creating the Certificate and key by providing them in the default ssl dir...
Dissuasive asked 29/8, 2016 at 15:59

2

Solved

I work with React.js and Node.js+Express to create a website. I use Google App Engine and Google Datastore for a database. Everything works fine on my local machine: React front end is able to acc...

4

I am generating a self signed certificate using openssl in Ubuntu. I want to use it for localhost rest server. But while verification, I am getting error : x509: certificate signed by unknown autho...
Insurer asked 8/6, 2022 at 12:52

7

Solved

I am running an ASP.NET Core 1.1 Web API in a Docker 1.13.1 container on Ubuntu 14.04. When the code attempts to retrieve some data from an HTTPS server, I get this certificate authentication erro...
Rania asked 17/2, 2017 at 8:0

5

Solved

I have used Let's Encrypt to allow me to set up SSL/HTTPS on my server. The issue is that I run a number of sub-domains too, which I included on the initial install, but looking back now - the cer...
Poodle asked 10/5, 2016 at 6:52

9

Solved

I am running XAMPP and have rebuilt my PHP server from the ground up, renamed the server from ServerV1 to ServerV2, and now attempting a basic POST request from Android volley, returns the error fo...
Jodyjoe asked 20/12, 2015 at 0:43

4

Solved

I'm getting this problem: The error that I'm seeing in Windows 10 Chrome Version 65.0.3325.181 (Official Build) (64-bit) is: Your connection is not private Attackers might be trying to steal your...
Reprise asked 25/2, 2018 at 0:35

4

Solved

I read a lot about this topic and all "detailed" explanations seem to miss a step: For the client to verify the server, it does the following (according to my understanding): It obtains ...
Out asked 13/2, 2016 at 0:24

5

I'm trying to update an SSL certificate on digital ocean with the command certbot renew But I get this error: Problem binding to port 80: Could not bind to IPv4 or IPv6. running netstat -plunt...
Kalasky asked 23/9, 2019 at 14:51

5

Solved

I want access a SOAP webservice url having https hosted in a remote vm. I am getting an exception while accessing it using HttpURLConnection. Here's my code: import javax.net.ssl.*; import java.i...
Alguire asked 15/3, 2017 at 10:14

© 2022 - 2024 — McMap. All rights reserved.