ServiceStack 4 Cookbook
eBook - ePub

ServiceStack 4 Cookbook

Kyle Hodgson, Darren Reid

Partager le livre
  1. 444 pages
  2. English
  3. ePUB (adapté aux mobiles)
  4. Disponible sur iOS et Android
eBook - ePub

ServiceStack 4 Cookbook

Kyle Hodgson, Darren Reid

DĂ©tails du livre
Aperçu du livre
Table des matiĂšres
Citations

Foire aux questions

Comment puis-je résilier mon abonnement ?
Il vous suffit de vous rendre dans la section compte dans paramĂštres et de cliquer sur « RĂ©silier l’abonnement ». C’est aussi simple que cela ! Une fois que vous aurez rĂ©siliĂ© votre abonnement, il restera actif pour le reste de la pĂ©riode pour laquelle vous avez payĂ©. DĂ©couvrez-en plus ici.
Puis-je / comment puis-je télécharger des livres ?
Pour le moment, tous nos livres en format ePub adaptĂ©s aux mobiles peuvent ĂȘtre tĂ©lĂ©chargĂ©s via l’application. La plupart de nos PDF sont Ă©galement disponibles en tĂ©lĂ©chargement et les autres seront tĂ©lĂ©chargeables trĂšs prochainement. DĂ©couvrez-en plus ici.
Quelle est la différence entre les formules tarifaires ?
Les deux abonnements vous donnent un accĂšs complet Ă  la bibliothĂšque et Ă  toutes les fonctionnalitĂ©s de Perlego. Les seules diffĂ©rences sont les tarifs ainsi que la pĂ©riode d’abonnement : avec l’abonnement annuel, vous Ă©conomiserez environ 30 % par rapport Ă  12 mois d’abonnement mensuel.
Qu’est-ce que Perlego ?
Nous sommes un service d’abonnement Ă  des ouvrages universitaires en ligne, oĂč vous pouvez accĂ©der Ă  toute une bibliothĂšque pour un prix infĂ©rieur Ă  celui d’un seul livre par mois. Avec plus d’un million de livres sur plus de 1 000 sujets, nous avons ce qu’il vous faut ! DĂ©couvrez-en plus ici.
Prenez-vous en charge la synthÚse vocale ?
Recherchez le symbole Écouter sur votre prochain livre pour voir si vous pouvez l’écouter. L’outil Écouter lit le texte Ă  haute voix pour vous, en surlignant le passage qui est en cours de lecture. Vous pouvez le mettre sur pause, l’accĂ©lĂ©rer ou le ralentir. DĂ©couvrez-en plus ici.
Est-ce que ServiceStack 4 Cookbook est un PDF/ePUB en ligne ?
Oui, vous pouvez accĂ©der Ă  ServiceStack 4 Cookbook par Kyle Hodgson, Darren Reid en format PDF et/ou ePUB ainsi qu’à d’autres livres populaires dans Informatique et DĂ©veloppement Web. Nous disposons de plus d’un million d’ouvrages Ă  dĂ©couvrir dans notre catalogue.

Informations

Année
2015
ISBN
9781783986569

ServiceStack 4 Cookbook


Table of Contents

ServiceStack 4 Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Support files, eBooks, discount offers, and more
Why Subscribe?
Free Access for Packt account holders
Preface
What this book covers
What you need for this book
Who this book is for
Sections
Getting ready
How to do it

How it works

There's more

See also
Conventions
Reader feedback
Customer support
Downloading the example code
Downloading the color images of this book
Errata
Piracy
Questions
1. Configuration and Routing
Introduction
Why REST?
Up and running with ServiceStack
How to do It...
How it works...
There's more...
Routing using data transfer object attributes
Getting ready
How to do It...
How it works...
There's more...
Isolating web service routes from a web application
Getting ready
How to do It...
How it works...
There's more...
Common ServiceStack plugins
How to do It...
How it works...
Writing a custom audit plugin
How to do It...
How it works...
See also
Adding Routes via the API
How to do It...
How it works

There's more...
Structuring your project to avoid dependency issues
Getting ready
How to do It
Managing dependencies with Funq and Inversion of Control (IoC)
Getting ready
How to do It

