Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to implement SOA in java?

Tags:

java

soa

I am new for SOA.i want to known how to implement SOA in Java.i am go through various sites that only deals with the concept,it don't give clear idea about the implementation details,for using SOA in Java.plz provide an details for how to implements SOA.

Thanks

like image 986
Sameek Mishra Avatar asked Nov 17 '10 04:11

Sameek Mishra


People also ask

What is SOA in Java?

What Is Service-Oriented Architecture? SOA is a development system in which services are designed to communicate with each other across different languages and platforms using a strategy called loose coupling.

What are the 3 types of architecture in SOA?

Components of service-oriented architectureService Communication Protocol - It allows the service provider and the service consumer to communicate with each other. Service Description - It describes the service and data required to invoke it. Service - It is an actual service.

What is SOA example?

SOA infrastructure is used by many armies and air forces to deploy situational awareness systems. SOA is used to improve healthcare delivery. Nowadays many apps are games and they use inbuilt functions to run. For example, an app might need GPS so it uses the inbuilt GPS functions of the device.


1 Answers

SOA is about design principles (some might even say it's a paradigm) and less about tools and implementation, so it is difficult to fire up your IDE and "implement an SOA".

Because SOA is bigger and complexer than, say, a design pattern, most sources on the subject only deal with the theory and do not discuss implementation details.

If you understand the concept and know Java, then you can start implementing on top of existing frameworks (see other answers), by reusing existing components, or, if you are feeling I-want-to-write-a-C-compiler-from-scratch-y, you can try to design and code your very own SOA from the ground up.

like image 78
eljenso Avatar answered Nov 03 '22 01:11

eljenso