Tagged Questions
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.
20
votes
0answers
432 views
IE10 websocket allowInsecureFromHttps
I've got a websocket implementation that I'm trying to make work across browsers.
At some point, we'll migrate to wss:// (i.e. encrypted websockets) but for now, it's all ws://. When we serve a ...
6
votes
0answers
865 views
“gnutls_hanshake() failed(): A TLS packet with unexpected length was receive” in my school
This problem happens on my Ubuntu 12.04, Git version 1.7.9.5
There will always an error message "error: gnutls_handshake() failed: A TLS packet with unexpected length was receive..." while I was ...
5
votes
0answers
287 views
(1002) - No available client connector supports the required protocol: 'HTTPS'
I'm trying to set up a HTTPS client on Android using Restlet but I get this error:
Internal Connector Error (1002) - No available client connector
supports the required protocol: 'HTTPS'. Please ...
4
votes
0answers
1k views
Bypass kCFStreamErrorDomainSSL error for self-signed certificates on iOS 7
I am trying to load a HTTPS web page, which has a self-signed certificate, in to an UIWebView. Using tips like this one, or this one, it works under iOS 6. The same does not work in iOS 7.
As per the ...
4
votes
0answers
572 views
Simple example for nodejs behind a proxy
Here is a simple nodejs script for using node as an https client to interact with the outside world. How do you modify it so you don't get "ECONNREFUSED" errors when you run it behind a corporate ...
4
votes
0answers
358 views
flowplayer mp4 not working over https
I have flowplayer set up and have encoded an mp4 using h264. When I run locally (http) the video plays great. When I run on our development server (https) flowplayer shows a black screen and plays ...
4
votes
0answers
630 views
HTML5 Video on IPad Safari using HTTPS
I'm trying to play an .mp4 video on an iPad (Safari browser) using the HTML 5 video element. Everything works fine using HTTP. However, the video will not load (or play) when accessed using HTTPS. If ...
3
votes
0answers
44 views
Gravatar No Longer working over https
For months we have been using a different default gravatar image for members of the site but suddenly this is no longer working.
Here is the error "we cannot complete this request remote data could ...
3
votes
0answers
72 views
Using Greasemonkey to avoid “loading mixed content” warning in Firefox
There is an issue with all Stack Exchange sites: Even when Stack Overflow is browsed using HTTPS all custom avatars are fetched via HTTP (although they are also available via HTTPS).
The question was ...
3
votes
0answers
265 views
Node.JS UnhandledException with a HTTPS request
I need some help trying to stop node from throwing this error, or at-least understand why I can't seem to be able to catch it:
events.js:72
throw er; // Unhandled 'error' event
^
Error: ...
3
votes
0answers
235 views
Node.js app continuously consume memory without freeing it
I'm facing a weird situation. I wrote an application that is performing a HTTP GET request every five minutes. Something like this:
// pingy
'use strict';
var https = require('https'),
url ...
3
votes
0answers
85 views
Detect TLS cipher being used in a incoming HTTPS request on IIS 8
A C# web application is hosted on IIS, and is served over a HTTPS connection only.
It is possible to detect if a secure connection is being used, but I can't identify a way to determine which cipher ...
3
votes
0answers
87 views
Connecting to my SVN Repository using HTTPS
I'm trying to set up my SVN server on Ubuntu 12.04 so that I can access it with HTTPS instead of HTTP that I'm using now.
I've tried to set it up with HTTPS, and it works with a local connection. I ...
3
votes
0answers
165 views
Sp Services not working with Https
I have a Sharepoint 2010 installation. I am using Sp Services 2013.01 to get find if the current user is in a certain Sharepoint group. this works great if the url is not set to https. When the url ...
3
votes
0answers
662 views
Google Website Translator provokes mixed content error
Since yesterday, I got mixed content errors on my website in both Chrome and IE. The error is provoked by the Google Translate script included in the header:
<script type="text/javascript" ...
3
votes
0answers
380 views
Unable to get maven to download from HTTPS URLs behind proxy
From the dependencies that I specify in my pom.xml, the ones that use HTTP URLs gets downloaded but the ones that use HTTPS URLs fails saying:
SEVERE: Proxy authentication error: Credentials cannot ...
3
votes
0answers
832 views
How to use a self-signed certificate with PhoneGap
I want to bring up a quite old question on how to enable phonegap to be able to communicate with a server via https using a self-signed certificate.
The solution proposed in this answer allows me to ...
3
votes
0answers
6k views
Java https proxy (using https.proxyPort and https.proxyHost)
I was making a Java application that relies on setting http.proxyPort and http.proxyHost. There are two processes: One is the regular program, the other is the proxy. I have a simple socket listener ...
3
votes
0answers
306 views
How to set up Node HTTPS on Appfog
The way the appfog documentation reads is that as long as you use their provided domain you will get free SSL.
But as far as I understand things you need a .KEY and a .CERT file in order for NodeJS ...
3
votes
0answers
912 views
Using NSURLConnection for SSL with a self signed certificate
I'm using NSURLConnection for HTTPS (SSL) communication with my service.
I'm trying to block "man in the middle" scenario (SSL proxies that steal data),
In a self signed server SSL authentication.
...
3
votes
0answers
217 views
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 ...
3
votes
0answers
4k views
XML-RPC HTTPS POST USING MSXML2.ServerXMLHTTP.6.0 VB 6
RPC using MSXML2.ServerXMLHTTP.6.0 in VB6
the server I am communicating with is using SSL trough port 40052 and a
self signed CA, I have tried to make it work for about 2 days now before posting, I ...
3
votes
0answers
130 views
how to log OUTGOING https requests from node within webstorm
I'm hacking together some node.js code that calls an external webservice and I'm getting bad results. I'd like to log the raw request and response so that I can inspect it.
Here's the thing: I'm ...
3
votes
0answers
251 views
Selenium RC and Internet Explorer 7 with rspec for HTTPS and HTTP connections
We test our rails web application with rspec and use the selenium-client (gem version 1.2.18) API in our rspec tests to let selenium RC server (version 2.21.0) steer internet explorer 7 under AP to ...
3
votes
0answers
404 views
Does iOS send HTTPS requests through the HTTP proxy?
I am trying to write up an HTTP proxy server in node.js, and I have successfully managed to route unsecure HTTP connections through it. But when applications (on my iOS device) use HTTPS for APIs 'n ...
3
votes
0answers
448 views
How does (NSURLCredential *) proposedCredential in iOS work?
Morning
I've been working on creating a iOS application that uses stored credentials in NSURLCredentialStorage for a specific protectionspace. I've now gotten to the point where I'm using ...
3
votes
0answers
4k views
Consuming RESTful service over https with certficate using Java
I'm a new user to REST services. I need to consume a RESTful API service generated with Jersey. The problem comes because that service is hosted on remote host and it requires https access with ...
3
votes
0answers
1k views
Configuring SSL (https) for ws2007FederationHttpBinding Endpoint 404 No Endpoint found
Another WIF related problem - can anyone point me in the direction of how to configure https in wcf for a ws2007FederationHttpBinding endpoint. I have the certificates and bindings all set-up in IIS, ...
3
votes
0answers
176 views
Does NSURLConnection support HTTPS session resumption?
I am using NSURLConnection in an iOS app for making HTTPS connection to the server. I want to make those connections faster.
Does the framework support session resumption?
3
votes
0answers
186 views
What is Chrome's behavior when no Connection header is set for SSL connections?
My server is not sending back a Connection header for a SSL page and I
am noticing that the connections are getting closed after each use
instead of being kept alive.
...
3
votes
0answers
2k views
IE9 Error SEC7111: HTTPS security is compromised after redirect (plus “only secure content” message)
I love it when something is working in other browsers and then ya fire up IE and it all goes poof.
I'm getting the following error:
SEC7111: HTTPS security is compromised by ...
3
votes
0answers
2k views
Is it possible to store SSL certificate in android webview
In the app I'm working on, I have to make an HTTPS post to a web server. I was getting certificate not trusted errors when i do it directly(without webview).
But when i use android webview to load ...
2
votes
0answers
13 views
How do I selectively enable SSL in Rails 4 for certain paths?
How do I turn SSL HTTPS off for a given path? I saw Enable SSL for certain resource actions but that was to enable HTTPS for a single path. My config has
config.force_ssl = true
However when I ...
2
votes
0answers
21 views
centOS, Jenkins, Firefox & Selenium GRID - HTTPS certificate issue
I have Jenkins running headless on a remote machine(centOS). I am trying to run some automated login tests using Selenium Grid (with both hub and a node on same centOS machine) on a development ...
2
votes
0answers
42 views
Why is SSL slowing down my Web Service response?
I have a full-scale Website running with ColdFusion 8 on IIS 6. The website performs up to expected standards - a simple HTML page loads in a matter of milliseconds.
I am adding a couple Web Services ...
2
votes
0answers
21 views
How to determine if SocketIO is using SSL/Encryption?
PROBLEM: Before I start sending OAuth tokens back and forth, I want to test that my sockets are communicating over an encrypted SSL connection.
My Setup: Since my hosting is done on Modulus, I have ...
2
votes
0answers
40 views
Encryption of SOAP messages (TransportBinding versus HTTPS URI)
What is the benefit of using of TransportBinding within policy element instead of explicitly specifying an HTTPS endpoint in the "address location" element of the WSDL file?
As I see from intercepted ...
2
votes
0answers
66 views
Qt5 QWebView how to send client certificate?
I use Qt5's QWebView to load a https website, which need client certificate. I have installed client certificate and used chrome and ie browser to test ok. But it didn't work in the QWebView.
...
2
votes
0answers
417 views
ajax call to server with self signed certificates.
I need to make an ajax call to a server which uses a self-signed certificate.
Using the --insecure option does in curl helps in doing so.
But i need to make ajax calls, much like the $http requests ...
2
votes
0answers
94 views
Check if SSL Certificate is present or not in iOS?
I have an API end point which has an SSL Certificate (secure https API). My iOS app bundle also includes that certificate so when I try to reach the API end point, objective C verifies if the ...
2
votes
0answers
49 views
Is loading scripts or other resources via HTTPS on a HTTP page problematic?
I'm aware of protocol-relative URLs, which are usually the right solution for serving scripts or other resources on pages that may be loaded using HTTP or HTTPS.
However, I have a script that I would ...
2
votes
0answers
65 views
cannot connect to server using BKS keysore
I my android application am using SSL for client authentication and i am using BKS format keystore and MyHttpClient class looks as below,
public class MyHttpClient extends DefaultHttpClient {
...
2
votes
0answers
42 views
Proper way to create ssl socket
I am trying to create a simple secure ssl web server, but I do not know if the server is working properly. It makes the connection just fine, but I want to know if I am accidentally sending ...
2
votes
0answers
242 views
Git hangs up during fetch or clone
I'm using git 1.8.4.2 on a VM (running up-to-date archlinux), let's call it machine A.
The remote origin is on a local network and works through https with authentification.
I can push to it without ...
2
votes
0answers
341 views
WCF http service via https load balancer
I have a WCF webservice that can be accessed via a http endpoint. Now, this service shall be published with a load balancer via https. Clients are created in .Net via svcutil.exe but the WSDL is also ...
2
votes
0answers
49 views
Providing message and info text for SFCertificateTrustPanel
When using a SFCertificateTrustPanel to display the result of a SecTrustRef object, it defaults to the message:
A failure occurred during certificate trust verification. Please specify the trust ...
2
votes
0answers
95 views
AuthenticateAsServer is Slow
sslStream = new SslStream(tcpclientStream, false);
Stopwatch c = new Stopwatch();
c.Start();
try
{
sslStream.AuthenticateAsServer(_certificate, false, SslProtocols.Tls | SslProtocols.Ssl3 | ...
2
votes
0answers
74 views
Microsoft MSMQ on Windows Server 2008 over HTTPS
We are trying to get MSMQ working over HTTPS. Messages sent over the internet to an Windows 2008 R2 server sitting on the cloud at rackspace works correctly when sent via HTTP. We have a certificate ...
2
votes
0answers
89 views
Error 401 when communicating via REST
I have a problem with communication via REST services from one provider. Unfortunately, I get an HTTP 401 Unauthorized.
RestTemplate rest = new RestTemplate();
...
2
votes
0answers
436 views
Java popup on HTTPS connection with an applet and selfsigned server certificate
I have a signed applet compiled in 1.6 (with 1.5 compatibility) that make some HTTPS get connections.
The HTTPS certificate on the server is selfsigned, but the applet embeds a .pem file containing ...