hamid hasani
hamid hasani

Reputation: 571

How to implement soa concept in asp.net web api project?

I know some basic concepts about SOA. But I don't know how I can develop a project based on SOA. So, I want to know a way for implementing SOA in Asp.NET Web API project.

Upvotes: 2

Views: 1231

Answers (1)

coolcake
coolcake

Reputation: 2967

SOA is not a technology but a style of design/Architecture. There are different implementations of this. They are as follows.

Web services based on WSDL and SOAP
Messaging, e.g., with ActiveMQ, JMS, RabbitMQ
RESTful HTTP, with Representational state transfer (REST) constituting its own constraints-based architectural style
OPC-UA
WCF (Microsoft's implementation of Web services, forming a part of WCF)
Apache Thrift
SORCER

ASP.Net Core supports REST api and if you looking at implementing SOAP based service using asp.net core here is a handy link for this

https://stackify.com/soap-net-core/

There are many videos on youtube and there are many websites to learn REST services. If you are familiar with c# and asp.net, you can start learn ASP.NET Core to build your restful services.

Here is a link to one video links.

Upvotes: 1

Related Questions