Microsoft Web API: How do you do a Server.MapPath?

Since Microsoft Web API isn’t MVC, you cannot do something like this: var a = Request.MapPath(“~”); nor this var b = Server.MapPath(“~”); because these are under the System.Web namespace, not the System.Web.Http namespace. So how do you figure out the relative server path in Web API ? I used to do something like this in … Read more

Does IMDB provide an API? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Stack Overflow. Closed 5 years ago. Improve this question I recently found a movie organizer application which fetches its data from the IMDB database. Does IMDB provide an … Read more