Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Web services vs Spring remoting

I quite didnt get the difference between a regular web service implemented either through spring or axis versus Remoting.

If my question is not at all related, I am just confused between spring web services vs spring remoting. When to go for remoting and when to go with a web service.

Appreciate your answer

like image 341
srisris Avatar asked Mar 14 '11 12:03

srisris


1 Answers

Spring Web Services is a dedicated Spring Project (using Spring's own Web Service technology), whereas Spring Remoting is a common approach of integrating different third party remoting technologies.

Spring-WS is always contract-first, while Spring Remoting is often code-first.

like image 64
Sean Patrick Floyd Avatar answered Nov 03 '22 01:11

Sean Patrick Floyd