Difference between revisions of "HTTPS Connection Issues"
From MgmtWiki
(Created page with "==Full Title or Meme== Like most security protocols HTTPS can start failing for all sorts of reasons, but issues with upgraded security seems to be most common.") |
(→Full Title or Meme) |
||
| Line 1: | Line 1: | ||
==Full Title or Meme== | ==Full Title or Meme== | ||
Like most security protocols HTTPS can start failing for all sorts of reasons, but issues with upgraded security seems to be most common. | Like most security protocols HTTPS can start failing for all sorts of reasons, but issues with upgraded security seems to be most common. | ||
| + | |||
| + | ==Context== | ||
| + | |||
| + | ==Issues== | ||
| + | ===PowerShell Invoke-xxxMethod=== | ||
| + | <pre> | ||
| + | $r = Invoke-RestMethod "https://trustregistry.us/csp" -Method Post -Body $j -ContentType "application/jose" | ||
| + | $r | ||
| + | The registry service https://localhost:5035/csp could not be found. Exception: The SSL connection could not be established, see inner exception. | ||
| + | </pre> | ||
| + | |||
| + | |||
| + | ==References== | ||
| + | |||
| + | |||
| + | [[Category:Best Practice]] | ||
| + | [[Category:Security]] | ||
Revision as of 17:07, 30 July 2020
Full Title or Meme
Like most security protocols HTTPS can start failing for all sorts of reasons, but issues with upgraded security seems to be most common.
Context
Issues
PowerShell Invoke-xxxMethod
$r = Invoke-RestMethod "https://trustregistry.us/csp" -Method Post -Body $j -ContentType "application/jose" $r The registry service https://localhost:5035/csp could not be found. Exception: The SSL connection could not be established, see inner exception.