|
|
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.
|
3 Articles match "IIS","URL"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential ASP.NET MVC
IIS 7 In order to understand MVC it's important to understand the web server in which you will be hosting your application. This module covers the architecture of Internet Information Server 7 (IIS 7) which is Microsoft's latest version of its web server product. URL Routing URL Routing allows application developers fine grained control over URLs and how they are processed by application code. URL Routing is used heavily by ASP.NET MVC. You'll get answers to these questions: What is ASP.NET MVC and how is it different than ASP.NET WebForms?
DevelopMentor Courses
- Thursday, November 5, 2009
Web Development Featuring LINQ, AJAX, ASP.NET & MVC Training
jQuery Visual Studio 2008 IIS 7 Silverlight 2 Internet Explorer 8 ASP.NET Model View Controller (MVC) You'll get answers to these questions: What is LINQ and can I use it in ASP.NET? How has IIS 7 changed from previous versions? IIS 7 Architecture We examine the redesigned architecture of IIS 7 using the integrated pipeline, and we observe how it improves performance and security. Day 4 ASP.NET Routing ASP.NET Routing allows application developers fine grained control over URLs and how they are processed by application code. Day 2 ASP.NET 3.5
DevelopMentor Courses
- Wednesday, June 2, 2010
Beyond ASP.NET: Enhancing Web Development with.NET 3.5
jQuery Visual Studio 2008 IIS 7 Silverlight 2 Internet Explorer 8 ASP.NET Model View Controller (MVC) You'll get answers to these questions: What is LINQ and can I use it in ASP.NET? How has IIS 7 changed from previous versions? IIS 7 Architecture We examine the redesigned architecture of IIS 7 using the integrated pipeline, and we observe how it improves performance and security. Day 4 ASP.NET Routing ASP.NET Routing allows application developers fine grained control over URLs and how they are processed by application code. Day 2 ASP.NET 3.5
DevelopMentor Courses
- Friday, June 12, 2009
|
6 Articles match "IIS","URL"
|
The Latest from DevelopMentor
|
MORE
|
|
Article: 10 Features in.NET 4.0 that made Me Smile
svc in our RESTful urls in IIS. But this falls apart with WCF REST when we host it in IIS. I recently wrote another article for DevelopMentor 's Developments newsletter (not subscribed yet? see top-right of this page ). This one is entitled. 10 Features in.NET 4.0 that made Me Smile. Read it on the DevelopMentor website: [link]. am republishing it below for you all to enjoy on your RSS readers. Cheers, Michael. 10 Features in.NET 4.0 that made Me Smile. have been reviewing some of our upcoming classes at DevelopMentor this week. bet some of them make you smile too.
Michael C. Kennedy's Weblog
- Wednesday, December 16, 2009
Article: 10 Features in.NET 4.0 that made Me Smile
svc in our RESTful urls in IIS. But this falls apart with WCF REST when we host it in IIS. I recently wrote another article for DevelopMentor 's Developments newsletter (not subscribed yet? see top-right of this page ). This one is entitled. 10 Features in.NET 4.0 that made Me Smile. Read it on the DevelopMentor website: [link]. am republishing it below for you all to enjoy on your RSS readers. Cheers, Michael. 10 Features in.NET 4.0 that made Me Smile. have been reviewing some of our upcoming classes at DevelopMentor this week. bet some of them make you smile too.
Michael C. Kennedy's Weblog
- Wednesday, December 16, 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). The AuthorizationContext that gets passed in the manager consists of the current IClaimsPrincipal , the request URL and the HTTP method. In the previous post I illustrated how the basic claims authorization infrastructure in WIF (formerly Geneva) works. ASP.NET. As usual things are a little more complex in WCF.
www.leastprivilege.com
- Tuesday, July 21, 2009
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Getting rid of the.svc Extension in IIS
recently tried to use the URL rewriting module for IIS 7 to achieve the same - this rule worked for me: < action type = " Rewrite ". url = " {R:1}.svc/{R:2} Tags: IIS;WCF Jon posted a module that does this. svc/{R:2} " /> HTH.
www.leastprivilege.com
- Wednesday, October 15, 2008
-
ASP.NET Routing in Windows Azure Using WebForms
It gained popularity as the part of ASP.NET MVC which channels requests for a given URL to the right controller action. With ASP.NET Routing you can construct search engine optimized and human friendly URLs such as these: [link]. Here part of the URL ( tag or user ) selects the page and part of the URL ( everything or codinghorror ) are effectively query parameters to the page. If you get routing working for IIS 7 in your web app, you can effectively deploy it to Azure. But in the Azure Development Fabric you'll see this: The problem is you need to tell IIS 7.5
-
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). The AuthorizationContext that gets passed in the manager consists of the current IClaimsPrincipal , the request URL and the HTTP method. In the previous post I illustrated how the basic claims authorization infrastructure in WIF (formerly Geneva) works. ASP.NET. As usual things are a little more complex in WCF.
www.leastprivilege.com
- Tuesday, July 21, 2009
-
Article: 10 Features in.NET 4.0 that made Me Smile
svc in our RESTful urls in IIS. But this falls apart with WCF REST when we host it in IIS. I recently wrote another article for DevelopMentor 's Developments newsletter (not subscribed yet? see top-right of this page ). This one is entitled. 10 Features in.NET 4.0 that made Me Smile. Read it on the DevelopMentor website: [link]. am republishing it below for you all to enjoy on your RSS readers. Cheers, Michael. 10 Features in.NET 4.0 that made Me Smile. have been reviewing some of our upcoming classes at DevelopMentor this week. bet some of them make you smile too.
Michael C. Kennedy's Weblog
- Wednesday, December 16, 2009
-
Geneva integration into ASP.NET
Geneva is integrated in ASP.NET/IIS using the standard IHttpModule extensibility mechanism. check for a return URL (abstract GetReturnUrlFromResponse ). parses the WS-Fed context field for a return URL-. Geneva ships with three HTTP modules: ClaimsPrincipalHttpModule (already wrote about it here ). WSFederationAuthenticationModule (implements WS-Federation authentication). SessionAuthenticationModule (implements session authentication). ClaimsPrincipalHttpModule is special – but the other two are built upon a framework for handling token based authentication in ASP.NET.
www.leastprivilege.com
- Thursday, March 12, 2009
-
Article: 10 Features in.NET 4.0 that made Me Smile
svc in our RESTful urls in IIS. But this falls apart with WCF REST when we host it in IIS. I recently wrote another article for DevelopMentor 's Developments newsletter (not subscribed yet? see top-right of this page ). This one is entitled. 10 Features in.NET 4.0 that made Me Smile. Read it on the DevelopMentor website: [link]. am republishing it below for you all to enjoy on your RSS readers. Cheers, Michael. 10 Features in.NET 4.0 that made Me Smile. have been reviewing some of our upcoming classes at DevelopMentor this week. bet some of them make you smile too.
Michael C. Kennedy's Weblog
- Wednesday, December 16, 2009
|
|
|