Project

General

Profile

WebRTC » History » Version 6

Saúl Ibarra Corretgé, 07/30/2015 04:29 PM

1 1 Saúl Ibarra Corretgé
h1. SylkServer WebRTC gateway application
2
3 2 Saúl Ibarra Corretgé
Starting with version 3.0.0 SylkServer includes a WebRTC gateway application. The application implements a WebSocket protocol which WebRTC endpoints can use in order to interact with the SIP world.
4
5
6
h2. Architecture
7
8 1 Saúl Ibarra Corretgé
TODO
9 2 Saúl Ibarra Corretgé
10
h2. WebSocket API
11
12 5 Saúl Ibarra Corretgé
SylkServer offers the WebSocket API in order to interact with the WebRTC gateway in the @ws(s)://hostname:port/webrtcgateway/ws@ endpoint. Both WebSocket and Secure WebSocket are supported, depending on how SylkServer was configured, check the configuration section.
13 1 Saúl Ibarra Corretgé
14 5 Saúl Ibarra Corretgé
The following API is modeled around 2 concepts: requests and events.
15
16
A request represents an action which SylkServer should perform, and it's identified with a transaction ID which the user must provide. SylkServer will reply with either an 'ack' or an 'error' response, with the associated transaction ID. An example transaction is that of adding an account.
17
18
Events are notifications sent by SylkServer to the client. They are the result of some change triggered by a user action, but they don't have a transaction ID associated with them. An example event would be the connection state changed event.
19
20
h3. Establishing the connection
21 1 Saúl Ibarra Corretgé
22 6 Saúl Ibarra Corretgé
In order to connect to SylkServer to begin to use the API a WebSocket connection must be established, using the @sylkRTC-1@ subprotocol. Example:
23
24
<pre>
25
var conn = new WebSocket('wss://example.com/webrtcgateway/ws', 'sylkRTC-1');
26
</pre>
27
28
After the connection is established, a 'ready' event will be sent to the client, indicating that the connection is ready to be used:
29
30
<pre>
31
{
32
  "sylkrtc": "event",
33
  "event": "ready"
34
}
35
36
</pre>
37 5 Saúl Ibarra Corretgé
38
h3. Account management
39
40
TODO
41
42
h3. Calling
43
44
TODO
45
46
47 2 Saúl Ibarra Corretgé
48 4 Saúl Ibarra Corretgé
h2. Configuration
49
50
TODO
51
52 2 Saúl Ibarra Corretgé
h2. Client libraries
53
54
In order to interact with SylkServer's WebRTC gateway, we provide the "sylkrtc.js":http://projects.ag-projects.com/projects/sylkrtc JavaScript library. It implements the API described in this document in an easy to use manner. Check the README file in the project for the JavaScript API documentation.