Tagged Questions

SOA stands for Service-Oriented Architecture, a flexible set of design principles that allow multiple separate systems from several business domains to interoperate.

learn more… | top users | synonyms

42
votes
15answers
2k views

What is SOA “in plain english”?

Can someone explain in plain english what is SOA all about? I hear SOA here, SOA there but I can't understand exacly what it is and what is used for. Was it something simple concept and later evolved ...
19
votes
9answers
1k views

What is SOA (Service Oriented Architecture)?

Call me a troll if you want, but I'm serious -- how exactly is the new SOA trend any different than the client-service architecture that I was building 15 years ago? I keep hearing SOA but I don't see ...
17
votes
3answers
956 views

What is SAML?

I saw an interesting blank page today titled "saml post profile intersite transit." What is SAML? What was it created for? What is it commonly used for? What was the page I mentioned above all ...
16
votes
4answers
847 views

.net n-tier identity & authorization in service architecture

I'm building an application where the requirements seem standard issue (at least to me)... I have a Web.UI based on asp .net mvc & clients from iphone, andriod & blackberry. So the sensible ...
14
votes
10answers
1k views

Service Oriented Architecture: How would you define it

Service Oriented Architecture seems to be more and more of a hot quote these days, but after asking around the office I have found that I seem to get many different definitions for it. How would you ...
13
votes
5answers
3k views

Anti-pattern of SOA or WCF

While I can find lots of article advocating SOA, or WCF, my question is that what should not be exposed as service, is there any lessen that we learn from SOA failure. WCF is a way to implementing ...
13
votes
13answers
10k views

Best ESB and SOA registry out there

Our company is looking to implement an ESB into our SOA. Our SOA is in initial development stages. We currently have F5/BigIP in place with sufficient health checking, load balancing, redundancy, ...
12
votes
6answers
738 views

Can someone explain an Enterprise Service Bus to me in non-buzzspeak?

Some of our partners are telling us that our software needs to interact with an Enterprise Service Bus. After researching this a bit, my instinct is to say that this is just buzz speak for saying ...
12
votes
4answers
3k views

How well will WCF scale to a large number of client users?

Does anyone have any experience with how well web services build with Microsoft's WCF will scale to a large number of users? The level I'm thinking of is in the region of 1000+ client users ...
12
votes
8answers
5k views

Queue alternatives to MSMQ on Windows?

