ssl

Silverlight 3/WCF Communication over SSL Issue

I have a WCF over SSL service that works no problem. I am able to add a reference to this service to my Silverlight Project. Everything is hosted in IIS7. When My app runs I get the following error An error occurred while trying to make a request to URI 'https://wikittybam/BurgerCounter.svc'. This could be due to attempting to acc...

Lost Code Signing Certificate Alias

Our company purchased a code signing certificate from Thawte a few weeks ago. When we finally received the certificate from the purchasing team they didn't know the alias for the certificate! I don't seem to be able to import the cert without the alias and they have no clue at all what it is. Is there a way of retrieving the alias? H...

Twisted transport.write

Is there any way to force self.transport.write(response) to write immediately to its connection so that the next call to self.transport.write(response) does not get buffered into the same call. We have a client with legacy software we cannot amend, that reads for the 1st request and then starts reading again, and the problem I have is...

Actionscript3 SSL sockets

Hey, In the application we are working on we have to send secured messages from a flash movie running in the browser to an app engine application. One good candidate would be SSL which app engine seems to somewhat support (not exactly sure). But is there any implementation for SSL sockets for actionscript 3 (since afaik as3 doesn't have...

Non-SharePoint site redirects to SharePoint login screen when accessed over SSL

I have a MOSS 07 FBA site at https://fba.mydomain.com. I have a classic ASP site on the same server at https://asp.mydomain.com. When I access https://asp.mydomain.com in the browser, it redirects to the login form at https://fba.mydomain.com/_layouts/login.aspx. This is very strange. The two things are completely different sites in IIS....

ASP.NET MVC: How to automatically disable [RequireHttps] on localhost?

I want my login page to be SSL only: [RequireHttps] public ActionResult Login() { if (Helper.LoggedIn) { Response.Redirect("/account/stats"); } return View(); } But obviously it doesn't work on localhost when I develop and debug my application. I don't wanna use IIS 7 with S...

Call SOAP method via CURL in PHP,call require client authentication

OVERVIEW: The code is about making call to the escreen web service using SOAP and Curl with client authentication required. Currently I am not getting any result only HTTP 403 and 500 errors. The call requires client authenticate cert to be on the callng site. CODE: $content = "<TicketRequest> <Version>1.0</Version> <Mode>Test</Mo...

How secure are hidden authenticity tokens in twitter's oauth clients' web UI ?

Assuming that you already have created an oauth client app in twitter, you can go to http://twitter.com/apps to manage them. When I viewed the source of the HTML pages, I see that they use a hidden form parameter called an authenticity token in their form definitions. <form method="post" id="sign_out_form" action="/sessions/destroy" sty...

Configure Glassfish v3 Client-Auth Requested to want

I'm using GlassFish v3 (build 74.2) with client certificate authentication. I'd like to make the certificate authentication optional (want, not need). It seems this is possible based on this blog post, but I can't get it to work. http://blogs.sun.com/kalpana/entry/client_auth_requested_in_glassfish I've tried adding a system property,...

Data encryption issues with oracle advance security

HI all, I have used Oracle Advanced Security to encrypt data during data transfer. I have successfully configured ssl with below parameters and I have restarted the instance. I am retrieving data from a java class given below. But I could read the data without decrypting, the data is not getting envrypted. Could you please help. Environ...

The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.

Hi, I have a piece of code that works in a VS.C# project, but when this code is part of a webPart in Sharepoint, it throws an error. ServicePointManager.ServerCertificateValidationCallback += (sender, certificate, chain, sslPolicyErrors) => true; HttpWebRequest httpWebRequest = (HttpWebRequest)HttpWebRequest.Create(validateUrl); Http...

using Self-Signed SSL certificate with WCF ws2007FederationBinding

Hi people, I'm at my wit's end, and I'm hoping you can help me. I'm trying to get active WS-Trust authentication going with WIF from a web application to a web service, using a self-signed certificate. I've already tried the following: 1) Install certificate in machine certificate store under Trusted Root Certification Authorities, Pe...

How do you configure WEBrick to use SSL in Rails 3?

Prior to Rails 3, you could modify the script/server file to add in SSL parameters and tell the server command to use the HTTPS version of webrick, now that all of those scripts are gone, does anyone know how to get this to work? ...

Not hacking CurlException: 60 (cURL SSL Certificate Verification Problem)

The error that alot of people get with Facebook authentication is: CurlException: 60: SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed And the only information I can find about it suggets to add the following lines of code $opts[CURLOPT_...

SSL is half symmetric and half asymmetric?

I am reading http://www.definityhealth.com/marketing/how_ssl_works.html Looks like SSL is using asymmetric algorithm to exchange the symmetric key, after that it uses symmetric algorithm to encrypt the data. One question, can I use asymmetric algorithm only? Like Alice and Bob both have certificate and, they are all using peer's public...

how to create SSL for MySQL in Windows

how do i create SSL for MySQL in Windows? i have downloaded a OpenSSL but don't know how to get it work in Windows since all the commands are in UNIX shell. help anyone? ...

Web-service with attachment failed on 2-ways SSL connection

Hello, I have two applications, one that provides a Web-service (let's call it ws-provider), the other one that is the client of this Web-Service (call it ws-client). This communication is protected through a 2-ways SSL. Both servers have been correctly configured regarding this confidentiality restrictions (certificates installation, S...

Inconsistency in CakePHP session handling (re: cookies)?

We had a situation where sessions were being re-started immediately after logging in to a CakePHP app over SSL. It was pretty much as described here: http://stackoverflow.com/questions/308659/session-not-saving-when-moving-from-ssl-to-non-ssl and the original author's suggestion fixed the issue (although we'll try to implement somethin...

HTTPS SSL error while installing android

I downloaded Android SDK when I run setup, it displays the following error message. Failed to fetch URL https://dl-ssl.google.com/android/repository/repository.xml, reason: HTTPS SSL error. You might want to force download through HTTP in the settings. Any hints? ...

PHP to MySQL SSL Connections

I have successfully setup an SSL enabled install of MySQL on one server on one network and can connect to it using SSL with the Linux command line mysql client on a different server on a different network, however every time I try to connect (using PHP 5.3.3) I keep getting: Warning: mysqli_real_connect(): (HY000/2026): SSL connection ...