How it works

Sharing and accessing configuration and common functionality using Funq IoC
Getting ready...
How to do It...
How it works...
There's more...
2. Services and Data Transfer Objects
Introduction
Creating a basic create/read/update/delete service
Getting ready
How to do it...
How it works...
There's more

See also
Splitting HTTP request methods
Getting ready
How to do it

There's more...
Hosting services from different assemblies
Getting ready
How to do it

How it works

There's more

Utilizing the original HTTP request
Getting ready
How to do it

How it works

There's more

See also
Overriding serialization of request object types
Getting ready
How to do it

How it works

Creating a simple admin service
Getting ready
How to do it

How it works

See also
Intercepting requests and responses using attributes
How to do It

How it works

There's more

Making a basic proxy for existing web services
How to do It

How it works

Wrapping multiple existing services and exposing them through ServiceStack
How to do it

3. Testing and Logging
Introduction
Unit testing ServiceStack applications
Getting ready
How to do it

How it works

There's more

Integration testing with the ServiceStack C# client
Getting ready
How to do it

How it works

There's more

Functional contract testing ServiceStack services
Getting ready
How to do it

How it works

Testing POST
Testing PUT
Testing DELETE
Accessing the request-and-response object with the JsonServiceClient
Getting ready
How to do it

How it works

There's more

Continuous Integration with TeamCity and self-hosted services
Getting ready
How to do it

How it works

There's more

Logging with a choice of frameworks
Getting ready
How to do it

How it works

There's more

Writing a logger to monitor exceptions via e-mail
Getting ready
How to do it

How it works

There's more

4. Object Relational Mapping (OrmLite)
Introduction
Modeling your database with types and attributes
Getting ready
How to do it

How it works

PrimaryKey attribute
AutoIncrement attribute
References attribute
There's more

Using and accessing OrmLite
Getting ready
How to do it

How it works

See also
Using OrmLite filters to create audit functionality
Getting ready
How to do it

How it works

There's more

CRUD and other common operations
Getting ready
How to do it

How it works

Creating records
Updating records
Deleting records
There's more

Utilizing stored procedures using OrmLite
Getting ready
How to do it

How it works

OrmLiteSPStatement
Writing our own wrapper
There's more

Mapping custom queries to POCOs
Getting ready
How to do it

How it works

Starting with an existing database with OrmLite and T4 templates
Getting ready
How to do it

How it works

There's more

Working with Entity Framework and ServiceStack
Getting ready
How to do it

How it works

5. HTML and Form Data
Introduction
Getting started with ServiceStack and Razor templates
Getting ready
How to do it

How it works

There's more

Using Markdown for website content
Getting ready
How to do it

How it works

Handling file uploads and streaming data from services
Getting ready
How to do it

How it works

There's more

Testing file uploads
Overriding Razor views or templates using attributes
Getting ready
How to do it

How it works

There's more

Creating and displaying a login and registration page based on authentication
Getting ready
How to do it

How it works

There's more

Submitting a form to a service and handling server-side validation on an HTML client
Getting ready
How to do it

How it works

6. Filters and Validators
Introduction
Creating static validation rules using fluent syntax
How to do it

How it works

There's more

Returning meaningful HTTP error messages
Getting ready
How to do it

How it works

There's more

Adding custom headers via the response filter
Getting ready
How to do it

How it works

There's more

Restricting file uploads by type using filters
Getting ready
How to do it

How it works

There's more

Creating a user-configurable HTTP callback service using a response filter
Getting ready
How to do it

How it works

Applying a rate limit to a web service endpoint using request filter
Getting ready
How to do it

How it works

There's more

Restrict user actions by session details using a validator
Getting ready
How to do it

How it works

There's more

Common HTTP status codes
7. Security and Authentication
Introduction
Getting started with authentication, sessions, registration, and user repositories
Getting ready
How to do it

How it works

Getting started with Twitter authentication
Getting ready
How to do it

How it works

Getting started with Google authentication
Getting ready
How to do it

How it works

Getting started with Facebook authentication
Getting ready
How to do it

How it works

Using multiple authentication providers and persisting a user's preferred profile image
Getting ready
How t...

Table des matiĂšres