https://github.com/mkiol/cap-client
BroadWorks Client Application Protocol (CAP) implementation in Java
https://github.com/mkiol/cap-client
Last synced: 6 months ago
JSON representation
BroadWorks Client Application Protocol (CAP) implementation in Java
- Host: GitHub
- URL: https://github.com/mkiol/cap-client
- Owner: mkiol
- Created: 2013-01-03T20:47:19.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-01-04T19:25:14.000Z (over 12 years ago)
- Last Synced: 2023-03-22T14:52:33.223Z (about 2 years ago)
- Language: Java
- Homepage:
- Size: 168 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
CAP Client
==========CAP Client is a Java-API implementation of BroadWorks Client Application Protocols (abbr. CAP).
The CAP are protocols that expose an external Call Control and Call Monitoring interface to BroadWorks server.BroadWorks is a SIP-based Telephony Application Server developed by BroadSoft company.
What does it do?
----------------CAP Client provides classes that enable you, using Java event-driven model, listening for
specifics telephony call events.How to use?
-----------Create CapClient instance and start listening of Call Update events:
CapClient client = new CapClient();
client.addCallUpdateListener(this);
Connect to CAP server:client.connect(host, port, userid, password);
Handle Call Update events:public void callUpdateHandler(CallUpdateEvent event) {
...
}