question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

could not create ssl/tsl secure channel

See original GitHub issue

Hi, 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:closed
  • Created 5 years ago
  • Comments:6 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
pauldendulkcommented, Mar 27, 2018

Thanks for posting the solution here.

0reactions
am2222commented, Mar 29, 2018

@pauldendulk thank you

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found