Velcer
❔ Trouble with C# certificates
Greetings,
In a local environment I have no issues at all.
When I push my Game Server (the client) to a hosted environment, I get an error saying the following:
{"Type":"InvalidAuth","Message":"This server requires client certificate for authentication, but none was provided by the client. Did you forget to install the certificate?"}
I contacted Ravendb support and they said the following:
Basically it's about the X509 certificate's private key. In a lot of platform you need to allow the app to load that certificate explicitly e.g. by providing its thumbprint.
My assumption of this response is that I need to first install the certificate on said machine before I can use it.
The problem is that I don't have permissions to install a certificate on that machine.
I am wondering what can be done.
The following code is what I am using:
4 replies
❔ Get collection of a groupBy based on key.
I have a list of KeyValuePairs <ushort, ushort>
I am attempting to group the list by the key,
csharp
What I am having trouble with is understanding the proper, efficient way to get all items of myNewCollection where the key is my playerId.
17 replies
Does anyone have experience with maps?
I'm building a winforms replica of an online map, as seen here: https://wiki.albiononline.com/wiki/World_Map
I'm trying to take this data, and rebuild this into a winforms application, so that I can utilize it and provide more data to the map.
It uses a library called Leaflet.
I'm trying to use syncfusions map, but they take a shapefile, and all I have is png files from this world map.
1 replies