Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Existing Services

Phonebook

Here is an example of how to print the content of a phonebook named sales to stdout in CSV format

Panel

curl --insecure --basic -u superadmin [https://\]{host}:8443/sipxconfig/rest/phonebook/sales

Placing calls

To test the service with curl use:

Panel

curl --insecure -X PUT [https://\]{user}:{password}@{host}:8443/sipxconfig/rest/call/{number}

HTTP PUT to service URL will cause sipXconfig to place call to {number}.
The calls is placed using authorized user credentials. It works in the same way as click-to-call available on the user portal. User's phone rings first and, once someone answers, it places the call to {number}.

Version|4.2

New Services

General URL structure

Common prefix:

...

Note: how to see inside the SSL with Wireshark is described here SipX_ConfigServer_Troubleshooting_Troubleshooting#Using_Wireshark_to_see_inside_the_box

Admin services

Accessible for users with admin priviledges:

Panel

/phonebook - GET, POST
/phonebook/{name} - GET, PUT, DELETE
/phone - POST
/auto-attendant/specialmode - GET
/auto-attendant/specialmode/{attendant} - PUT, DELETE

User services

Accessible for all users:

...

Panel

/my/call/{to}/call/{to}
Panel

PUT
Panel

Initiates the call from the user to {to} address.PUT method requires non empty body which is ignored.Supported as GET for clients that do not handle PUT.
Panel

 

 

Panel

/my/voicemail/pin/{pin} | PUT | changes user voicemail PIN |

 

 

Panel

/my/forward | GETPUT | retrieves (GET) or changes (PUT) user call forwarding

XML,JSON
Panel

 

 

Panel

/my/feed/voicemail/{folder} | GET | voicemail folder presented as RSS feed |

 

 

Panel

/my/phonebook | GET | JSON, XML

phonebook representation

 

 

 

Panel

/my/phonebook/entry/{entryId} | GETPUTDELETE | retrieves (GET), changes (PUT) and deletes (DELETE) entries in private phonebook

XMLJSON
Panel

 

 

Panel

/my/contact-information | GETPUT |

retrieve and change contact info for the userXML,JSON
Panel

 

 

Panel

/my/search/phonebook?query={search-term} | GET |

searching user phonebookXML
Panel

 

 

Adding new Services

sipXconfig used the RESTlet API to add RESTful services

...

Please note, due to a bug in RESTlet, it requires HTTP PUT request must have a body. You can add space, or anything to the body
to workaround it.

Service design

  • Identify resouces and design the resource structure
  • Determine which operations (GET, PUT, POST, DELETE) will be available for which resources
  • Map resources into URI structure
  • Determine representation for each resource (specific format XML/JSON)

Service implementation

  • Implement resources
  • :Each resource is an instance of restlet Resource class. Every RESTful function is mapped into one or more Resource methods. For example GET method is implemented by Resource.represent
  • :Resource instances are managed by Spring. You can inject any context or manager that is necessary to perform service operations. For example phonebook service delegates bulk of the work to PhonebookManager.

...

  • Write service system tests
  • :Those are external tests written in Java/Ruby/Python that excersise the service. They are similar to UI tests.

Future Services

User ('my') services (those are services needed to implement functionality available through current user portal)

...