ssl

JVM to ignore certificate name mismatch

I know there were a lot of questions/answers about how to ignore SSL error in the code. On our dev region dev.domain.tld we have configured a app server over SSL. The certificate that is displayed is for somedev.domain.tld. There is no way to change the certificate, it will always be a domain mismatch. So when I deploy a web-service ...

Objective-C SSL Synchronous Connection

Hello, I'm a little new to objective-C but have run across a problem that I can't solve, mostly because I'm not sure I am implementing the solution correctly. I am trying to connect using a Synchronous Connection to a https site with a self-signed certificate. I am getting the Error Domain=NSURLErrorDomain Code=-1202 "untrusted serve...

test secure login and signup over SSL

I have implemented secured login and signup in my website.It working.Now I want to test it.I am not sure how to test whether it is correctly secured. ...

C# Secure Sockets (SSL)

LS, I was planning on writing a wrapper around the System.Net.Sockets.Socket class, because I don't feel like using the SSLStream class because of the negative impact on performance. I found an article which does exactly what I want, but on Windows Mobile. (Link: Enable SSL for managed socket on windows mobile) [Edit] Apparently, the...

ShoutCast over SSL

So I've gone ahead and set up my ShoutCast server DNAS and set my DSP in Winamp on my host computer. The server listens on port 8000, so per some instructions I installed an output plugin for winamp (Shoutcast DSP) and used 8000 and the password to connect. Server accepts the connection. Now, what the heck do I do now? My host computer...

IIS 7.5 FTP SSL not working

Hello! I have got a couple och virtualftp sites setup that works just fine with regular FTP connection. In the recent days we have bought and installed a verisign certificate. When i choose to connect via FTPES i get the certificate information, and can approve it. But when it comes to listing the home directory it fails. This works whe...

Advice on Session var and Shared SSL

Hi, I got a client which is website is under SSL only on the payment proccess. But he bought shared SSL so the actual domain is different (although I think its the same server). So when a user is logged in at for example: www.mydomain.com/login.php and tries to buy something he redirected to https://secure20.livessl.com/mydomaincom/pay...

how to setup ssl module for google-app-engine..

i floow this step by step: http://beautifulisbetterthanugly.com/posts/2009/aug/19/compile-ssl-115-python-25-or-lower/ but not successful ,and this is my error: how do do this , thanks updated and i import successful when 'cd' to 'build\lib.win32-2.5', my new problem is : how to import it successful when i run 'python' on oth...

Connecting to a Websphere MQ in Java with SSL/Keystore

I'd like to connect to a Websphere 6.0 MQ via Java. I have already working code for a "normal" queue, but now I need to access a new queue which is SSL encrypted (keystore). I have been sent a file called something.jks, which I assume is a certificate I need to store somewhere. I have been searching the net, but I can't find the right...

How can I set CURLOPT_CAINFO globally for PHP on Windows?

I understand that I can set the option on any specific instance, however what I would really like is to set something up php.ini or somewhere similar which will handle this across all projects and all instances. Does anyone know a way for me to accomplish this? EDIT: I am particularly interested in a solution which will allow for the c...

gwt ajax ssl login

i have GWT AJAX code but server side is PHP not JAVA. Now i need to login to server side PHP server. but i need to connect with SSL. possiblity of solution i am thinking: change the http to https:// PHP server side LAMP or XAMPP must have ssl support. are they correct? if there are some missing configuration then can anybody inform...

SSO and SSL Certificates

I was ask to use a different SSL certificate for my SSO web service and a different SSL certificate for my website. Why would I need a different SSL certificate when both the website and webservice are under the same IIS? ...

SSL HandShake on Java Client

I have a very basic doubt in SSL HandShake. Assume that we have a server S which uses self signed certificates. I write a Java client C which connects to the S. When C connects to S, C gets certificates from S and saves them to its truststore and the remaining part of the communication proceeds. After some time I use the same C to connec...

Tomcat 5.5 and ASP site under IIS using SSL

I've been working on migrating our companies' website from it's original server to a new one and am having two different but possibly related problems. The box this is sitting on is a Windows 2003 server x64 running IIS 6. The Tomcat version is 5.5.x as it was the version the original deployment was built on. There are two other sites on...

Apache HttpClient 4.0 Ignore SSL Certificate Errors

How to bypass invalid SSL certificate errors with Apache HttpClient 4.0? ...

How to Configure SSL over Database in Spring?

Hi, I want to add SSL security in the Database layer. I am using Struts2.1.6, Spring 2.5, JBOSS 5.0 and Informix 11.5. Any idea how to do this? I have researched through a lot on the internet but could not find any solution. Please suggest! Here is my datasource and entity manager beans which is working perfect without SSL: ...

SSL with external static content server

I have a .Net web application that for performance issues gets all the static data (CSS, Images, JS) from an external server that is on different location and different hosting company. I want to enable SSL on my site without the users getting a message: "Page contains both secure and insecure elements" Does this means I’ll have to get...

SSL Not Working on other network

Hi I am running windows server 2003 standard and have installed the ssl cert for the company website . Attempting to access the website securely outside of our network the page does not load. Thanks in advance! ...

Good articles to read on SSL and HTTPS?

I had a problem with accepting invalid SSL certificate in my iPhone program. That problem is solved now, however I came to understanding that I have very abstract idea on how exactly the whole thing is working: how web browser is verifying that received certificate is really for host it communicates to and not faked by same party in th...

Writing a tcp proxy (for http, smtp or similar) in java works non-ssl but doesn't work ssl

Hi i'm trying to write a proxy for simple services like http and smtp using java. so far i've got this: class Main { public static final int listenPort = 465, // port to listen on remotePort = 465; // port to connect to public static final String remoteH = "";// my mail server hostname here public static void main(String[] ...