I have some data about some users in my database. I want to develop a service that send to a client through a URL (preferably a POST HTTP Request) the new data that are inserted in my DB.
To do that, I thought about using ASP.Net WebHooks (from that tutorial).
But multiple problems :
- it seems like it's hardly configurable
- can I use my own database tables ?
- the ASP.NET WebHooks solution seems very young (the packages are in prerelease), is it safe to use it now ?
Basically, should I use this solution or, if not, what are the alternatives ? (other library, develop my own solution...).
Thanks