|
|
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.
|
20 Articles match "ASP.Net","Configuration"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential LINQ with the Entity Framework
Apply techniques for building real-world data-driven applications, including ASP.NET and WPF data binding. You'll also learn now to configure the mapping files to use stored procedures for CRUD operations. Appendices ASP.NET 3.5 We examine what new controls were added to ASP.NET 3.5 In this course, you learn to: Leverage new features of C# 3.0, Learn to combine flavors of LINQ to query and transform in-memory collections, XML data sources, and relational databases. You'll get answers to these questions: When should I use LINQ instead of "classic" ADO.NET?
DevelopMentor Courses
- Friday, June 12, 2009
Essential ASP.NET
Understand the ASP.NET compilation engine Build pages using server-side controls, custom controls, and user controls Validate user input using validation controls Display and update data using declarative data binding Employ security to authenticate and authorize users of your application Use master pages and themes to create a consistent look and feel Manage data for the users of your application Use caching to improve performance Add AJAX features to your pages Essential ASP.NET explains how you can build browser-centric web applications using Microsoft's ASP.NET framework.
DevelopMentor Courses
- Friday, June 12, 2009
SharePoint for Developers (WSSv3/MOSS2007)
We want to understand the SQL Server databases involved in configuration. This allows us to leverage ASP.NET forms-based authentication. With the new web part features in ASP.NET 2.0, SharePoint developers can now program against a common framework for both custom ASP.NET 2.0 We then look at basic configuration, programmatic access, and customization features of Microsoft Search technologies. The technologies covered will each be deployed utilizing the new feature and solution framework in WSS. How do I connect to the object model? intranet? extranet?
DevelopMentor Courses
- Friday, June 12, 2009
|
29 Articles match "ASP.Net","Configuration"
|
The Latest from DevelopMentor
|
MORE
|
|
Moving StarterSTS to the (Azure) Cloud
Authentication, roles and claims generation is based on the standard ASP.NET provider infrastructure. In my case I simply moved the ASP.NET provider database to SQL Azure and still use the standard SQL Server based membership, roles and profile provider. The one thing I didn’t anticipate when I originally wrote StarterSTS was the need to also encapsulate configuration. Currently configuration is “locked” to the standard.NET configuration system. Quite some people asked me about an Azure version of StarterSTS. Until recently. Provider. URL Handling. Stay tuned.
www.leastprivilege.com
- Wednesday, August 11, 2010
WCF, WIF and Load Balancing (and a bit of Azure)
By default SecureConversation only transmits a session identifier (like a ASP.NET session cookie) – the actual session is stored in-memory at the server. If you want to put a little more work in it you can also make the handler configuration friendly (see here ). Pablo wrote a post yesterday giving some background information on how session tokens are protected in WIF – here some additional info for WCF: The ws* bindings in WCF establish a security session by default (via WS-SecureConversation). This has some implications, e.g. Not good for load balancing. Unfortunately WCF 3.5
www.leastprivilege.com
- Thursday, February 18, 2010
Beware of WIF HTTP Modules and Default Configuration
Most samples I know of – as well as FedUtil generated configuration set a preCondition="managedHandler" for the WIF HTTP modules. Also add the runAllManagedModulesForAllRequests attribute to the modules section in system.webServer if you are using ASP.NET URL Authorization. This means that the modules (and thus the protection of the requested resource) only kicks in for “managed” content like.aspx files. Not for static content like.xml etc. If you like to protect static content using WIF, you have to remove the preCondition in web.config. Subtle security hole….
www.leastprivilege.com
- Thursday, December 24, 2009
|
-
|
The Best from DevelopMentor
|
MORE
|
-
WF and ASP.NET - A Few Gotchas
ASP.NET as WF host is an important and useful scenario for WF adoption, but there are some interesting details that are worth understanding before you tackle this yourself. The first thing to understand is that WF itself imposes no specific threading model; rather, it must be configured to conform to any specific threading requirements of its host process. ASP.NET uses the.NET ThreadPool to dispatch request processing. What we need is a way to re-use the ASP.NET thread to also execute the workflow. Tags: ASP.NET WF But there's the rub. so, a necessary evil.
There Must Be Some Mistake
- Monday, October 1, 2007
-
WIF Configuration – Part 1: ServiceConfiguration
WIF supports a flexible configuration system and various ways to programmatically interact with that configuration. This flexibility comes in two ways: Named configuration elements that you can selectively load (service & token handler configuration). Configuration extensibility (e.g. In this first part I’ll focus on the service configuration. The WIF configuration can have several service elements. Services can be named, the unnamed element becomes the default configuration: <!-- default configuration --> <!--
www.leastprivilege.com
- Tuesday, December 22, 2009
-
Partial Trust ASP.NET in 4.0
Also the same web_xytrust.config files from the framework configuration directory are used. Since policy levels and code groups are not in effect any longer in V4, ASP.NET by default uses the named permission set called ASP.Net as the grant set for the AppDomain. Since there is no security policy anymore in V4 and ASP.NET has moved to the homogenous AppDomain model – things work differently (and easier) now. With the new fullTrustAssemblies configuration element, you can specify which assemblies should be loaded in full trust, e.g.: version = " 1.0.0.0 ".
www.leastprivilege.com
- Tuesday, June 30, 2009
-
Using the.NET Access Control Service with Geneva
host, handlers, new AccessControlServiceIssuerRegistry (), TimeSpan.FromMinutes(5)); FederatedServiceCredentials.ConfigureServiceHost(host); host.Open(); Another option would be to use the configuration file – but in this case we somehow have to transfer the solution name to the security token handler. Geneva security token handlers have a standard configuration extensibility hook that we can use to accomplish this (not very obvious at the beginning – but makes sense ;). Tags: ASP.NET;IdentityModel;WCF Access Control Service Drilldown. compat STS) at the ACS. base (). {.
www.leastprivilege.com
- Thursday, December 11, 2008
-
Using IdentityModel: Adding Claims Support to ASP.NET (Spoiler)
There are some additional nice to have features to implement like a permission and a corresponding attribute as well as a configurable claim type for IsInRole. Tags: ASP.NET;IdentityModel Many people asked me how to use claims based authorization in ASP.NET. While I have it working here on my machine (hey - it works on my machine!), I still need to polish the bits before I can release them. For those who want to get their hands dirty immediately - here's what you'd have to do: Write an IPrincipal implementation that wraps an AuthorizationContext. Bear with me.
www.leastprivilege.com
- Tuesday, March 18, 2008
-
Geneva integration into ASP.NET
Geneva is integrated in ASP.NET/IIS using the standard IHttpModule extensibility mechanism. set session security token using the configured cookie handler. creates a SignInRequest message and redirects to the configured identity provider. This is what happens: check if cookie is present (using the configured cookie handler). Tags: ASP.NET;IdentityModel Geneva ships with three HTTP modules: ClaimsPrincipalHttpModule (already wrote about it here ). WSFederationAuthenticationModule (implements WS-Federation authentication). raise SecurityTokenReceived event.
www.leastprivilege.com
- Thursday, March 12, 2009
-
Claims Authorization in WIF Beta 2 – ASP.NET and WCF Integration
In addition to using the claims authorization manager manually like I showed you in the last post, you can also opt-in to per-request claims authorization (think of it as a replacement for the “classic” URL authorization module in ASP.NET / IIS). This module simply subscribes to the AuthorizeRequest processing stage and calls the configured claims authorization manager for every request. This class in turn calls out to the configured ClaimsAuthorizationManager. Tags: WCF;ASP.NET;IdentityModel ASP.NET. As usual things are a little more complex in WCF.
www.leastprivilege.com
- Tuesday, July 21, 2009
|
|
|