| |
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.
|
43 Articles match "Application","Restful"
| Related DevelopMentor Courses | MORE | | Ninject WCF Extensions for RESTful Services The advantage of using DI is that it allows you to achieve loose coupling in your application architecture, so that you’re not tightly bound to a particular infrastructure implementation, such as data access or logging. had the need recently to set up a REST-style WCF Services project and wanted to use Ninject for DI with it. Luckily, the Ninject WCF Extension project had been updated to support REST, so I updated the Nuget package and discovered the project would not compile. Named( "Rest" ).WithConstructorArgument( Download the code for this post. NinjectWebCommon.cs DevelopMentor Courses - Sunday, April 8, 2012 Using SignalR for real time data updates In a previous post I showed how easy it is to create a simple chat application using SignalR. And chatting on the internet might be popular but as it turns out there are rather a lot of applications that need to do more than just chat. As it is there are a lot more CRUD style applications, where users edit data usually stored in a database for some purpose, than chat applications. So in this blog post I am using a simple CRUD, without the delete part, application to show the power of SignalR. REST HTML5 ASP.NET MVC SignalRvar hub = $.connection.booksHub; The Problem Solver - Wednesday, July 25, 2012 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. Nevertheless, there are times when it might make sense to build a router that can talk to clients who don’t know anything about Soap, for example, an AJAX web application. Enjoy. DevelopMentor Courses - Tuesday, April 24, 2012 |
72 Articles match "Application","Restful"
| The Latest from DevelopMentor | MORE | | Unit testing code depending on the ASP.NET #WebApi HttpClient But with a REST service there is both a client and a service component. In this case the client application contains the following class to load books from the REST WebAPI controller: 1: public class BooksClient. The GetBooks() function gets all books from the REST service. Not a whole lot but the REST convention is to return both an HTTP 201 Created status as well as the location of the new resource in an HTTP header. 'In a previous post I showed how to unit test an ASP.NET WebAPI Controller. 10: 11: public Uri BaseUrl { get; private set; }. 14: {. 21: {. The Problem Solver - Monday, May 20, 2013 A Roundup of MongoDB Management Tools MongoVUE is an innovative MongoDB desktop application for Windows OS that gives you an elegant and highly usable GUI interface to work with MongoDB. Import relational data from MySQL or SQLServer into MongoDB automatically and start building your applications right away. Directly work in the objects and classes of your application. REST view, price: $0 / open-source, platforms: Windows, OS X, Linux. My take : While this is just the basic REST API of MongoDB, you can monitor your log files, run commands using the REST API, and otherwise check in on your server. Michael C. Kennedy's Weblog - Monday, April 22, 2013 The #AngularJS $scope is not the MVC Model 'Index: Getting started with AngularJS Creating an AngularJS Controller The #AngularJS $scope is not the MVC Model In the previous post I showed how to create and use an MVC Controller in AngularJS to manage the logic of an application. And this means your application might just behave in an unexpected way as with the “bug” mentioned above. BTW the rest of this video is highly recommended as well. In this post I showed how to use the $scope variable that is passed into the Controller to share data between the Controller and the View. If you don’t have a “.” 10: 11: 12: +. The Problem Solver - Monday, April 15, 2013 | -
| The Best from DevelopMentor | MORE | - Using the WCF Web API in an ASP.NET MVC application
Warning: This post is based on a prerelease version of the WCF Web API In my previous blog post I showed how to add to and use the new WCF Web API a console application using NuGet. 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. null ). {. The Problem Solver - Monday, June 13, 2011 - Using HTTP status codes in a REST service
With SOAP service we gibe a calling application information about the error by returning a SOAP fault. This SOAP fault is just another piece of XML informing the calling application about whatever was wrong. When we are building REST service we embrace HTTP and as a result we also embrace all the HTTP status codes, not just 200 and 500. 3xx is all about redirection These are all about sending the calling application somewhere else for the actual resource. Typically a client application can retry the request. www.dotnetevents.nl.NET WCF REST dotnetmag The Problem Solver - Wednesday, July 20, 2011 - Building rich HTML 5 clients using REST services
You can download the slide from my session on Building rich HTML 5 clients using REST services here and the sample application using the WCF Web API here. www.dotnetevents.nl.NET WCF webcast ASP.NET REST dotnetmag HTML5The slides are also available on SlideShare. Enjoy! www.TheProblemSolver.nl The Problem Solver - Wednesday, October 26, 2011 - Access Control Service: Walkthrough Videos of Web Application, SOAP, REST and Silverlight Integration
This video does a quick walkthrough of the solution and shows the web application part. Part 3 – REST Service and Client. This part shows how to set up a WCF REST service that consumes SWT tokens from ACS. Unfortunately there is currently no standard WIF plumbing for REST. The Silverlight Client shows ho to sign in to the application using a registered identity provider (including web identities) and using the resulting SWT token to call our REST service. This is designed to be a desktop (OOB) client application (thanks to Jörg for the UI magic). www.leastprivilege.com - Tuesday, May 24, 2011 - 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 - Using SignalR for real time data updates
In a previous post I showed how easy it is to create a simple chat application using SignalR. And chatting on the internet might be popular but as it turns out there are rather a lot of applications that need to do more than just chat. As it is there are a lot more CRUD style applications, where users edit data usually stored in a database for some purpose, than chat applications. So in this blog post I am using a simple CRUD, without the delete part, application to show the power of SignalR. REST HTML5 ASP.NET MVC SignalRvar hub = $.connection.booksHub; The Problem Solver - Wednesday, July 25, 2012 - Ninject WCF Extensions for RESTful Services
The advantage of using DI is that it allows you to achieve loose coupling in your application architecture, so that you’re not tightly bound to a particular infrastructure implementation, such as data access or logging. had the need recently to set up a REST-style WCF Services project and wanted to use Ninject for DI with it. Luckily, the Ninject WCF Extension project had been updated to support REST, so I updated the Nuget package and discovered the project would not compile. Named( "Rest" ).WithConstructorArgument( Download the code for this post. NinjectWebCommon.cs DevelopMentor Courses - Sunday, April 8, 2012 %>
| | |