ssl-certificate

How to assign a SSL Certificate to IIS7 Site from Command Prompt

Can you advise me whether it is possible or not to assign a SSL Certificate to a website in IIS7 using the APPCMD application? I am familiar with the command to set the HTTPS Binding appcmd set site /site.name:"A Site" /+bindings.[protocol='https',bindingInformation='*:443:www.mysite.com'] and how to obtain current mappings %windir...

microsoft certificate and ssl

Hi, I have configured website in iis5.1 which is in xp prof. sp1 contains IE7. I posted a certificate request from CA which has windows server 2003 sp1 and got the certificate and installed.I configured ssl in xp machine and can aceess https:\ from the same machine. if i access the same URL(https:\mac6) it says" The page cannot be displ...

javax.net.ssl.SSLHandshakeException: certificate expired - Local or Remote?

I am receiving the following exception while trying to make an SSL connection to a web service. Does this error mean my local keystore/certificate is expired, or is it that I cannot trust the remote server because it has the expired certificate? javax.net.ssl.SSLHandshakeException: certificate expired at com.ibm.jsse.bs.a(Unknown S...

Converting a Java Keystore into PEM Format.

I am trying to convert into Java keystore file into a PEM file using keytool and openssl applicactions. But I could not find a good way to do the conversion. Any idea? Instead of converting the kaystore into PEM I tried to create a PKCS12 file first and then convert into relevant PEM file and Keystore. But I could not establish connect...

Will public key change on renewing a certificate?

HI, When i renew an SSL certificate will the public key change or be the same as the expired certificate? ...

What do I need to do to get IE8 to accept a self signed certificate?

We use self signed certificates on our intranet. What do I need to do to get IE8 to accept them without showing an error message to the user? What we did for IE7 apparently isn't working. EDIT: IE7 wouldn't show any errors if I put the certificate into trusted root certification authorities. IE8 seems to show errors even with the certif...

Importing SSL Certificate into Eclipse

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

Using SSL and SslStream for peer to peer authentication?

I need to provide secure communication between various processes that are using TCP/IP sockets for communication. I want both authentication and encryption. Rather than re-invent the wheel I would really like to use SSL and the SslStream class and self-signed certificates. What I want to do is validate the remote process's certificate...

SSL Certificate error

I'm having an issue with an SSL certificate on one of my websites that seems to only occur at one client site. Another of our SSL certificates is working perfectly for them despite both being associated with the same trusted root (VeriSign Class 3 Secure Server CA). The certificate that isn't working claims that it is not associated wi...

C# client connecting to a Java server over SSL

As a team project I need to connect from a C# client to a Java 6.5 SSL server, however when I get to the stream.AuthenticateAsClient line it hangs. C# connect code public static void connect(string server, Int32 port) { try { client = new TcpClient(server, port); stream = new SslStream(client.GetStream(), false); stream...

YUI Uploader + SSL + Firefox

If your server has SSL enabled, and you're using YUI uploader, is it possible to upload using Firefox browser? We are currently having problems with firefox but uploading with IE (7) seems to be ok. Any ideas why it fails in Firefox (Note: the certificate was already accepted ) ? Thanks, Franz ...

Embedded webserver and certs

I have an app with an embedded webserver. This webserver can now do SSL via the OpenSSL package :) Now to the cert issue. This app is sold, which I say because it's not just sitting on a server I own -- it gets installed on thousands of computers. I want my customers to be safe so I want them to use SSL as painlessly as possible. Ri...

Certificate Authority for myself/small organisation

I need a small CA software which meet following criteria: CLI Interface (we all really hate gui things for server software, don't we?) Issuing certificates for websites. So I just can install one root certificate on client machines to get rid of that warnings) Issuing user certificates (as p12 and other stuff, so I can authenticate usi...

"The parameter is incorrect." error using netsh http add sslcert

Following the instructions on "How to: Configure a Port with an SSL Certificate" in this link: http://msdn.microsoft.com/en-us/library/ms733791.aspx, I entered this command on the commandline (duh): C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC>netsh http add sslcert ipp ort:10.141.146.227:7001 certhash=5d48e604007b867ae8a69260a...

Why can't one SSL certificate be used for multiple machines?

Here is the situation. I am making changes to an application but I do not have test environment. There is a QA server for the testing team to use, but I would rather test the application on my local machine (deploying changes to that server might interrupt the testers). I have setup the environment on my local machine, but there is a ...

TFS command line and SSL/TLS security exception

Hello *, I am trying to use tf.exe command line to setup a new workspace. I don't like the idea installing Team Explorer and therefore required Visual Studio. Running tested command from the other machine where VS is installed causes security exception on this one since I am trying to connect to the TFS via https. I get the error strin...

Import certificate with private key programmatically

I'm trying to use the HttpListener class in a C# application to have a mini webserver serve content over SSL. In order to do this I need to use the httpcfg tool. I have a .pfx file with my public and private key pair. If I import this key pair manually using mmc into the local machine store, everything works fine. However, if I impor...

Intercept Http call to SSL certificate

Is there a way to intercept a call made by WebBrowser to SSL (within in an asp.net application)? I need to pass parameters to http-headers at runtime before the request is made. Example: if I type "http://test.com", the browser communicates with the server and returns "https://test1.com" as the secured url. I should be be able to inter...

ignore self-signed, expired ssl certificate in tortoise svn

Tortoise SVN will not let me access an svn repository that has a self signed and expired ssl certificate. Is there a config somewhere to tell it that I want to trust that certificate anyway? ...

Federated security scenario with HTTPS

I'm planning to build a set of web services which are going to use geneva-based custom STS to authenticate users. Both STS and relying services will belong to the same party, so the whole goal of going to federated security is providing Single Sign-On point and retrieving all the authorization information only once. Both STS and relying ...