| |
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.
|
26 Articles match "Patterns","Restful"
| Related DevelopMentor Courses | MORE | | Roll Your Own REST-ful WCF Router However, as the MSDN documentation for the WCF Router states, “ The Routing Service does not currently support routing of WCF REST services. The reason is fairly simple: the WCF Routing Service performs routing of messages in a way that is independent of the underlying transport, whereas a REST-based architecture is deeply rooted in the HTTP protocol and relies on the URI for delivery semantics. While the ASP.NET MVC or the new ASP.NET Web API might seems like attractive options, WCF is the way to go if you need to accommodate both Soap-based and Rest-ful clients. Enjoy. DevelopMentor Courses - Tuesday, April 24, 2012 Heresy: My warped, crazy, wrong version of Agile I increasingly feel that the way I interpret Agile, the practices and the processes, if different to the rest of the world. Perhaps this is just self doubt, perhaps because I started doing Agile-like-things before reading about XP or Scrum, perhaps this is because my version has always been more informed by Lean, perhaps this is because I have never achieved Certified Scrum anything status, perhaps because I’ve never worked for ThoughtWorks, perhaps because I hold and MBA (and thus have an over inflated opinion of myself) or perhaps I’m just wrong. Allan Kelly's Blog - Thursday, February 9, 2012 Use Common Instance Factory to Abstract Away the Dependency Injection Container while back I wrote a blog post on the Onion Architecture , an approach to building loosely-coupled applications where you can swap out particular components without affecting the rest of the application. When searching for a way to abstract away the DI container, the first solution I examined was the Common Service Locator , built by Microsoft’s Patterns and Practices group back in 2008 with the source code posted on CodePlex. This discourages folks from using the factory for service location and instead promotes the dependency injection pattern described by Martin Fowler. DevelopMentor Courses - Wednesday, May 23, 2012 |
28 Articles match "Patterns","Restful"
| The Latest from DevelopMentor | MORE | | Reblogged: What should I learn to get started in.NET and web development? Basic objected-oriented programming in C# (what is a class, what is inheritance not patterns per say). Because you can preview the first lesson of each course, you have about 7 hours free and the rest are all included in an affordable $29 subscription. '[ Note : I am reblogging this post which originally was posted to the LearningLine blog. Hope you all find it useful here as well]. recently had a conversation with someone who is looking to make a fresh start and become a developer (coming from other IT positions). How do I do that?” That’s another blog post. :). Michael C. Kennedy's Weblog - Monday, May 6, 2013 Join Me at Guerrilla.NET in November You learn a myriad of patterns and best practices, and you get hands-on experience developing applications using Visual Studio 2012 and Windows 8. Building RESTful Services with The ASP.NET Web API. Cloud Computing for the.NET Developer: IaaS, PaaS, and Patterns. Design Patterns for Testable Applications. Just a quick announcement for an developer upcoming event I’ll be participating in… Early November I’ll be co-teaching DevelopMentor’s biggest.NET developer event of the year in Los Angeles: Guerrilla.NET. hope to see you there! mkennedy. Michael C. Kennedy's Weblog - Tuesday, September 25, 2012 Use Common Instance Factory to Abstract Away the Dependency Injection Container while back I wrote a blog post on the Onion Architecture , an approach to building loosely-coupled applications where you can swap out particular components without affecting the rest of the application. When searching for a way to abstract away the DI container, the first solution I examined was the Common Service Locator , built by Microsoft’s Patterns and Practices group back in 2008 with the source code posted on CodePlex. This discourages folks from using the factory for service location and instead promotes the dependency injection pattern described by Martin Fowler. DevelopMentor Courses - Wednesday, May 23, 2012 | -
| The Best from DevelopMentor | MORE | - Digging into WCF REST
Last Thursday evening I presented a talk to the Dallas.NET User Group on support in WCF 4 for building REST-ful services. Here is a summary of the talk: To REST or Not To REST? Building REST-ful Services with the WCF Web Programming Model REST is defined as an architectural style for building services that embrace the principles of the web. Tony will provide concrete examples of where it makes sense to implement REST-ful web services. and Visual Studio 2010, folding in features we first saw in the REST Starter Kit, which is now largely obsolete. Tony and Zuzana's World - Saturday, September 10, 2011 - Roll Your Own REST-ful WCF Router
However, as the MSDN documentation for the WCF Router states, “ The Routing Service does not currently support routing of WCF REST services. The reason is fairly simple: the WCF Routing Service performs routing of messages in a way that is independent of the underlying transport, whereas a REST-based architecture is deeply rooted in the HTTP protocol and relies on the URI for delivery semantics. While the ASP.NET MVC or the new ASP.NET Web API might seems like attractive options, WCF is the way to go if you need to accommodate both Soap-based and Rest-ful clients. Enjoy. DevelopMentor Courses - Tuesday, April 24, 2012 - How to get started with Knockout.js
Once you get into doing more client side JavaScript code with business applications and REST services you are going to run into the question of how to construct the client side HTML required to show the data to the users. Not that it is exactly the same but it uses the same MVVM pattern and data binding that Silverlight developers are used to. REST dotnetmag HTML5 Knockout jQueryUsing jQuery Assuming most people are going to be using jQuery on the client you might start with some jQuery code to generate HTML. click( function () {. $.getJSON( then( function (books) {. $.each(books, The Problem Solver - Monday, February 6, 2012 - WCF Duplex Messaging
There are many ways that messages can be exchanged between two parties in a service based system: the client can send messages to the server and never get any back; the client can send a message and wait for a response; the client and service can send eachother messages without any pre-defined pattern; the client can send the service a message but not wait synchronously for a response and then then service can send a message back asynchronously; and there are many others. It Worked for the First 10 Clients and then the Rest Timed Out! What is Duplex Messaging? OperationContract]. .NET Meanderings - Tuesday, June 9, 2009 - Guide to Claims-based Identity and Access Control (2nd Edition)
This fell through the cracks over the summer holiday time: The 2nd edition of the Patterns & Practices “claims guide” has been released. We added a lot of content around ADFS, Access Control Service, REST and SharePoint. This is excellent! All source code is available as well! Grab it from: [link]. Or use my vanity URL: [link]. IdentityModel www.leastprivilege.com - Friday, October 28, 2011 - Securing WCF Data Services using WIF
That said, depending on your scenario you might have to be a little more creative for REST-style services. The usage pattern is the same as without any tokens or WIF. This questions comes up every once in a while. Since WCF Data Services is just a normal WCF service (using the web programming model), all the typical security APIs and extensibility points apply. Here’s a quick walkthrough: Enabling WIF in the Data Service. The easiest way to get WIF wired up is by writing a custom service host factory. gave it a try for SWT tokens (see here for the general SWT integration story). www.leastprivilege.com - Monday, February 15, 2010 - Use Common Instance Factory to Abstract Away the Dependency Injection Container
while back I wrote a blog post on the Onion Architecture , an approach to building loosely-coupled applications where you can swap out particular components without affecting the rest of the application. When searching for a way to abstract away the DI container, the first solution I examined was the Common Service Locator , built by Microsoft’s Patterns and Practices group back in 2008 with the source code posted on CodePlex. This discourages folks from using the factory for service location and instead promotes the dependency injection pattern described by Martin Fowler. DevelopMentor Courses - Wednesday, May 23, 2012 %>
| | |