Is this a good SOA architecture?

We are trying to redesign our website. Our architect designed this high level of architecture. Is this a good architecture? enter image description here

+4
source share
3 answers

It's a bit unclear how your MVC model fits the image. It says "Webservice Proxy", but ideally this should be connected to your DAL. Is the model just a call to WCF services? If so, then this is sufficient, but the diagram does not accurately show this interaction.

I would say that this is a good model to use and similar to the one I used in the past.

+1
source

pizza boxes! Hooray! the database is drawn on its side, it should be up and down. you will also need a connection string at the WCF service level, as it is the entry point for the DAL layer.

I assume that you will start from the MVC site, make sure you create one that uses HTML5, and test the web application on the mobile devices on which you plan to create clients. You may find that you don’t need the clients of a particular platform at all.

0
source

This is a very standard n-tier architecture, and the design is so high that you can't talk much about it. You can find such a diagram in most programming books that talk about n-tier architectures.

This project has nothing to do with SOA (you don’t have a collection if you can discover and related services), but judging by the requirement to “redesign the website”, this will be enough.

0
source

All Articles