Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Essy 74 posts 96 karma points
    May 19, 2012 @ 19:03
    Essy
    0

    Not working with SSL?

    I installed this on our dev system and it worked perfectly but since moving to our test system (which uses SSL with a self-signed certificate) all the links come back with status "NO RESPONSE" - I'm guessing this is because the site is using a self-signed SSL cert? Will it fix itself once we get the real thing?

  • Dan Diplo 1554 posts 6205 karma points MVP 5x c-trib
    May 19, 2012 @ 20:42
    Dan Diplo
    0

    Hi. To be honest, I've never tested it on a site with SSL. My only thought is that it's related to a "mis-matched" certificate as mentioned in this post and this one. I'm using the .NET class HttpWebRequest. Have a look at http://www.west-wind.com/weblog/posts/2011/Feb/11/HttpWebRequest-and-Ignoring-SSL-Certificate-Errors and see if you can add the following to web.config to get it to ignore this:

      <system.net>
        <settings>
          <servicePointManager
              checkCertificateName="false"
              checkCertificateRevocationList="false"         
          />
        </settings>
      </system.net>
  • Essy 74 posts 96 karma points
    May 19, 2012 @ 21:11
    Essy
    0

    Thanks for the quick reply!

    Sadly no joy with the web.config fiddle. I will wait and see what happens when we get the real thing.

  • Essy 74 posts 96 karma points
    Sep 18, 2012 @ 09:02
    Essy
    0

    It was definitely the self-certification ... all working fine now we're live and have a real SSL cert. :)

Please Sign in or register to post replies

Write your reply to:

Draft