ASP.NET Web API 2 : building a REST service from start to finish / Jamie Kurtz, Brian Wortman.

The ASP.NET MVC Framework has always been a good platform on which to implement REST-based services, but the introduction of the ASP.NET Web API Framework raised the bar to a whole new level. Now in release version 2.1, the Web API Framework has evolved into a powerful and refreshingly usable platfo...

Full description

Saved in:
Bibliographic Details
Online Access: Full Text (via Skillsoft)
Main Authors: Kurtz, Jamie (Author), Wortman, Brian (Author)
Format: eBook
Language:English
Published: [Berkeley, CA] : Apress, [2014]
Series:Expert's voice in ASP.NET.
Subjects:

MARC

LEADER 00000cam a2200000 i 4500
001 b12291939
006 m o d
007 cr |||||||||||
008 140815s2014 caua o 001 0 eng d
005 20240703204415.2
019 |a 892538871  |a 907303062  |a 908082921  |a 1005830874  |a 1048143210  |a 1066656122  |a 1086492448  |a 1110973572  |a 1112517639  |a 1112822972  |a 1129377683 
020 |a 9781484201091  |q (electronic bk.) 
020 |a 1484201094  |q (electronic bk.) 
020 |z 9781484201107 
020 |z 1484201108 
024 7 |a 10.1007/978-1-4842-0109-1  |2 doi 
029 1 |a AU@  |b 000056006342 
029 1 |a CHNEW  |b 000890478 
029 1 |a CHVBK  |b 37449195X 
029 1 |a DEBBG  |b BV043617665 
035 |a (OCoLC)sks887184926 
035 |a (OCoLC)887184926  |z (OCoLC)892538871  |z (OCoLC)907303062  |z (OCoLC)908082921  |z (OCoLC)1005830874  |z (OCoLC)1048143210  |z (OCoLC)1066656122  |z (OCoLC)1086492448  |z (OCoLC)1110973572  |z (OCoLC)1112517639  |z (OCoLC)1112822972  |z (OCoLC)1129377683 
037 |a sks70700 
040 |a GW5XE  |b eng  |e rda  |e pn  |c GW5XE  |d YDXCP  |d COO  |d S4S  |d BTCTA  |d OCLCF  |d UPM  |d UWO  |d IDEBK  |d EBLCP  |d OCLCQ  |d Z5A  |d MERUC  |d ESU  |d OCLCQ  |d VT2  |d IOG  |d N$T  |d REB  |d CEF  |d DEHBZ  |d OCLCQ  |d INT  |d U3W  |d OCLCQ  |d WYU  |d YOU  |d OCLCQ  |d DCT  |d ERF  |d OCLCQ  |d AJS  |d OCLCO  |d INARC  |d OCLCQ  |d OCLCO  |d OCLCL  |d OCLCQ 
049 |a GWRE 
050 4 |a QA76.76.A63 
100 1 |a Kurtz, Jamie,  |e author. 
245 1 0 |a ASP.NET Web API 2 :  |b building a REST service from start to finish /  |c Jamie Kurtz, Brian Wortman. 
264 1 |a [Berkeley, CA] :  |b Apress,  |c [2014] 
264 4 |c ©2014 
300 |a 1 online resource (xv, 249 pages) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a volume  |b nc  |2 rdacarrier 
347 |a text file  |b PDF  |2 rda 
490 1 |a The expert's voice in ASP.NET 
588 0 |a Online resource; title from PDF title page (EBSCO, viewed November 28, 2017). 
500 |a Includes index. 
520 |a The ASP.NET MVC Framework has always been a good platform on which to implement REST-based services, but the introduction of the ASP.NET Web API Framework raised the bar to a whole new level. Now in release version 2.1, the Web API Framework has evolved into a powerful and refreshingly usable platform. This concise book provides technical background and guidance that will enable you to best use the ASP.NET Web API 2 Framework to build world-class REST services. New content in this edition includes: - New capabilities in Web API 2 (currently version 2.1). - Support for partial updates, or PATCH. - API versioning. - Support for legacy SOAP-based operations. - How to handle non-resource APIs using REST - How to best expose relationships between resources - JSON Web Tokens, CORS, CSRF Get ready for authors Jamie Kurtz and Brian Wortman to take you from zero to REST service hero in no time at all. No prior experience with ASP.NET Web API is required; all Web API-related concepts are introduced from basic principles and developed to the point where you can use them in a production system. A good working knowledge of C♯ and the .NET Framework are the only prerequisites to best benefit from this book. 
505 0 0 |g Machine generated contents note:  |g ch. 1  |t ASP.NET as a Service Framework --  |t In the Land of JavaScript and Mobile Devices --  |t Advantages of Using the ASP.NET Web API --  |t Configuration --  |t REST by Default --  |t Abstraction with Routes --  |t Controller Activation Is, Well, Very Nice --  |t Simpler Extensible Processing Pipeline --  |t Interoperability of JSON, XML, and REST --  |t Few Feature Highlights of the ASP.NET Web API --  |t Summary --  |g ch. 2  |t What Is RESTful? --  |t From RPC to REST --  |t XML-RPC and SOAP --  |t URIs and Resources --  |t HTTP Verbs --  |t HATEOAS --  |t HTTP Status Codes --  |t HAL, Collection+JSON --  |t Summary --  |g ch. 3  |t Designing the Sample REST API --  |t Task Management Resource Types --  |t Hypermedia Links --  |t Modeling the URIs and HTTP Verbs --  |t Task-Management Data Model --  |t Choosing Architecture Components --  |t Data Access --  |t Type Mapper --  |t IoC Container --  |t Logger --  |t Testing Framework --  |t Mocking Framework --  |t Summary --  |g ch. 4  |t Building the Environment and Creating the Source Tree --  |t Configuring the Machine --  |t Windows 8 64-bit with .NET Framework 4.51 --  |t SQL Server 2012 --  |t Visual Studio 2013 --  |t NuGet Package Manager 2.6 --  |t Creating the Folder Structure --  |t Creating the Solution --  |t NuGet Config File --  |t Adding the Projects --  |t Basic Components --  |t Domain Model --  |t Service Model Types --  |t Logging --  |t Database --  |t Summary --  |g ch. 5  |t Up and Down the Stack with a POST --  |t Routing --  |t Adding an HttpRequestMessage Argument --  |t Adding a Model Object Argument --  |t Attribute-Based Routing --  |t Versioning --  |t Implementing POST --  |t Dependencies --  |t Constructor Injection of Dependencies --  |t Configuring Ninject Dependency Injection --  |t Container Configuration --  |t Container Bindings --  |t IDependencyResolver for Ninject --  |t Completing NinjectWebCommon --  |t NHibernate Configuration and Mappings --  |t Database Configuration: Overview --  |t Adding Concurrency Support to Entities --  |t Entity Mapping --  |t Mapping Relationships --  |t Database Configuration: Bringing It All Together --  |t Managing the Unit of Work --  |t Database Transaction Control --  |t Diagnostic Tracing --  |t Error Handling --  |t Persisting a Task and Returning IHttpActionResult --  |t New Service Model Type --  |t Persisting the Task --  |t IHttpActionResult --  |t Summary --  |g ch. 6  |t Securing the Service --  |t Main Idea --  |t Authentication --  |t Authorization --  |t Overview of the Authentication and Authorization Process --  |t Securing the POST --  |t Authorization Filter --  |t Message Handler to Support HTTP Basic Authentication --  |t Securing Non-Resource API Operations --  |t Activate a Task --  |t Complete a Task --  |t Reactivate a Task --  |t Auditing --  |t GET a Task --  |t Applying Token-Based Security --  |t Token Basics --  |t JSON Web Token --  |t Configuring the JwtAuthForWebAPI Package --  |t Getting a Task Using a JWT --  |t SSL, XSS, CORS, and CSRF --  |t Summary --  |g ch. 7  |t Dealing with Relationships, Partial Updates, and Other Complexities --  |t Task and User Relationships --  |t Partial Update of a Task Using PUT/PATCH --  |t Validation Using an Action Filter --  |t Specialized Action Filter to Validate Task Updates --  |t Generalized Action Filter to Validate New Tasks --  |t Paging of Results --  |t Constructing the Filter with a Data Request Factory --  |t Filtering the Results --  |t Hypermedia Links --  |t Common Link Service --  |t Business Domain-Specific Link Services --  |t Putting It Together --  |t Summary --  |g ch. 8  |t Supporting Diverse Clients --  |t Project Requirements --  |t Content Negotiation --  |t Supporting SOAP-Based Clients --  |t Where Is the Controller? --  |t Configuring the Route --  |t Adding a Custom Formatter --  |t Summary --  |g ch. 9  |t Completing the Picture --  |t Testing the API --  |t Unit Testing --  |t Integration Testing --  |t Going Live! --  |t Logging In --  |t Support for CORS --  |t Summary. 
650 0 |a Application program interfaces (Computer software) 
650 7 |a Application program interfaces (Computer software)  |2 fast 
700 1 |a Wortman, Brian,  |e author. 
758 |i has work:  |a ASP.NET Web API 2 (Text)  |1 https://id.oclc.org/worldcat/entity/E39PCG7kDPDv86FywBCyQPtrhd  |4 https://id.oclc.org/worldcat/ontology/hasWork 
776 0 8 |i Printed edition:  |z 9781484201107 
830 0 |a Expert's voice in ASP.NET. 
856 4 0 |u https://ucblibraries.skillport.com/skillportfe/main.action?assetid=70700  |z Full Text (via Skillsoft) 
915 |a - 
956 |a Skillsoft ITPro 
956 |b Skillsoft ITPro Skillport Collection 
994 |a 92  |b COD 
998 |b WorldCat record encoding level change 
999 f f |i 6d47456f-8fb0-5040-8e7c-db3b57210b69  |s 67b45bcf-f12d-5ace-ada6-e938c3f0a4e6 
952 f f |p Can circulate  |a University of Colorado Boulder  |b Online  |c Online  |d Online  |e QA76.76.A63  |h Library of Congress classification  |i web  |n 1