Search Results

4
votes

Is Async Messaging (In particular pub/sub style messaging) viable as a domain service architecture or only in an SOA-focused environment?

Great question :). The main problem with asynchronous messaging is that when folks use procedural or object oriented languages, working in an asynchronous or event based manner is often quite trick …
0
votes

Is Async Messaging (In particular pub/sub style messaging) viable as a domain service architecture or only in an SOA-focused environment?

I agree with @BradS too BTW BTW here's a way of hiding the middleware from your business logic while sti …
2
votes

How to get up to speed on SOA?

As Alan said, I'd start reading the Enterprise Integration Patterns book. There are a number of ways to implement them eit …
2
votes

What tools do you use to implement SOA/Messaging?

Apache ActiveMQ is probably the most popular and powerful open source message broker out there with the most active open source community be …
1
vote

The ways of Database Integration in SOA/ESB?

It depends on many factors; particularly read/write throughput and performance sensitivity of the database. Databases tend to be kinda sensitive things and are often very fragile to genera …
3
votes

Queue alternatives to MSMQ on Windows?

Why not use ActiveMQ? :) …
8
votes

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

Messaging tends to concentrate on the reliable exchange of messages around a network; using queues as a reliable load balancer and topics to implement publish and subscribe. An ESB typicall …
1
vote

Making a Service Layer call from Presentation layer

It mostly boils down to do you want to use Spring Remoting (which Spring RMI and Apache Camel are implementations …
0
votes

Spring-ws or Axis2 or Something else for “Contract-First” approach to WS

For contract first I'd recommend using JAX-WS. Either CXF or Metro seem to be the best implementations around that can take any WSDL contract and generate the POJOs (or vice versa) …