• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

When to create an API instead of a web service?

MBony

Platinum Member
I am trying to understand when to write an API instead of creating a full blown web service. Can someone explain it to me? Also, can anyone refer me to some good API tutorials?
 
Your question is kind of vague. Are you just wanting to know in general, or is this for a specific scenario?
 
To answer in general terms...

Web services commonly expose APIs and/or business entities, etc. over http. If you're local, or really in any situation where you control both ends of the communication you'll want to use something more performant than web services.

In ASP.NET today this is WCF. Yesterday it was remoting.
 
Back
Top