Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
1k views

Token-Based Authentication in WCF

I am creating a website which will contain both ASP.NET pages and a Flash applet. I want to encapsulate my business logic in a WCF service which will be exposed through two endpoints: One ...
3
votes
4answers
6k views

ASP.NET WebPermission Security Exception

I usually hate posting these types of questions as normally I find that the best way to really learn is to figure out the answer yourself. However, I need an answer to this question really quickly ...
2
votes
1answer
188 views

PowerShell - Decode System.Security.SecureString to readable password

I want to decode the password from a System.Security.SecureString to a readable password. $password = convertto-securestring "TestPassword" -asplaintext -force $credentials = New-Object ...
1
vote
2answers
169 views

PowerShell - Get-Credential decode password?

I want to use the Get-Credential cmdlet in my code. How is is possible to decode the password easily back from the System.Security.SecureString format? (I must use the password in clear text format ...
1
vote
1answer
547 views

System.Security.Permissions.SecurityPermission and Reflection on Godaddy

UPDATED! I've highlighted the line that throws the error and added the code-behind for one of my User Controls (its at the bottom). I have the following method which allows me to dynamically add ...
1
vote
1answer
336 views

NHibernate + Remoting = ReflectionPermission Exception

We are dealing with a problem when using NHibernate with Remoting in a machine with full trust enviroment (actually that's our dev machine). The problem happens when whe try to send as a parameter an ...
1
vote
2answers
472 views

ProtectedData.Unprotect() after Impersonate()

The following code doesn't work: IntPtr token = Win32Dll.LogonUser(“user1”, “mydomain”, “password1”); WindowsIdentity id = new WindowsIdentity(token); WindowsImpersonationContext ic = ...
1
vote
1answer
918 views

RegistryPermission error when call from a C# console app

Just looking for some pointer before I head down the wrong path. I have written small C# console app that opens, reads, writes and deletes from our users registry under both HKEY_LOCAL_MACHINE and ...
0
votes
2answers
52 views

System.Security.SecurityException being thrown on initializing StructureMap bootstrapper

I am running a .NET 4.0 web application locally using the Visual Studio Development Server (built in web server with VS2010), and for the last couple months, my StructureMap bootstrapper file has ...
0
votes
1answer
398 views

How can you generate OTP with system.security.cryptography that can be authenticated on client?

Anyone know where I could find sample code for this with system.security.cryptography namespace -- or instructions followable by a developer? The purpose is to add two-factor authentication to an ...
0
votes
1answer
104 views

'Cast object of type' error - resolved by IIS recycle

3rd party ASP.Net web site and web service installed. The code appears not to log errors to server log or custom error log. User receives the following critical untrapped error message: ...
0
votes
1answer
150 views

Custom extensions in System.Security.Cryptography.X509Certificates

The .NET class System.Security.Cryptography.X509Certificates.X509Extension does not support some X.509 extensions I want to parse (subject alternative name, name constraints). The MSDN page for this ...