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.
0
votes
1answer
14 views
Some scripts stopped working after SSL installation
I use the following code to print the contents inside a div element. This worked fine for me until I installed a SSL certificate in my server. The code still functions if I access the page via ...
1
vote
0answers
9 views
Apache Tomcat 5.X HTTPS server configuration not receiving POST request data
I am facing a Tomcat Server configuration problem and need help urgently. Thanks in advance.
I have requested a certificate from GoDaddy and have configured the same with Apache Tomcat 5.x. Following ...
2
votes
0answers
14 views
Why 505 Http Version Not Supported on public WiFi?
I've been getting a 505 'Http Version Not Support' whilst trying to access Azure storage recently. It took me a while to figure out that it was only happening on public WiFi (e.g. First Great Western, ...
0
votes
0answers
11 views
How to prevent message dialog “myapp wants to sign using privateKey …” on OSX?
I've developed application which communicates with my own server over HTTPS. And I use .p12 certificate for authorization. The problem is that after I send first request on server I receive OSX's ...
0
votes
1answer
22 views
Self signed certificate honoring both, Machine Name & IP Address
I generated a self signed certificate on IIS 7.5. It got generated against the machine name. At present I am testing my website over the IP address. On accessing it on Chrome over https I get a ...
0
votes
2answers
18 views
SSL Error Twitter Request using HTTPS
consumer and token hash is defined in my code
access_token = OAuth::AccessToken.from_hash(consumer, token_hash)
url = URI.encode("https://api.twitter.com/1.1/statuses/update.json?status=awesome!")
...
0
votes
1answer
6 views
Android won't scroll https iframe
On Android using any https iframe src that is out of domain results in the iframe not scrolling:
<div style="-webkit-overflow-scrolling:touch;
height:300px;width:300px;overflow:auto;">
...
0
votes
0answers
4 views
https unavailable. Can I use http with custom port instead?
I want to use the USB feature in a newer Netgear router WNDR3400 to which I can connect an external hard-drive. I found a refurbished one at a great price and it seems to be slightly better in ...
0
votes
0answers
9 views
Best way to pass get variablesto a https ssl secured url and grab xml data to parse it
I'd like to grab xml data by passing get variables through an https ssl secured url and then parse it. What would be the best way to go about doing that and is there a solid tutorial with step by step ...
0
votes
1answer
11 views
htaccess which removes www and ensures https for multiple domains
I'm trying to setup my htaccess file to accomplish the 2 following things:
It needs to remove the www. from any domain
It needs to make sure that all domains use https
Right now this file controls 3 ...
0
votes
0answers
13 views
Using htaccess to force a directory to use HTTPS
I'm trying to use .htaccess files to force a particular directory to use https. I have:
RewriteEngine On
RewriteRule roster/([\ A-Za-z]+)/$ roster/roster.php?s=$1
RewriteCond %{HTTPS} off
...
0
votes
1answer
17 views
Smart card, PIN, Secure HTTP, Login and Downloading and manipulating the source html - need a suitable coding langugage
I am now motivated to explore a coding language so that I can make the best solution possible.
But I am not sure of the capabilities of all coding langugages, so I am asking for advice.
I want to ...
1
vote
0answers
22 views
This webpage contains content that will not be delivered using a secure HTTPS connection, although the server only provides a HTTPS connection
Calling a resource from a REST service causes the webbrowser to display the message:
The server on which the REST service is deployed (localhost) only provides a secured HTTPS connection. So I ...
0
votes
0answers
8 views
Proxy HTTPS without certificate with nginx
Is it possible to setup nginx so that it proxies a HTTPS connection without decrypting it?
I'm talking about something like this:
server {
listen 443 ssl;
server_name example.com;
...
0
votes
1answer
19 views
Can https fallback to http and security level of https
I am considering installing SSL/TLS for my domain. There are two questions that have been bothering me:
Is there any scenario where a https connection can fallback to http? So, for e.g. if my ajax ...