Inedo Community Forums Forums
    • Recent
    • Tags
    • Popular
    • Login

    Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.

    If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!

    The request was aborted: Could not create SSL/TLS secure channel.

    Scheduled Pinned Locked Moved Support
    tlserrorprogetssl
    3 Posts 2 Posters 34 Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • ? This user is from outside of this forum
      Guest
      last edited by

      We use Proget for rubygems and yesterday it stoped to work. When I try to search gems in "Feeds" of Proget UI, there is an error "The request was aborted: Could not create SSL/TLS secure channel." If I try to install gems bypass of Proget, all works ok. So it can't be our network issues I guess.

      Product: ProGet
      Version: 5.0.13

      1 Reply Last reply Reply Quote 0
      • ? This user is from outside of this forum
        Guest
        last edited by

        Take a look at https://inedo.com/support/questions/8876

        Related to TLS v1.2 I think

        1 Reply Last reply Reply Quote 0
        • C Offline
          creigmalta_2650
          last edited by

          The error is generic and there are many reasons why the SSL/TLS negotiation may fail. ServicePointManager.SecurityProtocol property selects the version of the Secure Sockets Layer (SSL) or Transport Layer Security (TLS) protocol to use for new connections; existing c# connections aren't changed. Make sure the ServicePointManager settings are made before the HttpWebRequest is created, else it will not work. Also, you have to enable other security protocol versions to resolve this issue:

          ServicePointManager.Expect100Continue = true;
          ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12
          SecurityProtocolType.Tls
          SecurityProtocolType.Tls11
          SecurityProtocolType.Ssl3;

          //createing HttpWebRequest after ServicePointManager settings
          HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://google.com/api/")

          If you create HttpWebRequest before the ServicePointManager settings it will fail and shows the error message.

          1 Reply Last reply Reply Quote 1

          Hello! It looks like you're interested in this conversation, but you don't have an account yet.

          Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

          With your input, this post could be even better 💗

          Register Login
          • 1 / 1
          • First post
            Last post
          Inedo Website Home • Support Home • Code of Conduct • Forums Guide • Documentation