https://github.com/servicestack/servicestack.usecases
Repository contains the projects with common use cases for ServiceStack.
https://github.com/servicestack/servicestack.usecases
Last synced: 6 months ago
JSON representation
Repository contains the projects with common use cases for ServiceStack.
- Host: GitHub
- URL: https://github.com/servicestack/servicestack.usecases
- Owner: ServiceStack
- License: other
- Created: 2012-10-10T14:35:43.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2016-01-01T08:07:46.000Z (almost 10 years ago)
- Last Synced: 2025-06-30T04:49:47.993Z (6 months ago)
- Language: C#
- Homepage:
- Size: 19 MB
- Stars: 64
- Watchers: 15
- Forks: 90
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ServiceStack common Use Cases
The repository contains the list of projects with common use cases of [ServiceStack](http://www.servicestack.net).
- [CustomAuthentication](https://github.com/ServiceStack/ServiceStack.UseCases/tree/master/CustomAuthentication) demonstrates how to create a custom [AuthUserSession](https://github.com/ServiceStack/ServiceStack/blob/master/src/ServiceStack.ServiceInterface/Auth/AuthUserSession.cs) and how to create your own [AuthProvider](https://github.com/ServiceStack/ServiceStack/blob/master/src/ServiceStack.ServiceInterface/Auth/AuthProvider.cs). The project also shows couple ways how to invoke authentication service using Ajax request with [jQuery](http://jquery.com/) or using [JsonServiceClient](https://github.com/ServiceStack/ServiceStack/blob/master/src/ServiceStack.Common/ServiceClient.Web/JsonServiceClient.cs) together with ASP.NET Form.
- [CustomAuthenticationMvc](https://github.com/ServiceStack/ServiceStack.UseCases/tree/master/CustomAuthenticationMvc) is a project based on MVC4 default template. Shows how to use [ServiceStack Authentication](https://github.com/ServiceStack/ServiceStack/wiki/Authentication-and-authorization) together with MVC4 controllers. How to invoke services which require authentication and shows how to use [ServiceStack Session](https://github.com/ServiceStack/ServiceStack/wiki/Sessions) to store variables.
- [NodeStackProxy](https://github.com/ServiceStack/ServiceStack.UseCases/tree/master/NodeStackProxy) demonstrates how to use [Node.js](http://nodejs.org/) with self-hosted ServiceStack. Contains scripts for Windows & Linux.