.. _ChapterInterfacingWithServices: ************************* Interfacing With Services ************************* The Knomi Voice Matcher service uses rest API and so can be accessed by any http client such as curl, jmeter, postman or any programming languages which can package and send a POST http request. Example code that packages the JSON request, sends the request to the server, and parses the result for the following languages/tools. These examples used a json file (request_body.json present in the installation directory) in the following format. .. code:: json { "encounter" : { "voiceSamples": [ { "data": "", "voice_sample_type": "STATIC_PHRASE" }], "id": "test_id_001" } } JavaScript ========== .. code-block:: JAVA :caption: *sample_voice_match.js* :name: sample_voice_match.js var url = "http://localhost:8071/nexavoice/add/cache1"; var XMLHttpRequest = require("xmlhttprequest").XMLHttpRequest; var xhr = new XMLHttpRequest() xhr.open('POST', url) xhr.onload = function () { console.log('status' + ' : ' + xhr.status); console.log('response content' + ' : ' + xhr.responseText); } xhr.setRequestHeader("Content-Type", "application/json;charset=UTF-8"); xhr.send(JSON.stringify()); Example command:: node sample_voice_match.js Example output:: status : 500 response content : {"error":{"code":1006,"description":"The ID already exists in the cache."}} Java ==== .. code-block:: JAVA :caption: *sample_voice_match.java* :name: sample_voice_match.java import java.io.BufferedReader; import java.io.DataOutputStream; import java.io.InputStreamReader; import java.io.OutputStream; import java.net.HttpURLConnection; import java.net.URL; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; class sample_voice_match { public static void main(String[] args) throws Exception { String url = "http://localhost:8071/nexavoice/add/cache1"; URL obj = new URL(url); HttpURLConnection con = (HttpURLConnection) obj.openConnection(); con.setRequestMethod("POST"); con.setRequestProperty("Content-Type", "application/json; utf-8"); con.setRequestProperty("Accept", "application/json"); con.setDoOutput(true); Path request_body = Path.of("request_body.json"); String jsonInputString = Files.readString(request_body); try(OutputStream os = con.getOutputStream()) { byte[] input = jsonInputString.getBytes("utf-8"); os.write(input, 0, input.length); } int responseCode = con.getResponseCode(); System.out.println("GET Response Code :: " + responseCode); if (responseCode == HttpURLConnection.HTTP_OK) { // success BufferedReader in = new BufferedReader(new InputStreamReader( con.getInputStream())); String inputLine; StringBuffer response = new StringBuffer(); while ((inputLine = in.readLine()) != null) { response.append(inputLine); } in.close(); // print result System.out.println(response.toString()); } else { System.out.println("POST request did not work"); } System.out.println("done .... "); // Display the string. } } sample output ^^^^^^^^^^^^^ .. code:: json GET Response Code :: 200 {"id":"test_id_001"} done .... Curl Example ============ sample usage ^^^^^^^^^^^^ Example command:: curl -H "Content-Type: application/json" --data @package.json http://localhost:8071/nexavoice/add/cache1 sample response json ^^^^^^^^^^^^^^^^^^^^ .. code:: json {"id":"test_id_001"}