Search Results

0
votes

SOAP or REST

I'd recommend you go with REST first - if you're using Java look at JAX-RS and the Jersey implementation. REST is much simpler and easy to …
2
votes

Unit testing a JAX-RS Web Service?

Jersey comes with a great RESTful client API that makes writing unit tests really easy. See the unit tests in the examples that ship with J …
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 …
0
votes

Best messaging medium for real-time SOA applications?

If you go down the HTTP route and you want to support more than one machine or some kind of reliability - you are going to need a load balancer capable of discovering the available web servers and …
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) …