Difference between revisions of "Networking/fr"

From Free Pascal wiki
Jump to navigationJump to search
Line 13: Line 13:
 
* [[lNet|lNet]] - composants de gestion de reseau Léger
 
* [[lNet|lNet]] - composants de gestion de reseau Léger
  
* [[XML Tutorial|XML Tutorial]] - XML est souvent utilisé avec les communications de réseau
+
* [[XML Tutorial/fr|XML Tutorial]] - XML est souvent utilisé avec les communications de réseau
  
 
== Le protocole TCP/IP ==
 
== Le protocole TCP/IP ==

Revision as of 01:39, 27 June 2007

Deutsch (de) English (en) español (es) français (fr) 日本語 (ja) 한국어 (ko) polski (pl) português (pt) русский (ru) slovenčina (sk) 中文(中国大陆)‎ (zh_CN)

Cette page sera le début de tutoriels en rapport avec la programmation de reseaux avec Lazarus. Je ne suis pas un expert en programmation de gestion de réseau et je complèterais si j'en apprend davantage. J'invite d'autres gens à aider à la création d'articles sur la gestion de réseau . Ajouter juste un lien vers la prochaine section , ajouter une page et créer votre propre article WiKi . Sur cette page quelques informations générales seront données.

D'autres tutoriels sur la gestion de réseaux

  • Sockets - composants permettant une interface logicielle(Sockets) avec les services du système d'exploitation pour utiliser le protocole reseau TCP/IP
  • lNet - composants de gestion de reseau Léger
  • XML Tutorial - XML est souvent utilisé avec les communications de réseau

Le protocole TCP/IP

WebServices

According to the W3C a Web service is a software system designed to support interoperable machine-to-machine interaction over a network. It has an interface that is described in a machine-processable format such as WSDL. Other systems interact with the Web service in a manner prescribed by its interface using messages, which may be enclosed in a SOAP envelope, or follow a REST approach. These messages are typically conveyed using HTTP, and are normally comprised of XML in conjunction with other Web-related standards. Software applications written in various programming languages and running on various platforms can use web services to exchange data over computer networks like the Internet in a manner similar to inter-process communication on a single computer. This interoperability (e.g., between Windows and Linux applications) is due to the use of open standards. OASIS and the W3C are the primary committees responsible for the architecture and standardization of web services. To improve interoperability between web service implementations, the WS-I organisation has been developing a series of profiles to further define the standards involved.

Web Service Toolkit for FPC & Lazarus

Web Service Toolkit is a web services package for FPC and Lazarus.


External Links

XML