up vote 24 down vote favorite
17
share [g+] share [fb]

Does adding a Web Service to my ASP.NET MVC project break the whole concept of MVC?

That Web Service (WCF) depends on the Model layer from my MVC project to communicate with the back-end (so it looks to me like it needs to be part of the MVC solution).

Should I add this to the Controller or Model layer?

link|improve this question

feedback

8 Answers

up vote 18 down vote accepted

It sounds like you should split out your model into its own assembly and reference it from your MVC-application and WCF-application.

  • YourApp.Data -- Shared model and data access maybe
  • YourApp.Web -- If you want to share more across your web-apps
  • YourApp.Web.Mvc
  • YourApp.Web.WebService

If you want to do WebServices MVC-style maybe you should use MVC to build your own REST-application.

link|improve this answer
Wouldn't you be duplicating controller logic in the service, then? And saving nothing by using a model, since you end up writing controller code twice. – Rob Elsner Apr 9 '09 at 3:25
@Rob, no because the controller code for web page viewing should be dealing with views and validating models, etc. The restful api controller would ideally be spitting out json and formatting data. – Alex Ford Jun 19 '11 at 7:57
feedback

Is there a specific reason you need to add web services to your MVC application? Unless there is a specific reason you should use your controllers in a RESTful manner just as you would a RESTful web service.

Check out this post from Rob Connery for more information: ASP.Net MVC: Using RESTful architecture

link|improve this answer
feedback

Separating the Model into it's own project is not breaking the "MVC" pattern. First off, it is just that -- a pattern. The intention of the MVC pattern is to clearly delineate between your data, the data handlers, and the presenters and the way you interface between them. The best way to do it is how Seb suggested:

  • YourApp.Data
  • YourApp.Web.Mvc
  • YourApp.Web.WebService

Something that might help you out is the MVC Storefront that Rob Conery put together. Go watch the video's here:

MVC Storefront Video Series

And if you want to look at the actual code in your browser to quickly see how he did it, go here: MVC Storefront Codeplex Code Browser

link|improve this answer
feedback

I don't think separating the model into it's own assembly has any bearing on whether or not you're using MVC, you still have a model. Where it is is irrelevant surely?

link|improve this answer
feedback

Is there a way to support multiple protocols with a single MVC Controller? Protocol 1 = XML over HTTP and Protocol 2 = WebServices (WSDL). Throwing mud against the wall, perhaps a web services extends the base controller class OR the web service class also extends controller?

link|improve this answer
feedback

I've had a go at doing this.

See my result at my blog

ps: I don't believe that this will break the MVC concept so long as you think that a web service is the model of a repository because all a web service does is returning a XML dump.

link|improve this answer
I've updated the URL so it won't expire – Zac Oct 2 '09 at 0:48
lol, "it won't expire" – Alex Ford Jun 2 '11 at 22:38
feedback

I have added web services to my application and it works well. I don't believe it violates MVC because it is an alternative interface to your model. MVC is not appropriate for web services because web services don't have a view.

link|improve this answer
3  
Web services can be created using MVC just as well as websites or RSS feeds. Actually, this is one of the strengths of the MVC concept - the same controller action can pass it's data to any kind of view - the web service outputs stuff so it is a view. :) – hangy Oct 26 '08 at 0:39
feedback

Think of web services and databases as one in the same. Under this analogy, I think it makes sense to place your web service ingteractions where you place your database logic.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.