| |
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.
|
5 Articles match "IIS","Restful Services"
| Related DevelopMentor Courses | MORE | | Secure WCF REST Services with a Custom UserNamePasswordValidator When securing WCF services you’re faced with a choice: Message versus Transport security. Using SSL is generally the best choice for ensuring point-to-point privacy and integrity, which lets you pass user credentials over the wire when directly invoking service operations. This will cause the service to look in a soap header for client credentials. It turns out the serviceCredentials behavior doesn’t really have anything to do with whether it’s a Soap or Rest-based service. If you’re hosting in IIS (or IIS Express), you’re pretty much done. DevelopMentor Courses - Monday, May 28, 2012 Service-Orientation Today and Tomorrow Training In Deutsch , klicken Sie hier Based on the ranges of topics below, you will be able to take the first steps in the world of Service-Orientation and Cloud Computing with confidence and above all be prepared for future projects: Service-Orientation Cloud and Cloud Computing Identity Management and Claims-Based Identity Windows Communication Foundation (WCF) Windows Workflow Foundation (WF) Azure Services Platform (with Windows Azure and.NET Services) In Deutsch , klicken Sie hier Are you tired of constantly reading about "crisis" and "restrictions"? WCF includes the ?Web DevelopMentor Courses - Tuesday, March 1, 2011 NET 3.5 & 4.0: LINQ/EF, WCF, WPF/SL, MVVM, MEF Training Learn best practices for building scalable WCF services hosted by Internet Information Services. Properly handle faults in WCF services and use diagnostic tools for tracking down exceptions. Learn the difference between WCF REST, Data and RIA Services and how to choose which is right for your application. Windows Presentation Foundation (WPF) and Silverlight (SL), Windows Communication Foundation (WCF), Entity Framework (EF) and WCF Data Services (OData). WCF Hosting, Instancing, Faults WCF allows for a number of options for hosting services. DevelopMentor Courses - Wednesday, February 22, 2012 |
9 Articles match "IIS","Restful Services"
| The Latest from DevelopMentor | MORE | | Secure WCF REST Services with a Custom UserNamePasswordValidator When securing WCF services you’re faced with a choice: Message versus Transport security. Using SSL is generally the best choice for ensuring point-to-point privacy and integrity, which lets you pass user credentials over the wire when directly invoking service operations. This will cause the service to look in a soap header for client credentials. It turns out the serviceCredentials behavior doesn’t really have anything to do with whether it’s a Soap or Rest-based service. If you’re hosting in IIS (or IIS Express), you’re pretty much done. DevelopMentor Courses - Monday, May 28, 2012 Token based Authentication for WCF HTTP/REST Services: Authentication This post shows some of the implementation techniques for adding token and claims based security to HTTP/REST services written with WCF. Should work with WCF web programming model either self-host or IIS hosted. Service code can rely on an IClaimsPrincipal on Thread.CurrentPrincipal that describes the client using claims-based identity. To wire up the custom authorization manager you need a custom service host – which in turn needs a custom service host factory. For HTTP based services we can do something very similar. Disclaimer. Error handling. www.leastprivilege.com - Tuesday, November 15, 2011 About logins and searches as resources A reader posted a question in my blog post about REST services and URL’s about modeling search and login as a resource. About using [link] as a URL in a REST service The URL [link] suggest that there is a resource login while login clearly is an action, not a resource. Another, unrelated to the URL, thing here is that REST services should be stateless in order to promote scalability. This is the [link] part and is determined by IIS in the case of managed hosting or the base address specified in the case of self hosting. List GetBooks(). {. Enjoy! The Problem Solver - Monday, July 18, 2011 | -
| The Best 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]. Tags: IIS WCF really? link]. www.leastprivilege.com - Wednesday, July 21, 2010 - Secure WCF REST Services with a Custom UserNamePasswordValidator
When securing WCF services you’re faced with a choice: Message versus Transport security. Using SSL is generally the best choice for ensuring point-to-point privacy and integrity, which lets you pass user credentials over the wire when directly invoking service operations. This will cause the service to look in a soap header for client credentials. It turns out the serviceCredentials behavior doesn’t really have anything to do with whether it’s a Soap or Rest-based service. If you’re hosting in IIS (or IIS Express), you’re pretty much done. DevelopMentor Courses - Monday, May 28, 2012 - Token based Authentication for WCF HTTP/REST Services: Authentication
This post shows some of the implementation techniques for adding token and claims based security to HTTP/REST services written with WCF. Should work with WCF web programming model either self-host or IIS hosted. Service code can rely on an IClaimsPrincipal on Thread.CurrentPrincipal that describes the client using claims-based identity. To wire up the custom authorization manager you need a custom service host – which in turn needs a custom service host factory. For HTTP based services we can do something very similar. Disclaimer. Error handling. www.leastprivilege.com - Tuesday, November 15, 2011 - Using the WCF Web API in an ASP.NET MVC application
Now that works but it is far more likely that you will want to be using IIS and host the REST service as part of a web application. So in this blog post I am going to show how to do the normal thing I Created an ASP.NET MVC 3 app to host the REST service. The service we are going to host is pretty simple for now. In future blog posts we are going to expand on that and make our service more interesting. For now the service looks like this: [ServiceContract]. Next we need to make sure we actually host the service so clients can call into it. The Problem Solver - Monday, June 13, 2011 - Getting started with the WCF Web API
Warning: This post is based on a prerelease version of the WCF Web API When designing services the REST style is becoming more and more popular. Not that REST is anything new, it has been around for some time. The fact that WCF supports REST services isn’t new either as the WebServiceHost and WebHttpBinding where released with the.NET framework 3.5. However the original REST support in WCF was quite limited. You could build very nice REST services but you had to do a lot of work because out of the box there isn’t support for much functionality. The Problem Solver - Tuesday, May 31, 2011 - About logins and searches as resources
A reader posted a question in my blog post about REST services and URL’s about modeling search and login as a resource. About using [link] as a URL in a REST service The URL [link] suggest that there is a resource login while login clearly is an action, not a resource. Another, unrelated to the URL, thing here is that REST services should be stateless in order to promote scalability. This is the [link] part and is determined by IIS in the case of managed hosting or the base address specified in the case of self hosting. List GetBooks(). {. Enjoy! The Problem Solver - Monday, July 18, 2011 - Getting started with the WCF Web API
Warning: This post is based on a prerelease version of the WCF Web API When designing services the REST style is becoming more and more popular. Not that REST is anything new, it has been around for some time. The fact that WCF supports REST services isn’t new either as the WebServiceHost and WebHttpBinding where released with the.NET framework 3.5. However the original REST support in WCF was quite limited. You could build very nice REST services but you had to do a lot of work because out of the box there isn’t support for much functionality. The Problem Solver - Tuesday, May 31, 2011 %>
| | |