C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
iOS
Java
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
5
Reply
When will we go for WebAPI in project?
Raju p
10y
983
0
Reply
Delete Row
Delete Column
Insert Link
×
Insert
Cancel
Embed YouTube Video
×
Width (%)
Height (%)
Insert
Cancel
Table Options
×
Rows
Columns
First row as header
Create Table
Insert Image
×
Selected file:
Alignment
Left
Center
Right
Select an image from your device to upload
Upload to Server
Cancel
Submit
1. This is the framework for building HTTP services with easy and simple way.2. Web API is open source an ideal platform for building REST-ful services over the .NET Framework.3. Unlike WCF Rest service, it use the full featues of HTTP (like URIs, request/response headers, caching, versioning, various content formats)4. It also supports the MVC features such as routing, controllers, action results, filter, model binders, IOC container or dependency injection, unit testing that makes it more simple and robust.5. It can be hosted with in the application or on IIS.6. It is light weight architecture and good for devices which have limited bandwidth like smart phones.7. Responses are formatted by Web API’s MediaTypeFormatter into JSON, XML or whatever format you want to add as a MediaTypeFormatter.
Srikant Maruwada
7y
0
1. This is the framework for building HTTP services with easy and simple way.2. Web API is open source an ideal platform for building REST-ful services over the .NET Framework.3. Unlike WCF Rest service, it use the full featues of HTTP (like URIs, request/response headers, caching, versioning, various content formats)4. It also supports the MVC features such as routing, controllers, action results, filter, model binders, IOC container or dependency injection, unit testing that makes it more simple and robust.5. It can be hosted with in the application or on IIS.6. It is light weight architecture and good for devices which have limited bandwidth like smart phones.7. Responses are formatted by Web API’s MediaTypeFormatter into JSON, XML or whatever format you want to add as a MediaTypeFormatter.
Srikant Maruwada
7y
0
1. Choose WEB API for RESTFul services. WCF also capable of doing RESTFul but not useful to get all features of HTTP. 2. Choose Web API when you want to create a resource-oriented services over HTTP that can use the full features of HTTP (like URIs, request/response headers, caching, versioning, various content formats). 3. Choose Web API when you want to expose your service to a broad range of clients including browsers, mobiles, iphone and tablets.
Tushar Dikshit
8y
0
Please explain what you mean by " REST-style services"
Raju p
8y
0
Use ASP.NET Web API to create HTTP-based services that are accessible from a wide variety of clients. Use ASP.NET Web API if you are creating and designing new REST-style services.
Geeta Sowjanya
9y
0
Message