ssl

Error commiting response java.io.IOException: Broken pipe at sun.nio.ch.FileDispatcher.write0(Native Method)

I encounter this error after a number of https requests. Anyone have any idea what could be the reason? It seens to be related to SSL. But previously it was working fine. I really don't understand what could have caused this issue Error commiting responsejava.io.IOException: Broken pipe at sun.nio.ch.FileDispatcher.write0(Native Meth...

Apache with SSL - How to convert CER to CRT certificates?

I need to setup Apache 2 server with SSL. I have my *.key file, but my certificate issuer has provided me with a *.cer file. In all documentations around the net, they are for *.crt certificates. Please let me know, are *.cer same as *.crt. If now, How can I convert CER to CRT format? ...

huge svn checkout made apache (dav_svn) consume all memory on server - any tips?

Are there any settings in apache2/dav_svn/ssl/subversion on the server that would make the whole perform better (or at least not consume all memory) on big checkouts? I'm especially interested in suggestions on how to keep memory consumption down. Reason for this question: Last week we had an issue with our svn server - it stopped res...

Where can I find an introduction to SSL with OpenSSL?

I want to learn about the nuts-and-bolts of using SSL to secure client/server communication. Is there any documentation, anywhere, regarding how to do this with OpenSSL? The best I've been able to find so far is the source code for stunnel (http://www.stunnel.org/)... To be more precise, I want the client to be able to connect with th...

Why did I get “Error commiting response java.io.IOException: Broken pipe at sun.nio.ch.FileDispatcher.write0(Native Method)” with SSL

What is the reason for encountering this Exception: Error commiting responsejava.io.IOException: Broken pipe at sun.nio.ch.FileDispatcher.write0(Native Method) I encounter this exception when i do a page redirect from http to https. And the strange thing is that i can access https in the first 10 to 20 requests. But subsequent request...

Is a SWF whose src uses HTTPS secure?

Here is a scenario: I am embedding form.swf in http://somesite.com/page.html. The SWF is loaded from https://mysite.com/form.swf and submits to https://mysite.com/secureform.php. So, is the transmission to the server secure? ...

How to clear SSL state in browser when user's session expires?

I'm working on an ASP.NET application where our users authenticate using client certificates over HTTPS. Our users are only using IE7. Once a client certificate has been used to authenticate successfully it stays in the browser's SSL cache until the process is closed or the user manually clears the SSL cache. We want to be able to clear...

Is it possible to do secure sockets (not https) with silverlight 2/3 ?

I need to do push feed to clients (not through polling), to silverlight clients fast and securely, is it possible to do secure sockets with silverlight ? ...

Make seems to think a prerequisite is an intermediate file, removes it

For starters, this exercise in GNU make was admittedly just that: an exercise rather than a practicality, since a simple bash script would have sufficed. However, it brought up interesting behavior I don't quite understand. I've written a seemingly simple Makefile to handle generation of SSL key/cert pairs as necessary for MySQL. My goa...

Configuring Mass Virtual Hosting + SSL on development machine

Is there a way to use this, or something like it, for SSL enabled hosts? VirtualDocumentRoot /www/vhosts/%0/public I want to avoid having to configure Apache every time I start working with a new domain on my development box. It would be nice to just add a directory, follow standard naming conventions, and be able to automatically acc...

How can I programatically configure a virtual directory to require SSL using IIS 6?

How can I programatically configure a virtual directory on IIS 6 to require SSL and client certificates from a starting point of having a suitable certificate already in the local certificate store, but, the current website (e.g. Default Web Site) having not been set up to use certificates? I know how to do this using the inetmgr GUI, b...

Determine SSL connection behind a load balancer

Hi all: Looking for best practice here. We deal with SSL connection at our load balancer level and hence all the connection from our load balancer to our web servers are http. With that we have no way of telling what kind of connection the client is making to our web server since all connection is through http. We currently have 2 so...

How do I access a third party component using ASP.NET and a JKS certificate ?

I need to access a third party application that requires a JKS Certificate (which I have). My client application is an ASP.NET one. How do I go about this? (I would have liked to provide more information, but unfortunately I have none!) ...

Some SharePoint pages serve as http in https environment

I have a WSS 3.0 system using SSL where every page is supposed to be served as https. Almost all pages do come out as https, but in certain cases I click on a link and that brings up an http version of a page (which does not load). In those cases I have to put the 's' in by hand to get the page to load. Places where this happens are: /...

Apache + SSL Error 336027900

I was reviewing the logs for my companies servers today and I discovered that there appears to be an error 336027900 logged every 5 minutes. This is what the log shows: [Wed Mar 25 15:10:19 2009] [info] [client 127.0.0.1] Connection to child 3 established (server localhost:443) [Wed Mar 25 15:10:19 2009] [info] Seeding PRNG with 656 by...

Importing SSL Certificate into Eclipse

How do you import an SSL certificate created by java into a project in Eclipse? ...

Java web start w/ SSL deployed in Glassfish

I've been trying to set up SSL for our Java EE application clients deployed in Glassfish (with Java web start), but after some reading I reached this page: Does someone has any experience trying to achieve the same thing as me? I've also considered JBoss, but Glassfish works really neat with Netbeans etc, and we really don't want to cha...

Ensure page is only accessed via SSL

How do I ensure that my users can not physically type in http: to bypass my SSL and ensure that every page is https:? Possibly a redirect on my master page? ...

Removing www from url in IIS 6

I have an SSL certificate setup for www.mydomain.com. I'm having a strange issue in IIS 6. When I navigate to www.mydomain.com everything works fine. Since the www. part is what my ssl certificate is registered under I get no issues. Hwoever, all of my links in my site take me to mydomain.com/mylink which causes a cetificate error becaus...

SslStream.DataAvailable not a valid function.

I am migrating C# code from using a NetworkStream to SSLStream, however where I use stream.DataAvailable I get the error: Error 1 'System.Net.Security.SslStream' does not contain a definition for 'DataAvailable' and no extension method 'DataAvailable' accepting a first argument of type 'System.Net.Security.SslStream' could ...