0

I have a simple web API 2.0 that I want to host in azure websites. Do I need owin for this or does owin only make sense when you are using Azure Web worker?

caa
  • 406
  • 1
  • 8
  • 16

1 Answers1

1

A Web API based on Owin works just fine in Azure Web Apps, as long as it's configured to be IIS-hosted. You do not have to use Owin of course.

Here's a related question and answer: Owin app in Azure

Community
  • 1
  • 1
juunas
  • 54,244
  • 13
  • 113
  • 149