Posts

Showing posts from February 15, 2019

Azure Service Bus Session Ordering

Image
0 Let's say we have the following messages which are all part of the same Session and were placed onto the Topic in alphabetical order. A, B, C, D The session receiver will pick up and process message A first before moving onto B. But what happens if message A cannot be processed. Will the receiver automatically move onto B? Or will it still respect the sequencing? azureservicebus share | improve this question asked Nov 23 '18 at 15:15 heymega heymega 5,668 5 25 45

Vallo della Lucania

Image
Vallo della Lucania Staat Italien Region Kampanien Provinz Salerno (SA) Koordinaten 40° 14′  N , 15° 16′  O 40.233333333333 15.266666666667 380 Koordinaten: 40° 14′ 0″  N , 15° 16′ 0″  O Höhe 380  m s.l.m. Fläche 25,32 km² Einwohner 8.425 (31. Dez. 2017) [1] Bevölkerungsdichte 333 Einw./km² Postleitzahl 84078, 84040, 84050, 84060 Vorwahl 0974 ISTAT-Nummer 065154 Volksbezeichnung Vallesi Schutzpatron Pantaleon Website Vallo della Lucania Vallo della Lucania Vallo della Lucania (kurz Vallo ) ist eine süditalienische Gemeinde ( comune ) mit 8425 Einwohnern (Stand: 31. Dezember 2017) in der Provinz Salerno in der Region Kampanien. Die Verwaltung des Nationalparks Cilento und Vallo di Diano hat ihren Sitz in Vallo della Lucania. Der Ort ist zugleich Sitz der Comunità Montana Zona del Gelbison e Cervati sowie des römisch-katholischen Bistums Vallo della Lucania. Schu

X509Certificate2 with Private Key signing data using SHA256withRSA

Image
2 0 This is a bit related to the answer to X509Certificate2 from store with private key. It seems that when I want to use SHA256withRSA I can't use service provider directly from the certificate's PrivateKey - I need to create new crypto service provider: var bytes = new byte { 0, 1, 2, 3 }; //_cert - X509Certificate2 with private key //csp1 is of type I need, but it won't work var csp1 = _cert.PrivateKey as RSACryptoServiceProvider; var cspParameters = new CspParameters { KeyContainerName = csp1.CspKeyContainerInfo.KeyContainerName, KeyNumber = csp1.CspKeyContainerInfo.KeyNumber == KeyNumber.Exchange ? 1 : 2, }; var csp2 = new RSACryptoServiceProvider(cspParameters); //I can't use csp1 here - will throw "CryptographicException : Invalid algorithm spe