Sign in
AppDev: Something You Should Know by Irena Kennedy
Everything that is related to application development, and other cool stuff...
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.NET
Application Development
Async
Config
Deployment
Environment
RIA
Silverlight
SQL
Telerik
TFS
Tools
Visual Studio
VSTS
WCF
Web
Archive
Archives
September 2012
(2)
March 2012
(1)
January 2012
(2)
April 2011
(1)
March 2011
(2)
October 2010
(1)
September 2010
(1)
August 2010
(2)
December 2009
(4)
November 2009
(1)
September 2009
(1)
June 2009
(2)
April 2009
(1)
December 2008
(2)
February 2008
(1)
October 2007
(3)
September 2007
(1)
August 2007
(7)
July 2007
(5)
June 2007
(8)
May 2007
(19)
April 2007
(42)
March 2007
(43)
February 2007
(33)
January 2007
(21)
December 2006
(7)
November 2006
(20)
October 2006
(22)
September 2006
(20)
August 2006
(23)
July 2006
(19)
June 2006
(12)
May 2006
(22)
April 2006
(20)
March 2006
(23)
February 2006
(20)
January 2006
(21)
December 2005
(14)
November 2005
(19)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
AppDev: Something You Should Know by Irena Kennedy
SYSK 376: Utility to Add DateTaken as File Name Prefix
Posted
over 4 years ago
by
irenake
0
Comments
I like to view photo images (.jpg files) using Large or Extra Large Icons view in Windows Explorer. Unfortunately, this view doesn’t give me a way to sort the files by DateTaken property… So, as a workaround, I created a small application that uses the...
AppDev: Something You Should Know by Irena Kennedy
SYSK 375: Visual Studio Add-In for Managing Configuration Files Across Environments
Posted
over 4 years ago
by
irenake
2
Comments
One of common customer questions/requests I get is about industry best practices and recommendations on managing configuration file settings when deploying code across environments. There are several options to change different configuration settings...
AppDev: Something You Should Know by Irena Kennedy
SYSK 374: Role Based Authorization for WCF Services through Configuration Files
Posted
over 4 years ago
by
irenake
1
Comments
Traditionally, to implement role based authorization in .NET you would use PrincipalPermission attributes, e.g.: [ PrincipalPermission ( SecurityAction .Demand, Name = "YourDomain\\User1" , Role = "YourDomain\\Role1" )] public void MethodX( ...
AppDev: Something You Should Know by Irena Kennedy
SYSK 373: How to Impersonate the Original Caller When Calling the WCF Service in ASP.NET by Configuration Only
Posted
over 4 years ago
by
irenake
0
Comments
If your WCF services use role based authorization, and you need to pass the identity of the end user (original caller), you have a few options: 1. Use <identity impersonate=”true” /> in web.config This is not my preference since there...
Page 1 of 1 (4 items)