0
Answer

Webservice use case

Adam Ash

Adam Ash

3y
557
1
I need to create a webservice that will be sitting on a Windows Server 2019 and will be sending data from one database to another. The first database will trigger the webservice by sending a request when certain conditions are met. Once the webservice has been sent the data, it will send that data to the other database. I see there are numerous ways to host a webservice:
  • Self Hosting in console application
  • Windows Form application hosting
  • Windows Service hosting
  • WAS hosting
  • IIS hosting
I believe for this use case either IIS or console app hosting would work. Any suggestions on which method of hosting I should implement?