2017-08-31 17:55:54,055 [P4608/D2/T68] ERROR Umbraco.Web.Scheduling.ScheduledPublishing - Failed (at "http://test.com/umbraco").
System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
at System.Net.Http.HttpClientHandler.GetResponseCallback(IAsyncResult ar)
--- End of inner exception stack trace ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Umbraco.Web.Scheduling.ScheduledPublishing.<PerformRunAsync>d__7.MoveNext()
The request was aborted: Could not create SSL/TLS secure channel.
Hi, hoping someone can help?
Every now and again, I'm getting the following error:
The request was aborted: Could not create SSL/TLS secure channel.
which relates to var tweets = uTwit.GetLatestTweets(config, numberOfTweetsToDisplay, includeReplies, includeRetweets)
Wondering if anyone else has had this?
Thanks,
Craig
p.s using Umbraco v6.1.6 on Windows Server 2012
Hi Craig,
Did you manage to resolve this issue?
I seem to be geeting the same thing
Many thanks Paul
I am having the same problem with 7.6.1
According to this link The request was aborted: Could not create SSL/TLS secure channel some suggest to change App Pool Identity in IIS to LocalSystem from NetworkService but that did not help me.
Anyone has managed to solve this problem?
I have had the same issue using 7.6.4. Anyone been able to fix this issue?
Whe have a same sort of problem. I'm going to try out the following line of code just before the call
System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls; // comparable to modern browsers
I've just fixed this on a bunch of sites, two of which had uTwit installed and suffered from this same problem. See my solution here:
https://our.umbraco.org/forum/using-umbraco-and-getting-started/74628-the-underlying-connection-was-closed-an-unexpected-error-occurred-on-a-send#285847
is working on a reply...