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

22980 questions
7
votes
2 answers

Why my WSDL still shows basic http binding with the location value of http?

I enabled https binding, but my WSDL has soap address of http. Any ideas why? Thanks!
WinFXGuy
  • 1,352
  • 7
  • 23
  • 42
7
votes
1 answer

Loading KMZ file in an HTTPS website using Google Maps API v3 but the image overlays that the KMZ file has are being called through HTTP by google

As the title says, I have a KMZ file that is being loaded well in Google Maps API V3 but the images found in the KMZ file are being called through HTTP but the site I have is HTTPS. The API script is being called through HTTPS and even the KMZ Url…
kamadake
  • 71
  • 3
7
votes
2 answers

Use HTTPS only for certain pages in servlet based webapp

I have a servlet based webapp running on Tomcat 6 server. The URL scheme is HTTPS. The entire site is currently being served on HTTPS. But what I would really like to do is setup HTTPS only for certain operations like purchase and login. Is there…
Keshav
  • 4,248
  • 8
  • 26
  • 48
7
votes
2 answers

Haskell Could not find module `Network.HTTP.Conduit'

I can't get this import to work in haskell. import Network.HTTP.Conduit When I try to compile I get the following error: $ ghc Play.hs Play.hs:1:8: Could not find module `Network.HTTP.Conduit' Use -v to see a list of the files searched…
Joe
  • 1,514
  • 9
  • 18
7
votes
6 answers

Google Calendar can't subscribe to icalendar feed over https?

Would someone happen to know if Google Calendar has some problems subscribing to iCalendar feeds served on a secure https-address? I'm developing a website running on an https-address that has an iCalendar feed that users can subscribe to. The feed…
Rolf
  • 984
  • 4
  • 11
  • 25
7
votes
1 answer

How does SSL actually encrypt information?

I just recently set up SSL on my website's account creation page. I'm looking to expand this further to my entire site. I had a question, though. How does SSL encryption actually work and protect data in transit? Furthermore, what methods are…
Steve
  • 2,702
  • 4
  • 24
  • 35
7
votes
4 answers

check https status code ruby

Is there a way to check for an HTTPS status code in ruby? I know that there are ways to do this in HTTP using require 'net/http', but I'm looking for HTTPS. Maybe there is a different library that I need to use?
locoboy
  • 34,978
  • 62
  • 174
  • 253
7
votes
2 answers

IIS7 cacheControlMaxAge attribute not working

In IIS 7.5 I have set the cacheControlMaxAge to be one year like so
JK.
  • 20,010
  • 29
  • 124
  • 204
7
votes
2 answers

How to work around POST being changed to GET on 302 redirect?

Some parts of my website are only accessible via HTTPS (not whole website - security vs performance compromise) and that HTTPS is enforced with a 302 redirect on requests to the secure part if they are sent over plain HTTP. The problem is for all…
c2h5oh
  • 4,117
  • 1
  • 18
  • 30
7
votes
3 answers

Switching from http to https. Invalid certificate

I have an app that connects to my home routers web interface. I want to convert this to use https instead of just http. I was originally using ASIHttpRequest, but as it's no longer supported i'm switching over to AFNetworking. The problem is,…
Darren
  • 9,325
  • 19
  • 83
  • 140
7
votes
1 answer

getHttpResponseCode() returns -1 in android 2.2

In my android app, I am trying to pull data from server by doing a POST request. I'm using HttpURLConnection class to make the requests as Apache's HttpClient is no longer maintained by android. Here's what I'm doing. private boolean callWS() { …
Sudarshan Bhat
  • 3,722
  • 2
  • 24
  • 51
7
votes
2 answers

What URLs on an https page need to be https?

I did a search and could not find an answer on here to my question. What I am confused about is what URLs on an https page need to be https, as opposed to http. I am making a series of pages my website that must be accessed over https. At the top of…
Nate
  • 22,356
  • 31
  • 115
  • 196
7
votes
1 answer

"gnutls_handshake() failed(): A TLS packet with unexpected length was receive" at school

This problem happens on my Ubuntu 12.04, Git version 1.7.9.5 There appears always an error message "error: gnutls_handshake() failed: A TLS packet with unexpected length was receive..." while I am using Git with HTTPS protocol via the network of our…
Colin Su
  • 4,424
  • 2
  • 17
  • 19
7
votes
2 answers

How to use WSGI to reroute a user from http to https

Original Question App Engine SDK 1.6.5 Python 2.7 webapp2 I have implemented webapp2 schemes to secure pages to https. The issue is that when a user goes to say http:// site/login instead of https:// site/login they get a 404 error due to the…
Mark Finch
  • 776
  • 4
  • 16
7
votes
2 answers

Redirect https to non-www and http to www

I need a combination of redirects to achieve the following: To redirect http://example.com to http://www.example.com, while redirecting https://www.example.com to https://example.com. I would like to force the www prefix do the domain name when the…
Zarco
  • 81
  • 1
  • 2
1 2 3
99
100