Tutorial by Topics: socket

WebSocket is protocol, which enables two-way communication between a client and server: The goal WebSocket is to provide a mechanism for browser-based applications that need two-way communication with servers that does not rely on opening multiple HTTP connections. (RFC 6455) WebSocket works ove...
Many programming languages use sockets to communicate across processes or between devices. This topic explains proper usage the the sockets module in Python to facilitate sending and receiving data over common networking protocols. ParameterDescriptionsocket.AF_UNIXUNIX Socketsocket.AF_INETIPv4...
This section provides an overview of what sockets is, and why a developer might want to use it. It should also mention any large subjects within sockets, and link out to the related topics. Since the Documentation for sockets is new, you may need to create initial versions of those related topic...
Socket.IO is a javascript library for realtime web applications. It enables realtime, bi-directional communication between web clients and servers. It has two parts: a client-side library that runs in the browser, and a server-side library for node.js. Both components have a nearly identical API. ...
These are two sample programs that work together. One is a simple server, the other a simple client. Start the server in one window: python tserver.py Edit the server address in the client source file if desired. Then run python tclient.py The client connects to the server, then asks for i...
WebSocket is a protocol which allows for communication between the client and the server/endpoint using a single TCP connection. WebSocket is designed to be implemented in web browsers and web servers, but it can be used by any client or server application. This topic about the Java APIs for web...
This section provides an overview of what websocket is, and why a developer might want to use it. It should also mention any large subjects within websocket, and link out to the related topics. Since the Documentation for websocket is new, you may need to create initial versions of those relate...
Ajax uses the HTTP Protocol and can send requests using POST/GET methods from Client to Server. WebSocket is itself a protocol to communicate between Client and Server, distinct from HTTP. In Ajax when you send a request , server sends response for that request and connection ends. Using WebSocke...
This topic will be about modern C++ style Berkeley Socket Programming (This is code for Linux, but easily portable to other platforms)
Cryptography is used for security purposes. There are not so many examples of Encryption/Decryption in Python using IDEA encryption MODE CTR. Aim of this documentation : Extend and implement of the RSA Digital Signature scheme in station-to-station communication. Using Hashing for integrity of mess...
Usage of socket extension implements a low-level interface to the socket communication functions based on the popular BSD sockets, providing the possibility to act as a socket server as well as a client.
By using asynchronous sockets a server can listening for incoming connections and do some other logic in the mean time in contrast to synchronous socket when they are listening they block the main thread and the application is becoming unresponsive an will freeze until a client connects. Socke...

Page 1 of 2