Difference between revisions of "Networking/zh CN"

From Lazarus wiki
Jump to navigationJump to search
(New page: {{Networking}} 这个页面是Lazarus网络编程的教程的开始。我不是网络编程专家,但是我了解什么就在这里加入什么。我邀请其他人一起编写网络教...)
 
Line 12: Line 12:
  
 
* [[Sockets]] - TCP/IP Sockets 组件
 
* [[Sockets]] - TCP/IP Sockets 组件
 +
 +
* [[Synapse]] - 串口和同步 TCP/IP 库
  
 
* [[lNet]] - 轻量级网络组件
 
* [[lNet]] - 轻量级网络组件
  
* [[XML Tutorial]] - XML 在网络联系上经常使用
+
* [[XML Tutorial | XML 指南]] - XML 在网络通讯上经常使用
  
 
== TCP/IP Protocol ==
 
== TCP/IP Protocol ==

Revision as of 04:05, 1 May 2012

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

这个页面是Lazarus网络编程的教程的开始。我不是网络编程专家,但是我了解什么就在这里加入什么。我邀请其他人一起编写网络教程。在下面的部分加入链接,增加一个页面,创建你自己的Wiki文章。

这一页有一些常规信息。


Other networking tutorials

  • Synapse - 串口和同步 TCP/IP 库
  • lNet - 轻量级网络组件

TCP/IP Protocol

网络服务

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.

FPC和Lazarus的网络服务工具包

网络服务工具包是FPC和Lazarus的网络服务包。

外部链接