If you want to use a queuing product for durable messaging under Windows, running .NET 2.0 and above, which alternatives to MSMQ exist today? I know of ActiveMQ (http://activemq.apache.org/), and I've ...
11
votes
4answers
416 views

Good resources to learn about Event Driven Architecture

Looking for books, blogs, web sites or videos. At the moment I am getting a lot of value from the blogs of Udi Dahan and Greg Young, but I was wondering if there are any other experts out there worth ...
11
votes
11answers
2k views

If SOA is dead, what's replacing it?

Please forgive me if this question is dense. Background: We have several internal applications that integrate at the database. We are looking at how to break that up, and it seems like moving to an ...
11
votes
5answers
6k views

Message Oriented Middleware (MoM) Vs. Enterprise Service Bus (ESB)

I come from a background of MoM. I think I understand ESB conceptually. However, I'm not too sure about the practical differences between the two when it comes to making a choice architecturally. ...
10
votes
6answers
278 views

Is Domain Anaemia appropriate in a Service Oriented Architecture?

I want to be clear on this. When I say domain anaemia, I mean intentional domain anaemia, not accidental. In a world where most of our business logic is hidden away behind a bunch of services, is a ...
10
votes
7answers
1k views

ORM and SOA in the .NET world

From my experience the major ORM frameworks for .NET (NHibernate, LinqToSql, Entity Framework) work best when they keep track of loaded objects. This works fine for simple client-server applications, ...
9
votes
2answers
2k views

How can I force WCF to autogenerate WSDLs with required method parameters (minoccurs=“1”)?

While using WCF and OperationContracts I have the following method defined: [OperationContract] [FaultContract(typeof(ValidationFault))] ...
9
votes
7answers
2k views

WCF Data Contract and Reference Entity Data?

Soliciting feedback/options/comments regarding a "best" pattern to use for reference data in my services. What do I mean by reference data? Let's use Northwind as an example. An Order is related to ...
9
votes
11answers
1k views

Is SOA a fad?

I've been resisting making any personal career investment in learning anything about this acronym because my particular field of work doesn't require it. I am curious if it would be worth my time or ...
9
votes
2answers
3k views

Can MVC (or MVP) co-exist with SOA?

I think that business logic should exist in a model when using an MVC or MVP design pattern, but should be hidden behind a service in a service-oriented architecture. Can a software system use the ...
9
votes
2answers
2k views

WCF - Domain Objects and IExtensibleDataObject

Typical scenario. We use old-school XML Web Services internally for communicating between a server farm and several distributed and local clients. No third parties involved, only our own applications ...
8
votes
5answers
299 views

How to deal with Java Polymorphism in Service Oriented Architecture

What is the path of least evil when dealing with polymorphism and inheritance of entity types in a service-oriented architecture? A principle of SOA (as I understand it) is to have entity classes as ...
8
votes
7answers
326 views

SOA, Request/Response service layer, accepting and returning a request/response vs an array or requests/responses?

We are implementing a Request/Response Service Layer using WCF, where every request inherits from a base Request class and every response inherits from base Response class. The service has a single ...
8
votes
15answers
882 views

Have we given up on the idea of code reuse?

A couple of years ago the media was rife with all sorts of articles on how the idea of code reuse was a simple way to improve productivity and code quality. From the blogs and sites I check on a ...
8
votes
7answers
529 views

How to get up to speed on SOA?

I've been given the task of laying the groundwork of a SOA for my client. The goal is to open up various processes in an end-client independent way and also to make data available offline e.g. for ...
7
votes
4answers
720 views

Why would you not use WCF Data Services for querying data?

OK, so we are using entity framework and wish to expose data from these entities to consumers. This data is pretty common and although initially only consumed by WPF applications it could be consumed ...
7
votes
5answers
3k views

Contract-First SOA with WCF

Hello StackOverflow gurus! This question is more of a probe to discover what people are doing in the community, in practical situations, than a specifically targeted question. I have searched pretty ...
7
votes
10answers
4k views

When to use SOA (Service Oriented Architecture)

I had a conversation with one of our architects recently and he summarized his use of SOA as "The only time we'll use services is when we need async actions otherwise we'll use go direct to the data ...
7
votes
3answers
2k views

What are the advantages of using WCF over frameworks like MassTransit or hand written MSMQ client?

I am looking at using MSMQ as a solution to do asynchronous execution in my upcoming project. I want to know the differences between using WCF and frameworks like MassTransit or even hand written MSMQ ...
7
votes
8answers
937 views

Good Resources on SOA?

Have recently been given a project to complete which uses XML quite extensively.Am looking at an existing project which uses SOA. Am eager to get up to speed on SOA and so wondered if anyone coulod ...
6
votes
1answer
194 views

What is a good open source package for building flexible spam detection on a large Rails site?

My site is getting larger and it's starting to attract a lot of spam through various channels. The site has a lot of different types of UGC (profiles, forums, blog comments, status updates, private ...
6
votes
3answers
584 views

Why are CRUD operations so bad in a SOA design?

I have just finished reading an article on MSDN by John Evdemon. He bashes the CRUD interfaces and calls it an anti-pattern. While I agree that having ANYTHING stateful is difficult and Current and ...
6
votes
3answers
466 views

WCF Data Contracts and Sharing of Enums

We currently have a WCF service that has been setup with its own DataContracts for the enumerations. We then have a mapping layer between the DataContract Enums and the Common Enums available in our ...
6
votes
2answers
596 views

How to handle long running web service operations?

I have to create a Java EE application which converts large documents into different formats. Each conversion takes between 10 seconds and 2 minutes. The SOAP requests will be made from a client ...
6
votes
2answers
994 views

Anyone have experience with ServiceStack or other .Net services framework?

I'm looking for at using ServiceStack for the services part of a web application instead of rolling my own. Anyone have any experience using it? Any C#/.Net alternatives I should consider?
6
votes
1answer
70 views

Using SOA principles over OOD in non-service code

Our architect has spoken about using SOA techniques throughout our codebase, even on interfaces that are not actually hosted as a service. One of his requests is that we design our interface methods ...
6
votes
3answers
1k views

Service Oriented Architecture & Domain-Driven Design

I've always developed code in a SOA type of way. This year I've been trying to do more DDD but I keep getting the feeling that I'm not getting it. At work our systems are load balanced and designed ...
6
votes
8answers
701 views

Open Source SOA Stack

I'd be evaluating Open Source SOA solutions. What are the options? I'm looking for something that provides (possibly) complete SOA stack. I'd like below features - BPEL BPM ESB SOA Governance Good ...
6
votes
3answers
1k views

Entitity Framework: Change tracking in SOA with POCO approach

In our layered application, we are accessing database via WCF calls. We are creating and disposing contexts per request. Also we are using POCO approach. My question is, in pure POCO model (completely ...
6
votes
3answers
190 views

Helping managers and customers understand SOA

I frequently hear Service-Oriented Architecture (SOA) being tossed around as a buzzword among non-technical customers or program managers with little concern or understanding for what it actually ...
6
votes
2answers
262 views

How to balance DRY principle with minimizing dependencies?

I'm having a problem with the DRY principle (Don't Repeat Yourself) and minimizing dependencies that revolves around Rete rules engines. Rules engines in large IT organizations tend to be Enterprise ...
6
votes
8answers
3k views

Best Publish/Subscribe “Middleware”

I'm in the market for a good open source network based Pub/Sub (observer pattern) library. I haven't found any I like: JMS - tied to Java, treats message contents as dumb binary blobs NDDS - $$, ...
6
votes
3answers
2k views

WCF - High availability

Is there anyway to configure a WCF service with a failover endpoint if the primary endpoint dies? Kind of like being able to specify a failover server in a SQL cluster... Specifically I am using ...
5
votes
2answers
124 views

Are Doctrine2 repositories a good place to save my entities?

When I read docs about repositories, it is often to work with entities & collection but in a "read-only" manner. There are never examples where repositories have methods like insertUser(User ...
5
votes
2answers
264 views

Good books for WCF based SOA, Distributed and Server Side Programming?

I am basically a .NET GUI programmer and have worked on a lot of WPF, Winforms and also have used WCF. I joined a new job in a bank and we are currently writing a new software to replace existing ...
5
votes
1answer
104 views

So am I talking about a SOA here?

For a government contract we will be proposing to build a traffic monitoring architecture. We will have the following components: Video camera's set up around the area of interest. The cameras will ...
5
votes
1answer
408 views

building a SOA on Microsoft technology stack

so my open-ended potentially subjective question for the day is; if you were given the opportunity to build up a SOA on Microsoft technologies today; what would you choose from the options below; ...
5
votes
1answer
2k views

Request/Response pattern in SOA implementation

In some enterprise-like project (.NET, WCF) i saw that all service contracts accept a single Request parameter and always return Response: [DataContract] public class CustomerRequest : RequestBase { ...
5
votes
2answers
202 views

How should my team decide between 3-tier and 2-tier architectures?

My team is discussing the future direction we take our projects. Half the team believes in a pure 3-tier architecture while the other half favors a 2-tier architecture. Project Assumptions: ...
5
votes
4answers
714 views

How to Implement Loose Coupling with a SOA Architecture

I've been doing a lot of research lately about SOA and ESB's etc. I'm working on redesigning some legacy systems at work now and would like to build it with more of a SOA architecture than it ...
5
votes
1answer
732 views

SOA Architecture with WCF + IOC Structuremap

I'm a little new to DI containers like StructureMap and I've been using it for a short time with asp.net mvc applications. Now I'm splitting my architecture that will have a WCF service layer and a ...

1 2 3 4 5 14