| |
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.
|
9 Articles match "IIS","Restful"
| Related DevelopMentor Courses | MORE | | Secure WCF REST Services with a Custom UserNamePasswordValidator < serviceBehaviors > < behavior > < serviceCredentials > < userNameAuthentication userNamePasswordValidationMode = " Custom " customUserNamePasswordValidatorType = " Security.PasswordValidator, Security " /> </ serviceCredentials > </ behavior > </ serviceBehaviors > This is all fine and dandy, but it assumes that clients will only be talking Soap – what about REST-ful clients who don’t know a thing about Soap? If you’re hosting in IIS (or IIS Express), you’re pretty much done. Technical REST Security WCFEnjoy. DevelopMentor Courses - Monday, May 28, 2012 Service-Orientation Today and Tomorrow Training WCF - Hosting We learn about the different options for hosting a WCF service: IIS/WAS, Windows Services, and Smart Client applications. WCF REST REST is another architectural style for building services ? often also called RESTful services. REST embraces HTTP as an application protocol and uses URIs to address pieces of functionality in a service. which allows building RESTful services with an easy to use API. And finally, we&aposll learn the fundamentals of REST, as well as why and when RESTful services make sense. WCF includes the ?Web DevelopMentor Courses - Tuesday, March 1, 2011 Essential Windows Communication Foundation 4 Training Here you learn about the different options like self hosting, IIS/WAS, and Windows Server AppFabric. REST REST is a different architectural style for building services. REST embraces HTTP as an application protocol and URIs to address resources. You will learn the fundamentals of REST as well as how to leverage WCF's web programming model to implement Rest-ful ideas in an efficient way - including serialization, content negotiation, and caching. Windows Communication Foundation (WCF) replaces previous technologies such as.NET Remoting, ASMX, and COM+. DevelopMentor Courses - Tuesday, March 1, 2011 |
12 Articles match "IIS","Restful"
| The Latest from DevelopMentor | MORE | | Secure WCF REST Services with a Custom UserNamePasswordValidator < serviceBehaviors > < behavior > < serviceCredentials > < userNameAuthentication userNamePasswordValidationMode = " Custom " customUserNamePasswordValidatorType = " Security.PasswordValidator, Security " /> </ serviceCredentials > </ behavior > </ serviceBehaviors > This is all fine and dandy, but it assumes that clients will only be talking Soap – what about REST-ful clients who don’t know a thing about Soap? If you’re hosting in IIS (or IIS Express), you’re pretty much done. Technical REST Security WCFEnjoy. 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. Bearer" , "[link] , "https://roadie/webservicesecurity/rest/" , "WFD7i8XRHsrUPEdwSisdHoHy08W3lM16Bk6SCT8ht6A=" ); In some situations, SAML token may be used as well. For the theoretical background, see my previous post. Disclaimer. The framework I am using/building here is not the only possible approach to tackle the problem. Goals and requirements. 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. www.dotnetevents.nl.NET WCF REST dotnetmag 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
< serviceBehaviors > < behavior > < serviceCredentials > < userNameAuthentication userNamePasswordValidationMode = " Custom " customUserNamePasswordValidatorType = " Security.PasswordValidator, Security " /> </ serviceCredentials > </ behavior > </ serviceBehaviors > This is all fine and dandy, but it assumes that clients will only be talking Soap – what about REST-ful clients who don’t know a thing about Soap? If you’re hosting in IIS (or IIS Express), you’re pretty much done. Technical REST Security WCFEnjoy. DevelopMentor Courses - Monday, May 28, 2012 - 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. non browser client application can consume this REST service quite easily using a standard HTTP API available. www.dotnetevents.nl.NET WCF ASP.NET VS2010 Futures NuGet RESTjust prefer the MVC approach, you might not. Just like in this post we can add a reference to the WCF Web API to our project. if (_repo != The Problem Solver - Monday, June 13, 2011 - RESTful Web Services with WCF Screencast
I recently got the chance to record a screencast discussing REST-oriented web services in WCF. If you're interested in WCF you should definitely check it out because WCF and REST make an awesome combination. WCF-REST-Kennedy-Peepleocity.wmv 35 MB (WMV HD). cover building WCF services using REST princples, the WebGet and WebInvoke attributes, working with the SyndicationFeed & Rss20FeedFormatter classes, and configuration-free WCF hosting in IIS. You can also download the source code of the project built in the screencast. All content copyright Michael C. - 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. Bearer" , "[link] , "https://roadie/webservicesecurity/rest/" , "WFD7i8XRHsrUPEdwSisdHoHy08W3lM16Bk6SCT8ht6A=" ); In some situations, SAML token may be used as well. For the theoretical background, see my previous post. Disclaimer. The framework I am using/building here is not the only possible approach to tackle the problem. Goals and requirements. Error handling. www.leastprivilege.com - Tuesday, November 15, 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. Enjoy! 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. www.dotnetevents.nl.NET WCF REST dotnetmag The Problem Solver - Monday, July 18, 2011 %>
| | |