|
|
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
58 Articles match "Module","Windows"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential LINQ with the Entity Framework
This module will also include a number of best practices, including avoidance of SQL injection by properly setting query parameters. Day 4 LINQ in N-Tier Applications Both LINQ to SQL and the Entity Framework support serialization of entities for use with Windows Communication Foundation (WCF), but using LINQ in a service-oriented application architecture presents many other challenges to the application developer. In this course, you learn to: Leverage new features of C# 3.0, You'll get answers to these questions: When should I use LINQ instead of "classic" ADO.NET?
DevelopMentor Courses
- Friday, June 12, 2009
Essential Silverlight 3
Deliver online business applications, multimedia websites, and games to Windows, Mac OS, and Linux clients. It lets you build multimedia websites, casual games, and online versions of line-of-business applications on Windows, MacOS, or Linux using a variety of browsers. Introduction In this first module, you will gain a high-level understanding of Silverlight: its positioning, capabilities, and development tools. In this module you will learn how to use these features to add persistence features to your applications. Popup: how to display popup windows
DevelopMentor Courses
- Wednesday, June 17, 2009
Foundations of C# Programming and the.NET Framework
Distinguish between "implementation inheritance" and "interface inheritance" Use ADO.NET to connect to SQL Server and run a simple query Build a basic Windows Forms GUI Essential C# is ".NET Survey library functionality like building a simple Windows Forms GUI and retrieving data from SQL Server. The.NET Execution Model This module examines the.NET software development model: C# source code, compiler, intermediate language,exe/.dll Exceptions This module describes the C# error notification mechanism of exceptions. less code!) NET 101" for developers moving to.NET.
DevelopMentor Courses
- Friday, June 12, 2009
|
13 Articles match "Module","Windows"
|
The Latest from DevelopMentor
|
MORE
|
|
IIS & RESTful Services #FAIL
when will super duper IIS finally support non-Windows accounts for HTTP authentication? see here for a complete module including IIS management integration: [link]. really? link].
www.leastprivilege.com
- Wednesday, July 21, 2010
MVVM: Service Locator
Here’s what it looks like: Notice that it implements the IServiceProvider interface – this is a base.NET interface used for service resolution and a form of it can be found in the Visual Studio extensibility API, Windows Workflow and a variety of other projects. So, a console host might add a service for output that prints a string to the console window, while a web application might define the same service as a redirection to an output page. anyway). What is the Service Locator? In a nutshell, the service locator is a resolver for services that your application might need or use.
Mark's Blog of Random Thoughts
- Wednesday, January 27, 2010
TryCatch activity in WF4
I can’t say I am a fan of the way the TryCatch activity is implemented in Windows Workflow Foundation 4. However where you normally would use the stack trace to see where the error occurred this is useless in Windows Workflow Foundation. No matter which execution module you choose, WorkflowInvoker, WorkflowApplication or WorkflowServiceHost, they all support this mechanism. For starters there is a Finally block where you can add some activities you want to execute. Sounds nice and very much like the try/catch/finally code construct we have in C# or Visual Basic. Enjoy!
The Problem Solver
- Thursday, November 26, 2009
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Geneva HTTP Modules: ClaimsPrincipalHttpModule
Geneva ships with three HTTP modules to use with ASP.NET: ClaimsPrincipalHttpModule , SessionAuthenticationModule and WSFederationAuthenticationModule. The claims principal module is your easiest entry into the claims-based world. There are three main decisions made: If client is using Windows authentication, create a WindowsClaimsPrincipal. This principal allows downcasting to WindowsPrincipal and WindowsIdentity (to access things like impersonation and other Windows security specific features). What are they for – and when to chose which? Lovely.
www.leastprivilege.com
- Monday, November 17, 2008
-
ASP.NET Routing in Windows Azure Using WebForms
But what about Windows Azure ? Modify the web.config by adding a handler and module to the system.webServer section: <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web.Routing, Version=3.5.0.0, I'm a huge fan of ASP.NET Routing. It gained popularity as the part of ASP.NET MVC which channels requests for a given URL to the right controller action. In a wise move, Microsoft moved the routing infrastructure out of ASP.NET MVC and into its own assembly with the release of.NET 3.5 link]. link]. What if you don't want ASP.NET MVC? link]. Kennedy.
-
TryCatch activity in WF4
I can’t say I am a fan of the way the TryCatch activity is implemented in Windows Workflow Foundation 4. However where you normally would use the stack trace to see where the error occurred this is useless in Windows Workflow Foundation. No matter which execution module you choose, WorkflowInvoker, WorkflowApplication or WorkflowServiceHost, they all support this mechanism. For starters there is a Finally block where you can add some activities you want to execute. Sounds nice and very much like the try/catch/finally code construct we have in C# or Visual Basic. Enjoy!
The Problem Solver
- Thursday, November 26, 2009
-
IIS & RESTful Services #FAIL
when will super duper IIS finally support non-Windows accounts for HTTP authentication? see here for a complete module including IIS management integration: [link]. really? link].
www.leastprivilege.com
- Wednesday, July 21, 2010
-
Deploying native DLLs with managed wrapper assemblies into the GAC
If you modify a linked file before adding the assembly to the GAC, GACUtil will report the following error: Failure adding assembly to the cache: One or more modules were streamed in which did not match those specified by the manifest. The hash of one or more modules found does not match the hash recorded in the manifest. In the debugger, you can see where dependent DLLs are loaded from (via the WinDBG command “lm –v” or the VS modules window). How can I ensure that the managed wrapper can load the native assembly? attributes ignored here ….file b77a5c561934e089.
Marcus' Blog
- Wednesday, September 30, 2009
-
Using IdentityModel: Adding ASP.NET Support Part 1 (Authentication based Claims)
Adding claims support to ASP.NET is a perfect candidate for an HTTP module. The job of the claims manager is this: Creating claims based on the technical authentication details (Windows, Forms, client certificates etc.). claimSets = new List (); // Windows or Forms authentication. In the next post I will show the HTTP module, how it calls the above policy and how it chains in external policies. As a reminiscence to RoleManager, I called mine ClaimsManager. The first step is to write an IAuthorizationPolicy to map the ASP.NET authentication details to claims. get. {.
www.leastprivilege.com
- Wednesday, March 19, 2008
-
Geneva Beta 2 Update: ClaimsPrincipalHttpModule
For a basic understanding what the module does, I recommend reading my initial post here. Now Windows/IIS supports a number of certificate issuers and a user can potentially present a client cert to IIS which is “valid” but the client may still not be a valid/registered user in your system. I am currently in the process of updating my Geneva code to Beta 2. There are some pretty substantial changes/additions in the new Beta – so I thought I’ll detail some of them while moving along. Today: ClaimsPrincipalHttpModule. username/password.
www.leastprivilege.com
- Sunday, May 17, 2009
|
|
|