Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
1answer
216 views

Do C# try-finally CERs break in iterators?

Apparently, Constrained Execution Region guarantees do not apply to iterators (probably because of how they are implemented and all), but is this a bug or by design? [See the example below.] i.e. ...
7
votes
5answers
931 views

Code demonstrating the importance of a Constrained Execution Region

Could anyone create a short sample that breaks, unless the [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] is applied? I just ran through this sample on MSDN and am unable to get ...
3
votes
1answer
59 views

How can a SafeHandle be used in a P/Invoke signature that requires a null pointer in certain cases?

Hopefully this isn't too obscure for SO, but consider the following P/Invoke signature: [DllImport("odbc32.dll", CharSet = CharSet.Unicode)] internal static extern OdbcResult SQLAllocHandle( ...
2
votes
1answer
66 views

How to obtain a Microsoft Certificate (*.cer & .pfx)?

In order to upload a service on Microsoft Azure Cloud there is a cer file required, to proof the identity. How can I purchase one for my company? Thanks,
1
vote
2answers
111 views

using constrained execute regions

I have a Visual Studio 2008 C# .NET 3.5 application that P/Invokes a native method that accepts a file handle as a parameter. Originally, I was just using ...
0
votes
0answers
14 views

Understanding the purpose of CERs in this example

I'm reading through Constrained Execution Regions and other errata [Brian Grunkemeyer] in an attempt to understand constrained execution regions, however I'm having some problems understanding the ...
0
votes
1answer
325 views

How to generate a CRL (certificate revocation list) file

I'm using self-signed certificates for testing, how can I generate certificate revocation list to test cert verification? Has keytool in JDK provided such functionalities? Thanks!
0
votes
1answer
2k views

IIS 6 Private Key certificate access

We have a Web asp.net application running in the framework 2.0 and hosted in an IIS 6 server, and the OS is windows server 2003. The web application is suing a client certificate to be authenticated ...