reklama - zainteresowany?

RESTful .NET. Build and Consume RESTful Web Services with .NET 3.5 - Helion

RESTful .NET. Build and Consume RESTful Web Services with .NET 3.5
ebook
Autor: Jon Flanders
ISBN: 978-05-965-5433-0
stron: 310, Format: ebook
Data wydania: 2008-11-21
Księgarnia: Helion

Cena książki: 118,15 zł (poprzednio: 137,38 zł)
Oszczędzasz: 14% (-19,23 zł)

Dodaj do koszyka RESTful .NET. Build and Consume RESTful Web Services with .NET 3.5

Tagi: .NET - Programowanie

RESTful .NET is the first book that teaches Windows developers to build RESTful web services using the latest Microsoft tools. Written by Windows Communication Foundation (WFC) expert Jon Flanders, this hands-on tutorial demonstrates how you can use WCF and other components of the .NET 3.5 Framework to build, deploy and use REST-based web services in a variety of application scenarios.

RESTful architecture offers a simpler approach to building web services than SOAP, SOA, and the cumbersome WS- stack. And WCF has proven to be a flexible technology for building distributed systems not necessarily tied to WS- standards. RESTful .NET provides you with a complete guide to the WCF REST programming model for building web services consumed either by machines or humans. You'll learn how to:

  • Program Read-Only (GET) services
  • Program READ/WRITE services
  • Host REST services
  • Program REST feeds
  • Program AJAX REST clients
  • Secure REST endpoints
  • Use workflow to deliver REST services
  • Consume RESTful XML services using WCF
  • Work with HTTP
  • Work with ADO.NET Data Services (Astoria)

RESTful .NET introduces you to the ideas of REST and RESTful architecture, and includes a detailed discussion of how the Web/REST model plugs into the WCF architecture. If you develop with .NET, it's time to jump on the RESTful bandwagon. This book explains how.

"While REST is simple, WCF is not. To really understand and exploit this part of WCF requires a knowledgeable and experienced guide. I don't know anybody who's better suited for this role than Jon Flanders. ...Jon is first-rate at explaining complicated things. This book is the best introduction I've seen to creating and using these services with WCF."--David Chappell, Chappell & Associates

Dodaj do koszyka RESTful .NET. Build and Consume RESTful Web Services with .NET 3.5

 

Osoby które kupowały "RESTful .NET. Build and Consume RESTful Web Services with .NET 3.5", wybierały także:

  • Domain-Driven Design dla .NET Core. Jak rozwiÄ…zywać zÅ‚ożone problemy podczas projektowania architektury aplikacji
  • Gray Hat C#. JÄ™zyk C# w kontroli i Å‚amaniu zabezpieczeÅ„
  • PowerShell. Kurs video. Zarz
  • ASP .NET Core. Kurs video. Rozwijanie dodatkowych funkcjonalnoÅ›ci Web API
  • Programowanie asynchroniczne i równolegÅ‚e w C#. Kurs video. Poziom podstawowy

Dodaj do koszyka RESTful .NET. Build and Consume RESTful Web Services with .NET 3.5

Spis treści

