Building SOAP Web Service API

Viewed 15

I have to write APIs using SOAP as a protocol. I was trying to figure out what the best solution is nowadays. As authentication I would need basic http authentication.

I was looking at the possibilities regarding .NET (I'm open to other frameworks anyway).

I saw that there are two projects for .NET Core:

As for .NET I found:

  • WCF
  • ASMX

I wanted to understand which was the easiest way, if there are other services in .NET (or even other frameworks) considering that I am only interested in exposing SOAP endpoints with HTTP Basic Authentication

1 Answers

I think your question is a good and sound one, however it is not on topic enough for stackoverflow; I mean the answer will be subjective and opinionated. So my advice is to check this with your development team or organisation. Maybe there are some operations aspects to consider as well? If it entirely up you the try the different flavors and pick the one you like the most!? That is my subjective and opinionated answer!

Related