Adding Client SSL certificate to the WCF binding
Is there way to attach client side SSL file (.pfx) file in WCF binding? I don't want to use certificate store. ...
Is there way to attach client side SSL file (.pfx) file in WCF binding? I don't want to use certificate store. ...
I want to use SSL in my cross platform program. I decided to use OpenSSL. I have OpenSSL installed, and at this point I am looking through the code and documentation trying to figure out how to use the library. Do you have any resources or simple programs or tutorials that will walk me through integrating OpenSSL with my program? ...
I have been trying to figure out the best way to make a secure membership area. I considered doing something like https://www.users.examplesite.com/ but it seems like a lot of trouble to do, also I am using areas in the rest of the app and that looks like double the complication. Could I just assign the SSL certificate to the root and ...
https://alpha.pbp1.com/Property/Secure/test.htm <a href="http://alpha.pbp1.com/Property/Default.aspx">Home</a> This is a simple HTML page with a single href with the full absolute path to the website default page. When viewed from within our company network it renders as expected, with HTTP in the href. But when viewed fro...
Yesterday we had a major problem with our windows 2003 webserver and we had to move all our sites to a new machine. There were a couple of sites that used a SSL certificate and we cannot export these because the we cannot start windows on the broken machine. Is there a way to get these certificates to work on the other server? I have ac...
I host my ecommerce site with a 3rd party hosting company (LAMP). When I check my error logs I have a lot of these warnings: [Wed Jul 07 23:39:17 2010] [warn] (43)Identifier removed: Failed to release SSL session cache lock Does anyone know what is causing this and if it's something I should be worried about? I checked with the host...
I am running a asp.net mvc2 application on iis7.5 using a SSL certificate for port 443. but as soon as I add port 443 to the Bindings (on "Site Bindings") it wont browse to the site through the HTTPS scheme complainng of another process working. I have tried renaming port 80 to 8080 to no avail. Hope someone can help. All the best P...
Does anybody know any solution/walkaround to provide TLS/SSL support for TCP sockets in Silverlight x.x? ...
how can I get Expiration Date of Certificate by C# code? I need to get data about certificate in internet Option (-> content -> certificates); ...
I'm trying to make a simple server which listens on a port and authenticates with ssl. I have files server.crt server.key my-ca.crt obtained with a openssl tutorial (http://www.vanemery.com/Linux/Apache/apache-SSL.html). my-ca.crt is my own CA certificate, server.crt contains the x509 server certificate (signed with my-ca.crt) and ser...
Hi folks. I currently have a RESTful servlet running that returns json upon receiving a POST query. I would like to implement authentication over SSL, so that the user will first login and send his credentials so the servlet knows what level of authorization it has to return the data, but I'm not sure how to go about implementing this fo...
$ curl -I https://9.185.173.135 curl: (35) Unknown SSL protocol error in connection to 9.185.173.135:443 This is an secured page that I need to access. But I don't know how to obtain its certificate file. I tried to use Firefox, but it says couldn't get any ssl certificate once the url is entered. $ curl -I http://9.185.173.135 HTTP/1...
Hello. I'm wondering if I can recv/send data on a raw socket before wrapping it - I've looked through the documentation and searched for it but couldn't find anything specific. What I basically want to do: client, addr = listeningSocket.accept() client.recv(32) client.send(b'hello') client.setblocking(0) sslSocket = ssl.wrap_socket(clie...
Hello, I need to use SSL t make a connection to the server description : I'm working on a windows Application Project in which we use "Web Service" to communicate data with the db . the server side services are written in Java and I am doing the UI part in C#.Now I want to use SSL to have a secure connection with the server, but I can't...
I am currently trying to pull together a basic SSL server in twisted. I pulled the following example right off their website: from twisted.internet import ssl, reactor from twisted.internet.protocol import Factory, Protocol class Echo(Protocol): def dataReceived(self, data): """As soon as any data is received, write it back...
Hi, I'm pulling my hair out a little bit over an issue we're having on one of our project environment servers. I'm trying to run 2 different versions of our site, from 2 different code bases. The site has a secure and a non secure area. I can, as expected, create as many non secure sites as I wish. The problem I'm having is that I ca...
Hi, how to install SSL for Python 2.5 on Debian? I have tried: sudo easy_install ssl But getting: python setup.py build looking for /usr/include/openssl/ssl.h looking for /usr/include/krb5.h running build running build_py running build_ext building 'ssl._ssl2' extension creating build/temp.linux-i686-2.5 creating build/temp.linux-...
I have some resources I must access with SSL that use self-signed certificates. In general, most tools have a simple setting to allow these to be accessed without error or just a warning. However, it seems like the proper way to do this with the JVM is to import the signing certificate into a keystore as a CA. I have a groovy script I...
Hi All, I am trying to run a java client with 2way SSL which uses CAC card as keystore for the client. I have addded the following system property in my client program to make it work and change the java.security file to add pcks11 provider. System.setProperty("javax.net.ssl.keyStoreType", "pkcs11"); System.setProperty("javax.net.debug...
Hi All, I am trying to run a java client with 2way SSL which uses CAC card as keystore for the client. I have addded the following system property in my client program to make it work and change the java.security file to add pcks11 provider. System.setProperty("javax.net.ssl.keyStoreType", "pkcs11"); System.setProperty("javax.net.debug...