could not create ssl/tsl secure channel
See original GitHub issueHi,
While I am using brutiles sharpmap extention I faced this error, in fact it appears rendered tiles. I am working on to find the problem. lets say this is my tile address
https://syntool-tiles2.odl.bzh/data/ingested/3857_Mean_Sea_Level/MSL_Map_MERGED_Global_IB_RWT_NoGIA_Adjust/tiles.zxy/{z}/{x}/{y}.png
this works from zoom=2 I tried this code
Map map = new Map();
map.BackgroundLayer.Clear();
var myWmtsTileSource = new HttpTileSource(new GlobalSphericalMercator(),
"https://syntool-tiles2.odl.bzh/data/ingested/3857_Mean_Sea_Level/MSL_Map_MERGED_Global_IB_RWT_NoGIA_Adjust/tiles.zxy/{z}/{x}/{y}.png", name: "WMTS Source");
BruTile.TileInfo inf = new BruTile.TileInfo();
inf.Extent = new BruTile.Extent(0 ,0,90, 66.51326044311185);
TileIndex ti = new TileIndex(2, 1,"2" );
inf.Index = ti;
Uri tileurl= myWmtsTileSource.GetUri(inf);
SharpMap.Layers.TileAsyncLayer GoogleTerrain = new SharpMap.Layers.TileAsyncLayer(myWmtsTileSource, "GoogleTerrain");
GoogleTerrain.SRID = 3857;
// map.SRID = 3857;
map.BackgroundLayer.Add(GoogleTerrain);
in above code tileurl
points to an actual tile, It seems there is sth wrong here but I have no idea where is its source
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
c# - The request was aborted: Could not create SSL/TLS ...
Another possible cause of the The request was aborted: Could not create SSL/TLS secure channel error is a mismatch between your client PC's...
Read more >The request was aborted: Could not create SSL/TLS ...
Open Run Prompt and run gpedit.msc · Navigate to "Administrative Templates > Network > SSL Configuration Settings" · Open SSL Cipher Suite Order ......
Read more >How To Fix the “Could Not Establish Trust Relationship for ...
The “Could not establish trust relationship for the SSL/TLS secure channel with authority” error means your browser doesn't trust the website.
Read more >.NET Error - The request was aborted: Could not create ...
This exception message typically indicates that a secure channel could not be created due to the client application failing to specify a ...
Read more >How to Solve “Could not create SSL/TLS secure channel” ...
One solution to this is to recompile your website, either specifying a default or targeting .NET 4.7, which does have a default value...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks for posting the solution here.
@pauldendulk thank you