Changeset 169
- Timestamp:
- 08/05/08 19:17:32 (4 months ago)
- Hashname:
- 20080805171732-58252-7e50ae19fd00bd825c005ebfec0dcbc39b50cae8
- Files:
-
- 2 modified
-
README (modified) (4 diffs)
-
config.ini.sample (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
README
r167 r169 76 76 77 77 - Watchers (auid = watchers). This this a custom application that queries 78 the OpenSERdatabase for a list of presence watchers and their status.78 the sip proxy database for a list of presence watchers and their status. 79 79 The XML schema for this application can be found in 80 80 xcap/xml-schemas/watchers.xsd. This application is read-only. … … 84 84 85 85 OpenXCAP server supports multiple back-end storage systems and works out of 86 the box with OpenSER Proxy/Registrar/Presence server from http://openser.org86 the box with OpenSER/Kamailio/OpenSIPs Proxy/Registrar/Presence server 87 87 88 88 … … 94 94 95 95 - OpenSER from http://openser.org 96 - Kamailio from http://kamailio.org 97 - OpenSIPs from http://opensips.org 96 98 97 99 - simple-soap-proxy (under development by AG Projects). This client … … 115 117 provided by the community on a best-effort basis. 116 118 117 - For interaction between OpenXCAP and OpenSER you may consult the OpenSER 118 users mailing list at http://openser.org/pipermail/users/ 119 Commercial support or other licensing options are available from AG Projects 120 http://ag-projects.com 119 121 120 - For commercial support or other licensing options please contact AG Projects121 at http://ag-projects.com122 -
config.ini.sample
r166 r169 9 9 address = 0.0.0.0 10 10 port = 8000 11 11 12 ; The XCAP Root URI; must not contain any port number. If it has the 'https' scheme, 12 13 ; the server will listen for requests in TLS mode. 13 14 root = http://xcap.example.com/ 15 14 16 ; The backend to be used for storage and authentication. Current supported 15 ; values are Database and OpenSER. 17 ; values are Database for generic support and OpenSER for integration with 18 ; OpenSER >=1.3, Kamailio or OpenSIPs solutions 16 19 backend = Database 20 17 21 ; Validate XCAP documents against XML schemas, default is Yes 18 22 document_validation = Yes 23 19 24 20 25 [Authentication] … … 23 28 ; If you're using TLS, it's better to choose 'basic' because the data is encrypted anyway. 24 29 type = basic 30 25 31 ; Specify if the passwords are stored as plain text - Yes 26 32 ; or in a hashed format MD5('username:domain:password') - No 27 33 cleartext_passwords = Yes 34 28 35 ; The default authentication realm 29 36 default_realm = example.com 37 30 38 ; A list of trusted peers from where XCAP requests are accepted without HTTP authentication 31 39 ; e.g. trusted_peers = 10.0.0.0/24, 192.168.0.1 32 40 trusted_peers = 41 33 42 34 43 [TLS] … … 38 47 ; Server X509 certificate 39 48 certificate = tls/server.crt 49 40 50 ; Server X509 private key 41 51 private_key = tls/server.key 52 42 53 43 54 [Database] … … 47 58 ; The database connection URI for the datase with subscriber accounts 48 59 authentication_db_uri = mysql://username:password@db-host/openser 60 49 61 ; The database connection URI for the database that stores the XCAP documents 50 62 storage_db_uri = mysql://username:password@db-host/openser 63 51 64 ; Authentication and storage tables 52 65 subscriber_table = subscriber 53 66 xcap_table = xcap 67 54 68 55 69 [OpenSER] … … 59 73 ; The database connection URI for the datase with subscriber accounts 60 74 authentication_db_uri = mysql://username:password@db-host/openser 75 61 76 ; The database connection URI for the database that stores the XCAP documents 62 77 storage_db_uri = mysql://username:password@db-host/openser 78 63 79 ; Authentication and storage tables 64 80 subscriber_table = subscriber 65 81 xcap_table = xcap 82 66 83 ; The address and port where the XMLRPC Management Interface of OpenSER is listening 67 84 xmlrpc_url = http://localhost:8080 85
