Changes between Version 453 and Version 454 of WikiStart
- Timestamp:
- 10/13/21 10:46:42 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v453 v454 9 9 * The web architecture, which defines how communication between the core elements can be realized with [https://en.wikipedia.org/wiki/WebSocket websockets]. 10 10 11 This page describes the core. This page shows the json structures mostly by example. The details of the core are spelled out by a java-based reference implementation contained here.11 This page describes the java-based core. This page shows the json structures mostly by example. The details of the core are spelled out by a java-based reference implementation contained here. There is also a python-based core to support python-based programming. 12 12 13 13 The web architecture is split into 3 main parts: 14 14 * a runserver, where an actual negotiation is run. Running a negotiation means execution of the negotiation protocol (as specified in the core) over websockets 15 * a partiesserver, where a party (as specified in the core) can be hooked into a websocket 15 * a partiesserver, where a party (as specified in the core) can be hooked into a websocket. There are actually 2 types of partiesserver: the "partiesserver" which serves java-based parties, and a pythonpartiesserver which serves python-based parties. 16 16 * a profilesserver, where profiles are served over websockets. 17 17