RESTful .NET. Build and Consume RESTful Web Services with .NET 3.5 eBook -- spis treści

  • RESTful .NET
    • SPECIAL OFFER: Upgrade this ebook with OReilly
    • Foreword
    • Preface
      • Who This Book Is For
      • How This Book Is Organized
      • What You Need to Use This Book
      • Conventions Used in This Book
      • Using Code Examples
      • How to Contact the Author
      • Comments and Questions
      • Acknowledgments
    • 1. REST Basics
      • Architecture of the World Wide Web
      • SOAP
      • REST
        • Resources and URIs
          • URI design
        • Uniform Interface
        • Resource Representations
          • XML
          • RSS/Atom
          • XHTML
          • JSON
          • Other media types
      • Implementing a Simple RESTful Service Example
        • Resources
        • URIs and Uniform Interface
        • Representations
        • Interaction
        • Wrap-Up
      • Processes
      • Summary
    • 2. WCF RESTful Programming Model
      • Isnt WCF All About SOAP?
      • Channels and Dispatching
      • HTTP Programming with WCF 3.0
      • Web Programming in WCF 3.5
        • WebHttpBinding
        • WebHttpBehavior
        • WebServiceHost
        • WebOperationContext
        • WebGetAttribute
      • UriTemplate
        • UriTemplate Literal Values
        • UriTemplate Special Values
        • UriTemplate QueryString
      • Summary
    • 3. Programming Read-Only Services
      • Using WebGetAttribute and UriTemplate
      • Data Formats
        • Message
        • DataContract
        • XmlSerializer
        • Hybrid Approach
      • Summary
    • 4. Programming Read/Write Services
      • POST, PUT, and DELETE
      • Using WebInvokeAttribute
        • Resources
        • URIs and Uniform Interface
        • Representations
        • Implementation
          • POST
          • PUT
          • DELETE
          • Full service implementation
      • Summary
    • 5. Hosting WCF RESTful Services
      • WCF REST Hosting Isnt a Special Case
      • Self-Hosting
        • Configuring, Opening, and Closing a ServiceHost
        • Base Addresses
        • ServiceHost Versus WebServiceHost
        • Custom ServiceHost
      • Hosting in IIS
        • ASP.NET Compatibility
        • Multiple Hostnames
        • Removing the .svc File Extension
      • Custom ServiceHostFactory
      • Hosting Wrap-Up
      • Summary
    • 6. Programming Feeds
      • Building a Feed with WCF
        • SyndicationItem
        • Formatters
      • Exposing a Feed on a Live URI
      • Feed Validation
      • Adding Links to a Feed
      • Summary
    • 7. Programming Ajax and Silverlight Clients
      • WCF Web Services and Ajax
      • JSON
        • JSON-Enabling a Service Endpoint
      • ASP.NET Ajax
      • Silverlight 1.0
      • Silverlight 2.0
        • Parsing XML in Silverlight 2.0
          • Using XmlReader
          • Using XDocument
          • Using XmlSerialization
          • XML parsing wrap-up
        • Parsing JSON in Silverlight 2.0
        • Consuming Feeds in Silverlight 2.0
        • Cross-Domain Security in Silverlight 2.0
      • Returning JSON and XML Conditionally with a Single Method
      • Summary
    • 8. Securing REST Endpoints
      • Authenticating: Self-Hosted Endpoints
        • Setting Endpoint Security: WebHttpBinding.Securitys Mode Property
        • Setting Authentication Requirements: WebHttpBindings Transport Property
          • Certificate authentication
          • Windows authentication
          • NTLM authentication
          • Digest authentication
          • Basic authentication
      • Authenticating: Managed Hosting Endpoints
      • Authorizing Endpoints
        • Authorization with Impersonation
        • Role-Based Authorization
          • Using the PrincipalPermissionAttribute
          • The ServiceAuthorizationManager class
      • Summary
    • 9. Using Workflow to Deliver REST Services
      • Consuming REST Services from WF
      • The SendActivity Instance
      • The ReceiveActivity Instance
      • Stateless Workflow Services
      • Stateful Workflow Services
      • Summary
    • 10. Consuming RESTful XML Services Using WCF
      • Defining the Client
        • Generating the Contract
        • Creating the Resource Representations
        • Creating the ServiceContract
        • Using the Service
      • Client Extensibility
      • Summary
    • 11. Working with HTTP
      • Programming HTTP with WCF
        • IncomingWebRequestContext
        • OutgoingWebResponseContext
        • OutgoingWebRequestContext
        • IncomingWebResponseContext
        • Context Wrap-Up
      • Status Codes
        • 201 Created
        • 404 Not Found
      • Conditional GET
        • LastModified
        • ETags
      • Caching
        • Output Caching
        • HttpContext.Cache
        • Content-Type
      • Summary
    • A. WCF 3.5 SP1
      • Atom Publishing Protocol
        • AtomPub in WCF 3.5 SP1
      • UriTemplate Changes
      • Attribute-Free DataContract Serialization
      • Summary
    • B. ADO.NET Data Services
      • Building an ADO.NET Data Service
      • ADO.NET Data Services and AtomPub
        • Query Option
        • Custom Service Operations
        • Intercepting
        • Client Library
      • Summary
    • C. ADO.NET Entity Framework Walkthrough
      • Creating the Data Model
    • Index
    • About the Author
    • Colophon
    • SPECIAL OFFER: Upgrade this ebook with OReilly

Dodaj do koszyka RESTful .NET. Build and Consume RESTful Web Services with .NET 3.5

Code, Publish & WebDesing by CATALIST.com.pl



(c) 2005-2024 CATALIST agencja interaktywna, znaki firmowe należą do wydawnictwa Helion S.A.