Questions tagged [https]

Hypertext Transfer Protocol Secure (HTTPS) is a combination of the Hypertext Transfer Protocol with the SSL/TLS protocol to provide encrypted communication and secure identification of a network web server.

Hypertext Transfer Protocol Secure () is a widely used communications protocol for secure communication over a computer network, with especially wide deployment on the Internet.

Technically, it is not a protocol in itself; rather, it is the result of simply putting SSL/TLS between Hypertext Transfer Protocol () and , thus adding the security capabilities of / to standard communications.

  • HTTP: HTTP | TCP | lower-layer-protocols
  • HTTPS: HTTP | TLS/SSL | TCP | lower-layer-protocols

HTTP uses the client/server computing model (), where a client makes a request of a server for access to a file or to pass a message to a program that runs in the server computer. The server takes the requested action and returns a response.

See the tag for more information on Transport Layer Security () and its predecessor, Secure Sockets Layer ().

Resources

25003 questions
7
votes
7 answers

ASP.Net (C#) How to POST to HTTPS from an HTTP page

C# 3.0 ASP.Net 2.0 IIS6 I have a regular [non-https] page. There is the standard one ASP.Net form on the page. There are two "areas" of functionality on the page though. Login and "Get Quote". The login page needs to POST to HTTPS while the…
Jason V
  • 837
  • 9
  • 18
7
votes
2 answers

How to redirect http -> https on aws classic load balancer?

I have a classic load balancer on beanstalk and configured nginx instances. I want to redirect http to https requests. I setup my load balancer listeners to redirect to port 80 to its instances. I created a file in .ebextensions/nginx_config.config,…
7
votes
1 answer

Chrome says SSL invalid, but certificate is valid

I created a front-end hosted at www.example.com through netlify. The front-end makes API calls to a load balancer address hosted on AWS. Through Netlify, I set up an A record, so that server.example.com points to the load balancer. In Amazon…
a94
  • 564
  • 1
  • 7
  • 16
7
votes
2 answers

Not able to build grails 2.3.7 project since the maven central repository has moved to https

I am not able to build my 2.3.7 grails projects since the maven central repository has moved to https. I tried the recommandations on this post : Requests to http://repo1.maven.org/maven2/ return a 501 HTTPS Required status and a body However I'am…
Alioune
  • 71
  • 1
  • 2
7
votes
0 answers

Docker .net core The SSL connection could not be established exception

I'm trying to connect https endpoints from docker container. I have created the project using latest .net core web api 3.1 When I'm consuming https endpoint from container i'm randomly keep getting exception as Exception:…
suresh rajput
  • 169
  • 2
  • 9
7
votes
1 answer

HttpOperator or HttpHook for HTTPS in Airflow

I'm working on a little proof of concept about Airflow on Google Cloud. Essentially, I want to create a workflow that download data from an REST API (https), transform this data into JSON format and upload it on a Google Cloud storage unit. I've…
Dataland
  • 91
  • 1
  • 3
7
votes
1 answer

How to get WCF Service Running over SSL?

I'm running a C# web service in IIS6 and trying to get it to work over SSL. When doing a tcpdump it shows the initial call as https but every other call over http. My SSL certificate is self signed and https works fine in my web browser. I'm…
Eggo
  • 71
  • 1
  • 2
7
votes
4 answers

Using google map in my website (https secured) shows error

My website uses https secure pages, but when I use Google map API to bring in a map inside my website, it shows error (like webpage contains insecure items).But if I removed this Gmap api the error is gone. Is there any way like I can use google map…
balanv
  • 10,686
  • 27
  • 91
  • 137
7
votes
1 answer

How to turn off HTTPS on gRPC server

How can I turn off HTTPS on gRPC server? Is there any option?
Silver Origami
  • 133
  • 1
  • 8
7
votes
1 answer

Is a link without the protocol valid XHTML? i.e.

Is it valid XHTML / good practice to have links of the following form? //www.example.com/foo/bar.html If the current page is HTTP, then the link points to: http://www.example.com/foo/bar.html If the current page is secured under HTTPS, then the link…
BMiner
  • 16,669
  • 12
  • 53
  • 53
7
votes
3 answers

Wildcard subdomains on appengine over https on firefox

When I go to https://wild.rileylark.appspot.com with chrome, I get the nice "this is going great" icon. When I use firefox 4, I get the "omg, you're effed" message: wild.rileylark.appspot.com uses an invalid security certificate. The…
Riley Lark
  • 20,660
  • 15
  • 80
  • 128
7
votes
1 answer

SEVERE: Failed to load keystore type JKS with path webapps/FT.keystore due to signed overrun, bytes = 128 on TomCat 6 startup

I am trying to configure Tomcat so as to accept HTTPS requests. The problem is that when I start Tomcat, I have the following exception : SEVERE: Failed to load keystore type JKS with path webapps/FT.keystore due to signed overrun, bytes = 128 I…
taktako
  • 81
  • 1
  • 1
  • 2
7
votes
1 answer

Use Jest to test secure cookie value

Previously I had Jest code to test for the value of a non-secure cookie. It looked like this: expect(Cookie.get('myToken')).toBe('tokenvalue'); (the Cookie in this instance is using the js-cookie api) However, I tried to update how I set my cookie,…
Danny
  • 73
  • 1
  • 3
7
votes
2 answers

start-server-and-test - Doesn't work with https for webpack-dev-server

I am using create-react-app and I am running my development webpack server in https. So running npm run cypress:open, I would expect My application to run in https://localhost:3000 Once the server is up, the cypress launcher to run on it. Only the…
PCK
  • 1,254
  • 6
  • 20
  • 37
7
votes
0 answers

axios: Error: Client network socket disconnected before secure TLS connection was established

I'm trying issue a post to a soap web service at following url https://xxx.xxx.gov.ar/AntecedentesService/AntecedentesService.asmx and I get the following error: Error: Client network socket disconnected before secure TLS connection was…
opensas
  • 60,462
  • 79
  • 252
  • 386
1 2 3
99
100