Single sign-on between web & desktop
Thu, 28 Feb 2008 03:30:56 -0800 (PST)
Hi everyone,
We're developing an application which include both web-based (ASP.NET)
and desktop (WinForms) applications. User credentials come from a
Windows domain. We want to enable single sign-on between these
applications. Two expected usage scenarios are as follows:
1.
- User login to web app using ...
|
Reflection issue after initial ClickOnce deployment
Tue, 26 Feb 2008 10:49:10 -0800 (PST)
Hi,
We're having a windows application that's deployed through ClickOnce
deployement. The deployment is working just fine and the application
runs with no problem.
We have logic that load assemblies and the resources (e.g. XML files
added to the assembly as resources) at the beginning of the
application in ...
|
access rights
Mon, 25 Feb 2008 12:54:04 -0800
Is it possible for two users to have the same rights for a given directory
and sub-directories where "Inherit from parent the permission entries that
apply to child objectss. Include these wih entries explicity defined herre"
is not selected ?
Example: this is a sample of the directory structure
directory/ ...
|
Re: TripleDES C# Source Code
Mon, 25 Feb 2008 19:39:09 +0000 (UTC)
Hello Joe,
> That's probably the best bet. The .NET framework calls down into the
> unmanaged CryptoAPI for its 3DES implementation, so you can't even use
> Reflector to see anything useful.
>
> I'm curious why this is needed though.
I guess it wouldn't be needed, but the CryptoAPI is a well known API wh ...
|
TripleDES C# Source Code
Mon, 25 Feb 2008 08:27:02 -0800
Does anyone know where I can find the source code to the TripleDES algorithm
in C#? I found it in Java and C++, but not C#. I found the calls to
Encrypt() & Decrypt(), but not the source itself. Yes, I could translate it
from C++ or Java; but I don't want to re-invent the wheel.
Thanks,
...
|
What would cause the security 537 entries to double when I read i
Sun, 24 Feb 2008 21:56:01 -0800
HI, Does anyone know what could caused the security log 537 Failure Audit log
entry doubles entries when I read the collection use the EventLog Class?
--
Thanks. ...
|
Dynamic Perfmon Object Creation under ASP.NET 2.0
Sat, 23 Feb 2008 15:33:01 -0800
I have a ASP.NET application which runs under the NETWORKSERVICE account.
I instrument aspects of the application via custom perfmon objects.
I need to dynamically (on-the-fly) create/destroy perfmon objects and
instances due to the nature of the application. I'd rather not delegate thsi
to an external pr ...
|
|
|
IM add-in security issue
Sat, 23 Feb 2008 09:40:00 -0800
I am writing an add-in for live messenger using C# VS2005. When I try to add
the assembly to IM I get 8013150a message which is a security issue, because
in my app I am reading from a file. Would strong-naming the assembly take
care of the problem? if so where can I find a good tutorial on strong-naming
and ...
|
How to find out whether I can enumerate files in a directory?
Fri, 22 Feb 2008 23:15:40 +0100
I tried the following but it tells me for every folder on my pc that I
would not have access to it.
What did I wrong? When it comes to CAS I'am a complete moron..
if (new FileIOPermission(FileIOPermissionAccess.PathDiscovery,path)
.IsUnrestricted())
{
files = Directory.GetFi ...
|
Assembly security
Fri, 22 Feb 2008 19:28:19 +0200
Hi,
I have written a class library and i don't want unauthorized access to
some (or all) methods in this library. With some research , i found that
i can use strongly named assemblies for this purpose
Here is what i did:
1- I created a consumer assembly signed with myKeyFile.snk
2- I get public key of th ...
|