Jump to content

Distributed programming: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
m typo
m typo
Line 10: Line 10:
Languages specifically tailored for distributed programming are:
Languages specifically tailored for distributed programming are:


*[[Ada programming language]] <ref>[http://www.adaic.org/standards/05rm/html/RM-TTL.html|Ada Reference Manual, ISO/IEC 8652:2005(E) Ed. 3], [http://www.adaic.org/standards/05rm/html/RM-E.html|Annex E Distributed Systems]</ref>
*[[Ada programming language]] <ref>[http://www.adaic.org/standards/05rm/html/RM-TTL.html Ada Reference Manual, ISO/IEC 8652:2005(E) Ed. 3], [http://www.adaic.org/standards/05rm/html/RM-E.html Annex E Distributed Systems]</ref>
*[[Alef programming language]]
*[[Alef programming language]]
*[[E programming language]]
*[[E programming language]]

Revision as of 06:58, 14 September 2006

Distributed programming is a programming paradigm focusing on designing distributed, open, scalable, transparent, fault tolerant systems. This paradigm is a natural result of the use of computers to form networks.

Nearly any programming language that has access to the full hardware of the system could handle distributed programming given enough time and code. Remote procedure calls distribute operating system commands over a network connection. Systems like CORBA, Microsoft D/COM, Java RMI and others, try to map object oriented design to the network. Loosely coupled systems that communicate through intermediate documents that are typically human readable are XML, HTML, SGML, X.500, and EDI.

Distributed programming typically falls into one of several basic architectures or categories: Client-server, 3-tier architecture, N-tier architecture, Distributed objects, loose coupling, or tight coupling.

Distributed programming interrelates tightly with concurrent programming so much that they are sometimes not taught as distinct subjects [1].

Languages specifically tailored for distributed programming are:

References

See also