WikiStart

Version 344 (Adrian Georgescu, 01/01/2009 04:15 pm)

1 298 Adrian Georgescu
= Description =
2 95 Ruud Klaver
3 292 Adrian Georgescu
[[Image(htdocs:SIPSIMPLE-client.png, align=right, nolink)]]
4 326 Adrian Georgescu
SIP SIMPLE client is a Python software library built on top of [http://pjsip.org PJSIP] that together
5 318 Adrian Georgescu
with [wiki:MiddlewareDesign middleware] allows for easy development of Client/Server and
6 303 Adrian Georgescu
Peer-to-Peer Internet communications end-points based on SIP SIMPLE protocols for
7 306 Adrian Georgescu
voice, video, presence, instant messaging (IM) and file transfer capabilities.
8 275 Adrian Georgescu
9 303 Adrian Georgescu
The goal of this project is to deliver the best Open Source Python library for rich featured SIP end-points, while hiding the complex underlying functionality behind an easy to use high-level application-programming interface. This package supports to the SDP negotiation, audio codecs and NAT traversal functionality provided by PJSIP and will thus deliver rich communications combining instant messaging (IM), voice and video streams. It also supports file transfer and multi-party chat sessions using MSRP protocol, publication and subscription for rich presence information such as availability, moods, activities and geo-location, management for presence rules,  resource lists, RLS services using XCAP protocol. 
10 1
11 303 Adrian Georgescu
The software allows you to create elegant real-time communications applications without having to read [http://www.rfc3261.net the +1200 RFC documents] behind it. 
12 278 Adrian Georgescu
13 331 Adrian Georgescu
The software is provided under the [source:LICENSE GPL LICENSE]
14 331 Adrian Georgescu
15 344 Adrian Georgescu
== Features ==
16 1
17 344 Adrian Georgescu
As a library with a high-level API, the toolkit can be used to add voice, IM
18 344 Adrian Georgescu
and Presence functionality to any network devices as long as Python/C
19 344 Adrian Georgescu
environment is supported by such platform.
20 344 Adrian Georgescu
21 344 Adrian Georgescu
Additional to the SIP standards implemented by the underlying PJSIP library,
22 344 Adrian Georgescu
this project implements:
23 344 Adrian Georgescu
24 344 Adrian Georgescu
 * XCAP protocol [http://www.tools.ietf.org/html/rfc4825 RFC4825]
25 344 Adrian Georgescu
 * MSRP protocol [http://tools.ietf.org/html/rfc4975 RFC4975]
26 344 Adrian Georgescu
 * MSRP protocol relay extension [http://tools.ietf.org/html/rfc4976 RFC4976]
27 344 Adrian Georgescu
 * Rich Presence Information Data model and Format (RPIDF) [http://tools.ietf.org/html/rfc3856 RFC3856], [http://tools.ietf.org/html/rfc3863 RFC3863 ], [http://tools.ietf.org/html/rfc4479 RFC4479]
28 344 Adrian Georgescu
 * XCAP-diff event package [http://www.ietf.org/internet-drafts/draft-ietf-simple-xcap-diff-09.txt draft-ietf-simple-xcap-diff-09]
29 344 Adrian Georgescu
 * Watcher-info [http://tools.ietf.org/html/rfc3857 RFC3857], [http://tools.ietf.org/html/rfc3858 RFC3858]
30 344 Adrian Georgescu
 * Conference [http://tools.ietf.org/html/rfc4575 RFC4575]
31 344 Adrian Georgescu
 * Message summary [http://tools.ietf.org/html/rfc3842 RFC3842]
32 344 Adrian Georgescu
 * Presence rules [http://www.tools.ietf.org/html/rfc5025 RFC5025]
33 344 Adrian Georgescu
 * Resource-lists and RLS-services [http://www.tools.ietf.org/html/rfc4826 RFC4826]
34 344 Adrian Georgescu
 * PIDF manipulation [http://www.tools.ietf.org/html/rfc4827 RFC4827]
35 344 Adrian Georgescu
 * Bonjour multicast DNS [http://www.ietf.org/internet-drafts/draft-lee-sip-dns-sd-uri-03.txt draft-lee-sip-dns-sd-uri-03]
36 344 Adrian Georgescu
 * Locating SIP services [http://tools.ietf.org/html/rfc3263 RFC3263]
37 344 Adrian Georgescu
 * MSRP ad-hoc multi-party chat sessions [http://tools.ietf.org/html/draft-ietf-simple-chat-03 draft-ietf-simple-chat-03]
38 344 Adrian Georgescu
39 344 Adrian Georgescu
40 344 Adrian Georgescu
== Download ==
41 344 Adrian Georgescu
42 331 Adrian Georgescu
=== Tarball ===
43 1
44 331 Adrian Georgescu
Tarball with the latest released version is available at [http://download.ag-projects.com/SipClient/ http://download.ag-projects.com/SipClient/]
45 331 Adrian Georgescu
46 331 Adrian Georgescu
=== Binary packages ===
47 331 Adrian Georgescu
48 334 Adrian Georgescu
Binary packages are available for Debian or Ubuntu on i386 and amd64 architectures. To install add the following lines to /etc/apt/sources.list:
49 331 Adrian Georgescu
50 180 Adrian Georgescu
{{{
51 1
deb	http://ag-projects.com/debian unstable main
52 1
deb-src http://ag-projects.com/debian unstable main
53 180 Adrian Georgescu
}}}
54 312 Adrian Georgescu
55 1
Install AG Projects debian repository signing key:
56 1
57 1
{{{
58 1
wget http://download.ag-projects.com/agp-debian-gpg.key
59 312 Adrian Georgescu
apt-key add agp-debian-gpg.key
60 312 Adrian Georgescu
}}}
61 324 Adrian Georgescu
62 312 Adrian Georgescu
Install the software:
63 312 Adrian Georgescu
64 312 Adrian Georgescu
{{{
65 1
apt-get update
66 1
apt-get install sipclient
67 229 Adrian Georgescu
}}}
68 324 Adrian Georgescu
69 324 Adrian Georgescu
70 333 Adrian Georgescu
Install dependencies that are not yet available as debian package:
71 324 Adrian Georgescu
72 325 Adrian Georgescu
{{{
73 324 Adrian Georgescu
sudo apt-get install mercurial python-setuptools
74 335 Adrian Georgescu
75 324 Adrian Georgescu
# Download and install eventlet for twisted:
76 324 Adrian Georgescu
hg clone http://devel.ag-projects.com/~denis/cgi-bin/hgweb.cgi/eventlet_twisted
77 324 Adrian Georgescu
cd eventlet_twisted
78 1
79 1
# To update the eventlet_twisted at a later date:
80 1
cd eventlet_twisted
81 335 Adrian Georgescu
hg pull
82 1
hg update
83 331 Adrian Georgescu
84 1
sudo python setup.py install
85 341 Adrian Georgescu
}}}
86 1
87 331 Adrian Georgescu
=== Version control ===
88 331 Adrian Georgescu
89 331 Adrian Georgescu
The source code is managed using [http://darcs.net darcs] version control tool. The darcs repository can be fetched with:
90 1
91 331 Adrian Georgescu
{{{
92 331 Adrian Georgescu
darcs get http://devel.ag-projects.com/repositories/pypjua sipsimpleclient
93 331 Adrian Georgescu
}}}
94 331 Adrian Georgescu
95 331 Adrian Georgescu
To obtain the incremental changes after the initial get, go to the sipsimpleclient directory and run:
96 331 Adrian Georgescu
97 262 Adrian Georgescu
{{{
98 1
cd sipsimpleclient
99 299 Adrian Georgescu
darcs pull
100 1
}}}
101 1
102 344 Adrian Georgescu
== Installation ==
103 340 Adrian Georgescu
104 344 Adrian Georgescu
Installation instructions for the corresponding platforms are available at:
105 1
106 1
 * [source:docs/INSTALL.debian INSTALL.debian]
107 299 Adrian Georgescu
 * [source:docs/INSTALL.linux INSTALL.linux]
108 1
 * [source:docs/INSTALL.osx INSTALL.osx]
109 1
 * [source:docs/INSTALL.freebsd INSTALL.freebsd]
110 1
111 299 Adrian Georgescu
SIP SIMPLE client is closely developed together with and tested against the most popular SIP SIMPLE server software available today: [http://opensips.org OpenSIPS], [http://openxcap.org OpenXCAP] and [http://msrprelay.org MSRPRelay]. Included with the library, a set of command line tools are available for setting up audio, Instant Messaging and file transfer sessions, publish and subscribe to presence or other type of events. 
112 1
113 329 Adrian Georgescu
 * [wiki:sip_register sip_register] - REGISTER a SIP end-point with a SIP Registrar
114 329 Adrian Georgescu
 * [wiki:sip_rtp_audio_session sip_audio_session] - Setup a voice audio session (Voice over IP)
115 339 Adrian Georgescu
 * [wiki:sip_msrp_im_session sip_im_session] - Setup IM session and File transfer using MSRP protocol
116 235 Adrian Georgescu
 * [wiki:sip_message sip_message] - Send/receive text in page mode using SIP MESSAGE method
117 317 Adrian Georgescu
 * [wiki:sip_publish_presence sip_publish_presence] - PUBLISH presence to a SIP Presence Agent
118 235 Adrian Georgescu
 * [wiki:sip_subscribe_presence sip_subscribe_presence]  - SUBSCRIBE to presence information
119 311 Adrian Georgescu
 * [wiki:sip_subscribe_winfo sip_subscribe_winfo] - SUBSCRIBE to watcher list on a SIP Presence Agent
120 235 Adrian Georgescu
 * [wiki:sip_subscribe_rls sip_subscribe_rls] - SUBSCRIBE to lists managed by Resource List Server
121 235 Adrian Georgescu
 * [wiki:xcapclient xcapclient] - PUT/GET/DELETE full or partial documents on an XCAP server
122 311 Adrian Georgescu
 * [wiki:xcap_pres_rules xcap_pres_rules] - Manage content of pres-rules XCAP document
123 338 Adrian Georgescu
 * [wiki:xcap_rls_services] - Manage content of RLS services XCAP document
124 235 Adrian Georgescu
125 311 Adrian Georgescu
126 235 Adrian Georgescu
== Support ==
127 235 Adrian Georgescu
128 332 Adrian Georgescu
To request support you must open a ticket. To open ticket please [/register Register] first. The source browser and ticketing system are available only for registered users. 
129 191 Adrian Georgescu
130 202 Adrian Georgescu
If you wish to contribute and become an active developer of this project, send your request by email to pypjua-devel@ag-projects.com.