Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sean-bradley/seansowinrestfulservice
RESTful Service using .Net4.5.2 and OWIN demonstrating implementation of verbs GET, POST, PUT, DELETE
https://github.com/sean-bradley/seansowinrestfulservice
csharp microservice owin rest restful self-hosted
Last synced: 20 days ago
JSON representation
RESTful Service using .Net4.5.2 and OWIN demonstrating implementation of verbs GET, POST, PUT, DELETE
- Host: GitHub
- URL: https://github.com/sean-bradley/seansowinrestfulservice
- Owner: Sean-Bradley
- Created: 2016-01-29T09:30:11.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-07-14T19:57:40.000Z (over 6 years ago)
- Last Synced: 2024-11-13T13:54:56.533Z (3 months ago)
- Topics: csharp, microservice, owin, rest, restful, self-hosted
- Language: HTML
- Size: 4.88 KB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Seans OWIN Restful Service
RESTful Service using .Net4.5.2 and OWIN demonstrating implementation of verbs GET, POST, PUT, DELETETo Build,
Open Visual Studio 2015 Express
Create new no frills basic C# Console Appliction
Open NuGet package manager, and install following packages.
PM> Install-Package Microsoft.AspNet.WebApi.OwinSelfHost
PM> Install-Package Microsoft.AspNet.WebApi.Cors
Copy paste the Program.cs code from this SeansOWINRestfulService into your project Program.cs
and run it.
Self Hosetd RESTful service that supports GET, POST, PUT and DELETE against a vary basic data store is now running at http://127.0.0.1:8080/
Also included,
a basic index.html to test it with.
The index.html is simple html and javascript, so you can host it on any webserver of your choice.