How to get started with WCF web service using MonoDevelop?

How to get started in developing a WCF web service using MonoDevelop, are there any project templates?

My experience with the Eclipse approach is Java Servlet, however I need to develop a WCF web service using C #, now anyone can give a hint on where to start.

I know that my question is quite broad, since there are many types of web services that can be created using WCF, and I will start right away with WCF.

Greetings.

+6
source share
1 answer

I would recommend a very good alternative to WCF: ServiceStack.NET . As the author stated ...

A modern, code-based, DTO-based WCF replacement web services infrastructure that encourages best practices for building DRY, high-performance, scalable REST web services.

My current choice is to develop web services that run smoothly on IIS or on Linux servers.

The documentation is very good, and Demis (the author) was very helpful in answering questions posted by the community.

+2
source

Source: https://habr.com/ru/post/897124/


All Articles