ssl

wp-facebookconnect ssl

Have one page that has an ssl cert. How can I get it to point to the script and add the xd_receiver_ssl that it says on http://wiki.developers.facebook.com/index.php/Facebook_Connect_Via_SSL with this plugin installed? Is there another way? ...

PKIX path building failed while making SSL connection

I'm integrating with a Merchant Account called CommWeb and I'm sending an SSL post to their URL (https://migs.mastercard.com.au/vpcdps). When I try to send the post, I get the following exception: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to f...

How do you enable SSL sessions for your HTTPS service?

Following on from the best answer here: http://stackoverflow.com/questions/548029/how-much-overhead-does-ssl-impose Is there a way to optimise SSL beyond a simple apache SSL install? From the best answer given on that page I infer that there is some way to set-up persistent SSL sessions over multiple calls (where there is less handshak...

How to ensure that Apache always serves a single page via HTTPS?

I would like to redirect all connections from htt_p://www.example.com/abc.html to HTTP_S://www.example.com/abc.html . What mod_alias or mod_rewrite commands would work for this? I've tried: RewriteEngine on RewriteCond %{HTTPS} =off RewriteRule $abc\.html^ https://www.example.com/abc.html [R] in both .htaccess and httpd.conf but that ...

What causes "Neither PUB key nor PRIV key:: nested asn1 error" when building a public key in ruby?

When building a public key using the OpenSSL::PKey::RSA module by passing it a .pem file, what is the cause for a response: OpenSSL::PKey::RSAError: Neither PUB key nor PRIV key:: nested asn1 error from /Users/Matt/projects/placepop/lib/apn.rb:48:in `initialize' from /Users/Matt/projects/placepop/lib/apn.rb:48:in `new' from /Users/Matt/...

Securing an ASP.NET Web Service using SSL, without dedicated IP address on the Server

I need to secure communication between my application and my Web Service. I own both the application and the Web Service, and I was wondering if it is possible to use HTTPS to do so. I don't need a certificate to prove to myself who I really am (!), so I don't want to buy an SSL certificate from a Certificate Authority. I just need to m...

Simple Java HTTPS server

I need to setup a really lightweight HTTPS server for a Java application. It's a simulator that's being used in our development labs to simulate the HTTPS connections accepted by a piece of equipment in the wild. Because it's purely a lightweight development tool and isn't used in production in any way at all I'm quite happy to bypass ce...

HttpGet with HTTPS : SSLPeerUnverifiedException

Using HttpClient, I receive the following error when attempting to communicate over HTTPS: Exception in thread "main" javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated. URI loginUri = new URI("https://myUrl.asp"); HttpClient httpclient = new DefaultHttpClient(); HttpGet httpget = new HttpGet( loginUri ); HttpResponse re...

iPhone: install certificate for SSL connection

I would like my app to install an SSL certificate on the device, giving it access to my https site. Any advice would be greatly appreciated. Thanks!! ...

How to completely script the process of importing SSL certificate and binding this certificate to a specific site

I have been looking around for a solution for this problem that works across different versions of Windows Server & IIS, but so far I couldn't find a reasonable solution, what I need is some sort of a script or a command line tool, that takes a certificate file (pfx) for example and then either using the same script or tool find a way to...

https turns to http when redirecting from one jsp page to other.

My application runs in SSL now, in one of my jsp page i have used response.sendRedirect("xyz.jsp"); , so now when redirect occurs https is converted to http. How should i fix this? ...

Can't connect to production Apple Push Notification server

We had no problem sending notifications to provisioned devices using the development certification and gateway.sandbox.push.apple.com. But now now that our app is in the store, it appears we can't even connect to the production apn server (gateway.push.apple.com) to send pushes, even when we're using the machines that created the certifi...

Redirect loop with SSL action filter in ASP.NET MVC

I am using an ActionFilter (see below) to detect whether or not 1. the current controller/action requires SSL and 2. SSL is currently being used, and redirect accordingly. This works fine locally (using a dummy cert in IIS 7) but once I get it up on the server I get an error indicating an infinite redirect loop. Any ideas? public cla...

Implementing SSL to My WebSite

What are the Steps I need to add SSL to my Website hosted at IIS 7 in Windows Server 2008? The application was Done in ASP.NET 3.5 and the application follows SOA (Service Oriented Architecture) with WCF services accessing data from SQL Server through a Business and Data Access Layer. ...

Connecting to MySQL with --skip-ssl from Rails app

When connecting to MySQL from shell line i need to add the option --skip-ssl From my rails app I can't connecto to the MySQL server. How can I add this option to the rails app? ...

CKEditor with SCAYT over HTTPS gives Security Warning

I've got a CKEditor WYSIWYG text and HTML editor control on an HTTPS/SSL web page. I just today enabled the SCAYT (spell check as you type) feature and now see a Security Warning when the page loads. It seems to be caused by these four files: http://svc.spellchecker.net/spellcheck31/lf/scayt/_base.xd.js http://svc.spellchecker.net/spe...

Turn SSLchecking off in M2Crypto in Python

Is there a way to turn off SSL checking so that WrongHost Exceptions are not generated when using SOAPpy in python. ...

determine if TCP connection uses SSL

Perhaps some server can handle both non-secure and secure protocols. Is there known way to determine if existing TCP connection secure or not? (I believe it is possible just monitor traffic and check if some text is readable, but maybe there is better or maybe more detailed suggestions?) ...

A decent SSL library for Python 2.5

I am tasked with migrating a server's networking from plain sockets to SSL in python 2.5, and I've run into a snag. It seems that just about no SSL library out there fully implements the socket interface, so the code we currently have can't be straight migrated. Specifically, I can't seem to find a library that supports the 'setblocking...

Connect to a web service which is behind an HTTPS proxy.

What is the .NET code to connect through the internet to a web service which is behind an HTTPS proxy. I am given: https:// - the url of the proxy https:// - the url of the webservice from the WSDL. two certificates - theirs and mine. ...