Tagged Questions
1
vote
2answers
390 views
Implement service layer in MVC
We have a defined service layer hosted in WCF. We are now building a website that will need to use the services functionality. The website is being written in ASP.NET MVC 4 and I'm trying to decide ...
0
votes
1answer
405 views
MVC or Extract Service Layer
we have an application that is built with .Net MVC. We are now tasked with exposing API's to third parties. Members on our team want to just continue down our current path and just use more ...
0
votes
2answers
429 views
Wrapping REST based Web Service
I am designing a system that will be running online under Microsoft Windows Azure. One component is a REST based web service which will really be a wrapper (using proxy pattern) which calls the REST ...
13
votes
3answers
6k views
ASP.NET MVC vs WCF for REST API + Webpage usage
I think the discussion for programmatic service oriented usage vs human interaction is clear.
But if I were to create an application that makes use of both a programmatic API and a website that makes ...
8
votes
1answer
1k views
How to build a good service layer in ASP.NET?
I have looked through some questions, technologies for building a good service layer but I have some questions regarding this that I need help with.
First some information of what I have for ...
2
votes
2answers
489 views
Storing images in file system and returning URLs or virtually resizing and returning byte arrays?
I need to create a REST web service to manage user submitted images and displaying them all in a website. There are multiple websites that are going to use this service to manage and display images. ...
3
votes
2answers
672 views
If ASP.NET MVC 4 supports RPC style communication what does that mean for WCF?
From http://www.microsoft.com/download/en/details.aspx?id=28942
ASP.NET MVC 4 also includes ASP.NET Web API, a framework for building
and consuming HTTP services that can reach a broad range of ...
0
votes
1answer
527 views
With ASP.NET MVC actions, should I use web services?
In ASP.NET Web Forms if you want to use jQuery and call a method directly, you should either implement a web service, or use Page Methods. Also you can use Generic Handlers (.ashx files).
However, in ...