VidyoEngage for Genesys Sample Widgets

Size: px
Start display at page:

Download "VidyoEngage for Genesys Sample Widgets"

Transcription

1 VidyoEngage for Genesys Sample Widgets Developers Guide Product Version Document Version A October, Vidyo, Inc. all rights reserved. Vidyo s technology is covered by one or more issued or pending United States patents, as more fully detailed on the Patent Notice page of Vidyo's websitehttp:// as well as issued and pending international patents. The VIDYO logotype is a registered trademark of Vidyo, Inc. in the United States and certain other countries, and is a trademark of Vidyo, Inc. throughout the world. VIDYO and the Vidyo family of marks are trademarks of Vidyo, Inc. in the United States and throughout the world.

2 TABLE OF CONTENTS Overview... 3 Directory Structure... 3 Libraries Used (Third Party and Others)... 4 Click to Vidyo (WebSocket)... 5 Click to Vidyo (REST)... 8 Click to Vidyo (REST Simple)... 9 Chat to Vidyo (eservices) Sample Workflow and Logs Click to Vidyo Chat to Vidyo The ve4gchat Web Application Debugging Web Applications Ve4G Genesys Widgets Click to Vidyo Chat to Vidyo Developers Guide ii

3 Overview The sample widgets contain information about possible integrations for the customer web page and Genesys Vidyo Server. The sample codes cover the following: Click to Vidyo (WebSocket implementation) Click to Vidyo (RESTful implementation) Chat to Vidyo (sample eservices 8.5 chat application with extension for Vidyo messaging handler) Genesys Widgets and GMS integration (in separate main chapter) Click to Vidyo WebSocket client RESTful client Chat to Vidyo The chapters below explain the structure and methods for implementing the ve4g_click.js file. This is a core file that is used for the Click to Vidyo implementation. For the Chat to Vidyo implementation, the JavaScript file is named ve4g_chat.js. Directory Structure The directory structure for both the Click to Vidyo and Chat to Vidyo solutions is the same. Click to Vidyo <web-application-root> index.jsp (customer User Interface) js ve4g_click.js (vidyo2genesys escalation functionality, client of Genesys Video Server) jquery.min.js WEB-INF web.xml 3

4 Chat to Vidyo <web-application-root> index.jsp js (customer chat UI) ve4gchat.js (chat JavaScript client, chat 2 video functionality methods) jquery.min.js WEB-INF classes eservices (chat client classes) WebAPIServer.properties (WEB-API server configuration) lib (chat client libraries, WEB_API server library) web.xml (web configuration file) The ve4gchat Sample <web-application-root> index.jsp js (customer chat UI) ve4gchat.js (test JavaScript client) jquery.min.js WEB-INF classes web.xml (web configuration file) Libraries Used (Third Party and Others) Click to Vidyo: jquery.min.js (JQuery JavaScript library used mostly for AJAX calls) Chat to Vidyo: jquery.min.js (JQuery JavaScript library used mostly for AJAX calls) jackson-core-asl jar (JSON Parser lib) jackson-mapper-asl jar (JSON Parser lib) javax.servlet-api jar (java Servlet lib) jersey-client jar (java WS Client lib) 4

5 jersey-core jar (java WS Client lib) jsr311-api jar (java WS lib) webapi jar (Genesys WEB_API) Click to Vidyo (WebSocket) The configuration section sets the server Uri and path to mandatory vidyo.min.js. The _server_uri and script variables contain Uri to Genesys Vidyo Server host and secured port. The vidyo.min.js script is a mandatory initialization script, which is executed on the Click to Vidyo page load. The Uri should be structured as follows: Make sure this Uri can be loaded by the browser before testing the Click to Vidyo widget. JS Local Variables _guesturi, url for guest access to meeting room, filled with value from Genesys Vidyo Server _popup, popup window object initialized if open video to popup is enabled _popup_style = "height=600, width=800, top=300, left=300, scrollbars=0" _popup_label = "Video chat" frame; _frame_style = "" _frame_width = 650 _frame_height = 700 _topic = "NONE" UI Elements //iframe object for embedded mode Objects of the UI elements are loaded from the document when the Click To Video button is clicked, which include the following: _click2videobutton; _click2videocheck; _click2videocancel; _click2videoclose; _click2videoerrorcb; _click2videocmb. JavaScript as well as browser detection are used to determine whether the video meetings needs to be navigated to WebRTC or the web client. The details regarding browser detection are not provided in this document. JS Object _vidyo The following parameters are included: debug : true/false, enables/disables browser console log 5

6 firstname : "", string identifier of customer, can be empty lastname : "", string identifier of customer, can be empty div_id : "vidyo_div", id of the HTML element that contains embedded video window frame frame_id : "vidyo_frame", id of the HTML embedded video frame element checkbox_id : "ispopupwindow", id of the pop-up checkbox element tovideo_button_id : "click2videobtnid", id of the click to video button element cancel_button_id : "cancelclick2videobtnid", id of the cancel video button element close_button_id : "closevideobtnid", id of the close button element cmb_topic_id : "click2videocmbid", id of the topic selection combo box element is_popup : false/true, boolean value signaling if the video window will be open as a pop-up or embedded frame webrtcurl : base Uri of the WebRTC Vidyo client thin application that is opened with the guestlink parameter provided by the Genesys Vidyo Server clicktovideo method, e.g.: " vidyoweburl : base Uri of web vidyo client thin application that is opened with the guestlink parameter provided by the Genesys Vidyo Server clicktovideo method, e.g.: " JS Functions Exposed to index.jsp Function Parameters Description clicktovideo() None Initializes UI elements into the JavaScript _vidyo object and invokes clicktovideofunction to establish the Vidyo interaction in Genesys. cancel() None Sends the request to cancel the Vidyo interaction previously created by the customer. It will cause the Genesys interaction to stop or an agent notification message. close() None Cleans up the UI after the conference is finished. 6

7 Internal ve4g_click.js Functions Function Parameters Description clicktovideofunction showclicktovideo data, key value pair list of data onerror, error callback function obj, response JSON message from the Genesys Vidyo server. It contains guestlink, a Vidyo meeting room link, which has been started by the agent desktop application. Initiates user data, sets the error call back function, and invokes the Genesys Vidyo Server API method _gv.api.clicktovidyo(data, showclicktovideo, onerrorfn). The showclicktovideo is a successful callback method. Parses the guestlink from the JSON answer and invokes the showvideo method. showvideo() None Checks the _vidyo object setting and invokes the method for the pop-up or embedded show video functionality (). showvideoin(guest Link) and showvideoout(guest Link) generatevidyoframe Src(guestLink) guestlink, meeting room Uri guestlink, meeting room Uri Calls the generatevidyoframesrc method to get the Uri to the Vidyo thin client application and shows the video in the embedded/pop-up mode. Compiles the Uri to the Vidyo via WebRTC or the web client that is initialized and used for the video meeting room. The full Uri is a return value. The browser navigates to this Uri and connects to the meeting room. cleanup() None Resets the Vidyo object and objects initialized during the Click to Vidyo session. setuistatus(call_ status) call_status, string parameter reflects the Vidyo request status Sets UI elements based on the current call status. 7

8 log(message), warn(message), error(message), currenttime() message, string log record Console logger methods solely for debugging purposes. The log records are enabled if _vidyo.debug is set to true. Load Data The Load Data button makes it easy to conduct user data testing. A data sample file is copied in the WEB-INF\classes\session.userdata file. One record displays per row within the user data file. For example: Keyname1=Value1 Keyname2=Value2 After clicking the Load Data button, an interaction is created in the JSON compatible string format based on the user data in the file that is attached to the request. Click to Vidyo (REST) The REST client partially uses the same methods as WebSocket. The only difference is the communication to the Genesys Vidyo Server protocol. This section only describes the methods that are different from the Web Socket implementation. The implementation uses JQUERY to perform asynchronous REST requests. The Genesys Vidyo Server configuration is as follows: _server_service_uri, link to service core e.g.: " _server_rest_c2v, service Click to Vidyo name as it is configured in the Genesys Vidyo Server application object e.g.: "click-to-vidyo" _server_rest_guestlink, get guestlink Uri method must have value "/guestlink" _server_rest_stop, stop Interaction Uri method must be set to "/stop" The configuration is set at the very beginning of the JavaScript. JS Functions Exposed to index.jsp Function Type Parameters Description cancel() POST Current session id, the Id is set when the click to video function is successful Sends a POST request to the Uri compiled from the _server_service_uri + _current_session.id + _server_rest_stop. This invokes the STOP interaction or agent notification functionality in Genesys. 8

9 Internal ve4g_click.js Functions Function Type Parameters Description clicktovideofunction POST None Sends a request to the Uri compiled from the _server_service_uri+_server_rest_c2v. The return value is a JSON response from the Genesys Vidyo Server. It contains information about current sessions that are created in ORS. If the request is successful, then the geturi(_current_session) method is called. geturi(_current_session) GET None Sends a request to the Genesys Vidyo Server to get the guestlink meeting room Uri. The response is a JSON message that contains Uri information and a success/failed flag. Once the meeting room Uri is obtained from the Genesys Vidyo Server, the same method chain is executed as in the WebSocket implementation. It starts with showvideo() and opens the video window based on the customer s selection (popup/embedded) and the type of browser being used. The response message structure for the Click to Vidyo implementation is explained in the Click to Vidyo section. Load Data The Load Data button makes it easy to conduct user data testing. A data sample file is copied in the WEB-INF\classes\session.userdata file. One record displays per row within the user data file. For example: Keyname1=Value1 Keyname2=Value2 After clicking the Load Data button, an interaction is created in the JSON compatible string format based on the user data in the file that is attached to the request. Click to Vidyo (REST Simple) The Simple sample application doesn t contain Load Data functionality. Click to Vidyo covers the same functionality as the Click to Vidyo (REST) sample. 9

10 Chat to Vidyo (eservices) Sample Chat to Vidyo implementation is developed and tested at single and multi-tenant environments with web-api version 8.5. It uses REST services to open and manage chat sessions. For older web-api releases, it is necessary to follow steps from the Chat to Vidyo Escalation Implementation section. The document doesn't contain information about the chat servlet solution, but focuses on the Chat to Vidyo escalation methods and call cleanup process. The Chat to Vidyo escalation starts in the getmessages() JavaScript function. It reads the last messages from the agent if the message contains the Vidyo meeting room Uri, and then the Vidyo session is started. Note The eservices chat client application is delivered with the escalation sample code. However, it is not production-ready code. The application should be used only for demonstration purposes. Function Type Parameters Description getmessages() POST sessionid, transcriptposition Gets the last chat message from the agent. If the message text length is more than 0, then the message content analysis starts in the processmessage() function. processmessage (strmessage) strmessage, text from last agent s message The function checks for the presence of the "Message:" string. When the string is found in the message, message parsing checks the start or end Vidyo meeting event. The string starts the Vidyo meeting or cleans up previous Vidyo meeting sessions. The openvidyosession(guestlink) method is called and its functionality is the same for Click to Vidyo use cases. sendmessage (message) POST message, is a text message to be sent to chat Executes the AJAX POST to the WEB-API server to send a message to an agent. The method is used to initiate a Vidyo meeting. If the Escalate To Video button is clicked, the message to the agent chat is distributed. The text is set to "Message:VidyoRequest". If the agent s application detects that the text in the chat transcript is enabled to do video, then the application starts the process of establishing the video meeting. 10

11 The messaging related to the Chat to Vidyo escalation is done through the chat transcript. It is possible to filter out the messages related to Chat to Vidyo signaling the returned message in the JavaScript. Current releases do not perform any kind of message filtering due to enhanced debugging of messages exchanged between the agent and customer. Chat to Vidyo Escalation Implementation All the Chat to Vidyo escalation signaling is done using the chat window. All the escalation login is developed in the JavaScript file js\ve4gchat.js released in the Sample application. Request Chat by Customer The customer is requesting escalation by sending "Message:VidyoRequest" to the chat view. To automate this functionality, it is enough to develop a button that will invoke the send message functionality with prefilled text. For testing purposes, it can be typed in manually. In the ve4gchat.js file, there is an escalate2video button for sending a video escalation request to chat. See the code snippet below for more details. //index.jsp <button id="escalate2vidyo" onclick="_chat2vidyo.escalate2vidyo('message:vidyorequest')">escalate To Video</button> //js/ve4gchat.js _chat2vidyo["escalate2vidyo"] = function(message){ sendmessage(message); }; //send message can be simplified like this, to serve video escalation request only function sendmessage(message) { log("text to be sent="+ message); try{ //send message web-api implementation }catch(e){ error("sendmessage - Failed to execute: "+e); } }; Process Guestlink and Open Vidyo Session After WDE creates the meeting and sends the guestlink through the chat, the chat text message is distributed to the customer application. The sample chat 2 vidyo is monitoring every new message and parsing the guestlink. 11

12 //js/ve4gchat.js function processmessage(strmessage) { if (strmessage) { if (strmessage.indexof("message:") > -1){ if (strmessage.indexof("flex.html?roomdirect.html") > -1){ var linkidx = strmessage.indexof("http"); _chat2vidyo.vidyoroomurl = strmessage.substring(linkidx); openvidyosession(_chat2vidyo.vidyoroomurl); } if (strmessage.indexof("\/join\/") > -1){ var linkidx = strmessage.indexof("http"); _chat2vidyo.vidyoroomurl = strmessage.substring(linkidx); openvidyosession(_chat2vidyo.vidyoroomurl); } if (strmessage.indexof("message:endvidyorequest") > -1){ _chat2vidyo.vidyosessionactive = false; } } } } For this purpose, there is a function processmessage(strmessage). The process message function is called from function getmessages(). For integration with older versions of the Genesys chat implementation, it needs to be placed to method that is processing incoming chat message. The result of processing can be: Opening of video session by calling openvidyosession and setting active session flag true. Closing of video view on Message:EndVidyoRequest. Setting of active flag to false. 12

13 When processmessage identifies the guestlink message from the WDE, it starts the video client processing openvidyosession(_chat2vidyo.vidyoroomurl);. //js/ve4gchat.js function openvidyosession(guestlink) { try { if (!_chat2vidyo.vidyosessionactive) { showvideo(); _chat2vidyo.vidyosessionactive = true; } else warn("another chat to vidyo request in progress, don't execute twice"); } catch (e) { error("failed to open vidyo session error="+e); } } function showvideo(){ log("showvideo vidyo popup: "+_chat2vidyo.is_popup+" guestlink: "+_chat2vidyo.vidyoroomurl); if (_chat2vidyo.is_popup) showvideoout(_chat2vidyo.vidyoroomurl); else showvideoin(_chat2vidyo.vidyoroomurl); } Method show video is opening video session embedded or in separate popup. //show embedded video function showvideoin(guestlink){ var vidyosrc = generatevidyoframesrc(guestlink); log("setting up video iframe src: "+vidyosrc); if (frame &&!_chat2vidyo.is_popup) { frame.width = _frame_width; frame.height = _frame_height; frame.style.display = "block"; frame.src = vidyosrc; frame.focus(); } } 13

14 //show video in popup function showvideoout(guestlink){ var vidyosrc = generatevidyoframesrc(guestlink); log("showvideoout open popup with src: "+vidyosrc); _popup = window.open(vidyosrc, _popup_label, _popup_style); _popup.onbeforeunload = function(e){ _chat2vidyo.vidyosessionactive = false; log("popup unloaded set vidyosessionactive="+_chat2vidyo.vidyosessionactive); return null; }; _popup.focus(); } If customer selects popup window, show video out is invoked. The flag _chat2vidyo.is_popup is set from the combo box at the customer web page index.jsp. //index.jsp Enable Popup?<input id="ispopupwindow" type="checkbox" value="0" onchange="_chat2vidyo.ispopup()"></input> //ve4gchat.jsp _chat2vidyo["ispopup"] = function(){ if (_click2videocheck.checked) _chat2vidyo.is_popup = true; else _chat2vidyo.is_popup = false; log("_chat2vidyo[ispopup]: "+_chat2vidyo.is_popup); }; Once the video popup or embedded frame is initialized, the customer will join the video session. For information about how to integrate JavaScript into the custom web page, see the following section. Integrate ve4gchat.js to Custom Web Page For integration of ve4gchat.js to any chat application, it is necessary to: Include ve4gchat.js in the heading of the chat page Find process chat message from Genesys method Modify ve4gchat.js to make function processmessage(strmessage) available globally Modify customer chat application to add video session controls 14

15 Step-by-step instructions are explained in the following chapter using an empty page and button to replace the chat handle message function. Create Test index.jsp File For test purposes, the web application ve4gchat is created. The index.jsp is in its root folder. <html> <header> </header> <script src="js/jquery.min.js"></script> <script src="js/ve4gchat.js"></script> <body onload="_chat2vidyo.onload()"> <p><label for="ispopupwindow" style="margin-right:5" >Enable Popup?</label><input id="ispopupwindow" type="checkbox" value="0" onchange="_chat2vidyo.ispopup()"></input></p> <p><label for="meetingurl" style="margin-right:25" >Meeting Url</label><input id="meetingurl" type="text" size="50"></p> <p><button id="joinvideobtnid" onclick="_chat2vidyo.processmessage('message:' + document.getelementbyid('meetingurl').value)">join</button></p> <div id="vidyo_div"> <iframe id="vidyo_frame" style="display:none" allow="microphone; camera"> </iframe> </div> </body> </html> The button id="joinvideobtnid" is a fake button that will invoke the process message method in ve4gchat.js. The onclick="_chat2vidyo.processmessage('message:' + document.getelementbyid('meetingurl').value)" will be inside the other chat application placed into the incoming chat messages handler. Copy JavaScript Files The JavaScript files must be copied: Find chattovidyo\js\ve4gchat.js and copy it into the ve4gchat/js folder. Find chattovidyo\js\jquery.min.js and copy it into the ve4gchat/js folder. Final web application folder file structure is: ve4gchat (root folder) index.jsp js jquery.min.js 15

16 ve4gchat.js These files can be zipped into ve4gchat.zip and unzipped to the tomcat webapps folder to deploy. Modify ve4gchat.js Modification of ve4gchat.js is required for creating the external function process message and for test purposes. The external function process message will then be included in the chat message handler of the third-party chat solution. Create processmessage function: //inteface for integration with chat solutions _chat2vidyo["processmessage"] = function(guestlink){ // _chat2vidyo.vidyosessionactive is only for test with join button purpose. // it is normally reset on page load or message "Message:EndVidyoRequest" _chat2vidyo.vidyosessionactive = false; log("guestlink="+guestlink); processmessage(guestlink); }; _chat2vidyo["onload"] = function(){ log("on load executed"); _click2videocheck = document.getelementbyid(_chat2vidyo.checkbox_id); //_startchatbtn = document.getelementbyid(_chat2vidyo.start_chat_id); //_stopchatbtn = document.getelementbyid(_chat2vidyo.stop_chat_id); //_sendchatmsgbtn = document.getelementbyid(_chat2vidyo.send_chat_msg_id); //_getmsgbtn = document.getelementbyid("getmessagesbtnid"); //_esc2videobtn = document.getelementbyid(_chat2vidyo.esc_2_video_id); frame = document.getelementbyid(_chat2vidyo.frame_id); //sendframe = document.getelementbyid("chatwrite"); //textframe = document.getelementbyid("chatview"); // if (_getmsgbtn) // _getmsgbtn.style.display = "none"; }; //setuistatus("onload"); Remove unnecessary elements from the onload function. The ve4gchat.war is packaged into the install package for the Vidyo adapter with version and later. 16

17 Sample Workflow and Logs The Click to Vidyo use case is from the user s perspective, which also applies to the Click to Vidyo WebSocket and Click to Vidyo REST samples. Only one workflow applies to this use case. Note The widget code is an interface between the browser/genesys Vidyo Server and the Genesys backend. The process of opening the Vidyo thin client is separate. If the signaling and establish/escalate interaction function works correctly, the sample widget will work as intended. If the Vidyo call initialization fails after successfully navigating to the meeting room, you should investigate the thin Vidyo client deployed at the webrtcurl and vidyoweburl to identify a root cause. Click to Vidyo The customer does the following: 1. Navigates to one of the following Click to Vidyo web pages: Clicks the Click-to-Vidyo button. 17

18 The agent then does the following: 1. Accepts the Vidyo interaction. 2. Starts the Vidyo meeting by clicking the Vidyo ( ) button. The application may also automatically start the Vidyo meeting. 18

19 The Workspace Desktop Edition (WDE) sends a request to distribute the Meeting URL to the customer s browser and then the browser navigates to the meeting room. The customer or agent releases the video meeting and leaves the room. Finally, the customer clicks the Close button to get back to step 1. The screen is cleared and a new Vidyo meeting request can now be sent. 19

20 Chat to Vidyo The customer does the following: 1. Navigates to 2. Clicks the Start Chat button. The chat interaction is delivered to an agent. 20

21 3. Clicks the Escalate To Video button to send a video escalation request. The agent is notified and creates the video meeting room by clicking the video button. The meeting room is created and the URL is automatically pushed to the chat window. 21

22 The customer chat client parses the URL from the chat message and navigates to the client to connect to the meeting room. 22

23 The agent closes the meeting room. The customer s browser is notified and a UI cleanup is performed, which causes the video window to close. The agent and customer can continue with their chat or end it. The ve4gchat Web Application For a quick test, it is possible to deploy ve4gchat.zip content into a Tomcat webapps folder. Follow instructions to set it up properly. You will need the Vidyo client to create a meeting and join it. Use VidyoConnect for that purpose. 1. Unzip the content of ve4gchat.zip into a Tomcat webapps folder. 2. Start the VidyoConnect application and join the meeting. 3. Navigate to ve4gchat/index.jsp. 4. Copy the meeting URL from the application to the Meeting Url text box. 5. Click the Join button. Expected result is that the web application will join the meeting established by the VidyoConnect application. 23

24 Debugging Web Applications A file logger is not being introduced with the sample application. To debug the sample clients, you must use the Tomcat console logs and Browser Console logs. Click to Vidyo WebSocket On the web page load Browser console: DEBUG: vidyo: DEBUG: vidyo: DEBUG: vidyo: DEBUG: vidyo: DEBUG: vidyo: DEBUG: vidyo: DEBUG: vidyo: debug:true ve4g_click.js:274:4 firstname:chloe ve4g_click.js:274:4 lastname:varnet ve4g_click.js:274:4 div_id:vidyo_div ve4g_click.js:274:4 frame_id:vidyo_frame ve4g_click.js:274:4 checkbox_id:ispopupwindow ve4g_click.js:274:4 tovideo_button_id:click2videobtnid ve4g_click.js:274:4 24

25 DEBUG: vidyo: cancel_button_id:cancelclick2videobtnid ve4g_click.js:274:4 DEBUG: vidyo: close_button_id:closevideobtnid ve4g_click.js:274:4 DEBUG: vidyo: cmb_topic_id:click2videocmbid ve4g_click.js:274:4 DEBUG: vidyo: is_popup:false ve4g_click.js:274:4 DEBUG: vidyo: webrtcurl: ve4g_click.js:274:4 DEBUG: vidyo: vidyoweburl: ve4g_click.js:274:4 GET [HTTP/ OK 200ms] LOG: init() vidyo.min.js:1:2305 LOG: init() jquery has been loaded vidyo.min.js:1:2305 GET [HTTP/ OK 0ms] LOG: init() sockjs has been loaded vidyo.min.js:1:2305 GET [HTTP/ OK 0ms] LOG: init() stomp has been loaded Click to Vidyo button clicked Browser Console: DEBUG: vidyo: Cleaning up resources and setting to the initial state... ve4g_click.js:274:4 DEBUG: vidyo: User selected topic: NONE ve4g_click.js:274:4 DEBUG: vidyo: UserData set ve4g_click.js:274:4 LOG: [object Object] vidyo.min.js:1:2305 LOG: window._gv.config.donotusews:true At this point the interaction is created and routed to an agent. Once the agent accepts the interaction, then it is possible to establish the video meeting. Agent established Vidyo meeting successfully Browser Console: LOG: {"id":"4463ea6e-0f93-46fe-af9f- 6f8da5e13021","orsSessionId":"01ABP054F4CK5BJOG41AHG5AES000001","guestLink":"{\"url\":\"ht 25

26 tps://manusteam.api.vidyocloud.com/flex.html?roomdirect.html\",\"key\":\"hec5m7luzf\"}"} vidyo.min.js:1:2305 DEBUG: vidyo: Click to video event response received [{"id":"4463ea6e-0f93-46fe-af9f- 6f8da5e13021","orsSessionId":"01ABP054F4CK5BJOG41AHG5AES000001","guestLink":"{\"url\":\"ht tps://manusteam.api.vidyocloud.com/flex.html?roomdirect.html\",\"key\":\"hec5m7luzf\"}"}] ve4g_click.js:274:4 DEBUG: vidyo: showvideo vidyo popup: false guestlink: ve4g_click.js:274:4 DEBUG: vidyo: Setting up video iframe src: vidyocloud.com/flex.html?roomdirect.html&key=hec5m7luzf&guestname=chloe Varnet" At this point the browser navigates to the Vidyo web client application. This application connects the customer to the meeting room established by an agent. Click to Vidyo REST On web page load Browser Console: DEBUG: vidyo: DEBUG: vidyo: DEBUG: vidyo: DEBUG: vidyo: DEBUG: vidyo: DEBUG: vidyo: DEBUG: vidyo: DEBUG: vidyo: DEBUG: vidyo: DEBUG: vidyo: DEBUG: vidyo: debug:true ve4g_click.js:320:4 firstname:chloe ve4g_click.js:320:4 lastname:varnet ve4g_click.js:320:4 div_id:vidyo_div ve4g_click.js:320:4 frame_id:vidyo_frame ve4g_click.js:320:4 checkbox_id:ispopupwindow ve4g_click.js:320:4 tovideo_button_id:click2videobtnid ve4g_click.js:320:4 cancel_button_id:cancelclick2videobtnid ve4g_click.js:320:4 close_button_id:closevideobtnid ve4g_click.js:320:4 cmb_topic_id:click2videocmbid ve4g_click.js:320:4 is_popup:false ve4g_click.js:320:4 DEBUG: vidyo: webrtcurl: ve4g_click.js:320:4 DEBUG: vidyo: vidyoweburl: Click to Vidyo button clicked Browser Console: 26

27 DEBUG: vidyo: clicktovideofunction start server uri: ve4g_click.js:320:4 DEBUG: vidyo: User selected topic: NONE ve4g_click.js:320:4 DEBUG: vidyo: clicktovideofunction success server id:ebe44012-fda8-478f-9268-b8ff7107ce35, ors sessionid:01abp054f4ck5bjog41ahg5aes ve4g_click.js:320:4 DEBUG: vidyo: geturi method started data.id: ebe44012-fda8-478f-9268-b8ff7107ce35 ve4g_click.js:320:4 DEBUG: vidyo: clicktovideofunction Callback execution completed The interaction is created and routed to an agent. The agent must now establish the video meeting with the agent desktop application. Agent established Vidyo meeting successfully DEBUG: vidyo: geturi success message: {"id":"ebe44012-fda8-478f b8ff7107ce35","orssessionid":"01abp054f4ck5bjog41ahg5aes000003","guestlink":"{\"url\":\"htt ps://manusteam.api.vidyocloud.com/flex.html?roomdirect.html\",\"key\":\"3las6tqtkb\"}"} ve4g_click.js:320:4 DEBUG: vidyo: Click to video event response received [{"id":"ebe44012-fda8-478f b8ff7107ce35","orssessionid":"01abp054f4ck5bjog41ahg5aes000003","guestlink":"{\"url\":\"htt ps://manusteam.api.vidyocloud.com/flex.html?roomdirect.html\",\"key\":\"3las6tqtkb\"}"}] ve4g_click.js:320:4 DEBUG: vidyo: showvideo vidyo popup: false guestlink: ve4g_click.js:320:4 DEBUG: vidyo: Setting up video iframe src: vidyocloud.com/flex.html?roomdirect.html&key=3las6tqtkb&guestname=chloe Varnet" ve4g_click.js:320:4 DEBUG: vidyo: geturi callback execution completed At this point the customer application invokes the Vidyo web client application, which connects the customer to the meeting room. Chat to Vidyo Startup Start checking the Tomcat logs for a message on the Tomcat Container "WebAPI host=<hostname> port=<port> contextpath=<cntxpath>" The values enclosed in <> must match the configuration set in the WebAPIServer.properties file. Chat page load Web browser console Message "DEBUG: on load executed" says that page is loaded. 27

28 Start Chat Browser Console: DEBUG: startchat success message: {"sessionid":"2eb6d54d5e66b8c409139a6718f098c0","code":200,"message":"success"} ve4g_chat.js:411:4 DEBUG: return value sessionid assigned to vidyo object=2eb6d54d5e66b8c409139a6718f098c0 ve4g_chat.js:411:4 DEBUG: code=200 ve4g_chat.js:411:4 startchat callback execution completed ve4g_chat.js:411:4 Get Messages Browser Console: DEBUG: getmessages request, sessionid=2eb6d54d5e66b8c409139a6718f098c0 ve4g_chat.js:411:4 DEBUG: return value code=200 ve4g_chat.js:411:4 DEBUG: getmessages success message: {"sessionid":"2eb6d54d5e66b8c409139a6718f098c0","code":200,"transcriptposition":1,"messag e":[{"datetime":" ","participantname":"janko","text":null,"type":"participantjoined","ind ex":1}],"vidyoroomlink":null,"vidyomessagetype":null} Escalate To Video Browser Console: DEBUG: getmessages success message: {"sessionid":"2eb6d54d5e66b8c409139a6718f098c0","code":200,"transcriptposition":3,"messag e":[{"datetime":" ","participantname":"irobot","text":"message: oomlink":null,"vidyomessagetype":null} ve4g_chat.js:411:4 DEBUG: text message=message: NlnKbe ve4g_chat.js:411:4 DEBUG: Close Vidyo Call ve4g_chat.js:411:4 DEBUG: showvideo vidyo popup: false guestlink: Close Video Browser Console: DEBUG: getmessages success message: {"sessionid":"2eb6d54d5e66b8c409139a6718f098c0","code":200,"transcriptposition":4,"messag 28

29 e":[{"datetime":" ","participantname":"irobot","text":"message:endvidyorequest","typ e":"message","index":4}],"vidyoroomlink":null,"vidyomessagetype":null} ve4g_chat.js:411:4 DEBUG: text message=message:endvidyorequest ve4g_chat.js:411:4 DEBUG: Close Vidyo Call ve4g_chat.js:411:4 DEBUG: transcript position: 4 Stop Chat Browser Console: DEBUG: getmessages success message: {"sessionid":"2eb6d54d5e66b8c409139a6718f098c0","code":200,"transcriptposition":6,"messag e":[{"datetime":" ","participantname":"irobot","text":null,"type":"participantleft","index" :5},{"dateTime":" ","participantName":"janko","text":null,"type":"ParticipantLeft","index" :6}],"vidyoRoomLink":null,"vidyoMessageType":null} ve4g_chat.js:411:4 DEBUG: text message=null ve4g_chat.js:411:4 DEBUG: getmessages request, sessionid=2eb6d54d5e66b8c409139a6718f098c0 ve4g_chat.js:411:4 DEBUG: return value code=404 ve4g_chat.js:411:4 DEBUG: getmessages callback execution completed ve4g_chat.js:411:4 DEBUG: _chat2vidyo.sessionid is null don't execute get messages! After the chat has stopped, the chat object is released from the server memory. Therefore, the 404 message is sent from the backend. The JavaScript continues checking in loop to see if there is an active chat. It will not send requests to the backend until the Start chat button is clicked again. 29

30 Ve4G Genesys Widgets The integration of the Vidyo channel into Genesys Widget 9 is yet way to implement Click to Vidyo and Chat to Vidyo use cases. It uses Genesys Widgets configured and customized to communicate to the Vidyo server and implements the Vidyo thin client to handle the video session. This chapter explains the solution architecture and details about how to use sample code for integration with the customer environment. All the code provided is meant to be sample code; it can be used for demonstration purposes and as an example of how Genesys Widgets can be customized for Vidyo purposes. The widgets are customer-facing interface only; the agent interface functionality is not changed. The solution is backward compatible with previous versions of Vidyo Adapter. The solution begins with a Sample Welcome screen, and it navigates the user to the Click to Vidyo or Chat to Vidyo samples. Desktop Mobile 30

31 Click to Vidyo This chapter explains how the customization of widgets operates and provides information about the Click to Vidyo customization code. The customization is a combination of Widgets configuration and additional plugins registered with CX Bus. Customer Interface - Desktop The Click to Vidyo Home screen allows: Home Page navigates back to welcome screen Open Click to Vidyo opens Click to Vidyo start toaster view Close Click to Vidyo closes Click to Vidyo start toaster view Side Bar on a right side: Opens live Assistance Channel Selector button Opens Click to Vidyo toaster view Live Assistance is so called channel selector, here multiple communication channels can be configured. 31

32 In the Click to Vidyo case, there is just a single button. The button opens Click to Vidyo toast view Request Video. After filling in all the information and clicking the Send button, the routing screen appears. Click to Vidyo is now looking for an agent to assign the Vidyo interaction. If the agent is found and the video session is established, the guestlink (meeting URL) is delivered to widget customization code and it opens the overlay Video View. 32

33 The alternate flow for routing of the Vidyo session is routing timeout. When no agents are available, an error that is delivered from ORS is displayed in Widget. Customer Interface Mobile The Channel Selector is available with options to select a communication channel in the mobile version of Click to Vidyo. In the sample code, Video Chat is the only configured channel. 33

34 Clicking the Video Chat button causes the Request Video toaster view to open. Fill mandatory information and click the Send button to start Vidyo routing. The routing screen of the requested video will appear. If the Vidyo session is successfully delivered to an agent and the WDE updates the solution with the new guestlink, the guestlink is processed by Widget customization and the Vidyo view is opened. The Vidyo view opens in the Overlay window. 34

35 An alternate flow to the successful routing is timeout or error from the Genesys backend. In such cases, the Routing Error message from the Genesys backend is displayed. Chat to Vidyo Customer Interface Desktop The Home screen of Chat to Vidyo allows the customer to open a live chat with the Open Chat button or from the side bar. 35

36 This page routes the customer to the Registration form, where the customer sets data and sends chat requests to the Genesys backend. After routing selects an agent and chat is established, the customer can see the chat window as shown below. The customer can use the video icon request for a video session. under the chat send message text box and send Clicking the video icon button sends a video request to the chat transcript. The Agent and customer can see the Message:VideoRequest message in the chat window. Agent must click the Vidyo button at the agent desktop to initiate the video session and join the meeting room. Only after the agent joins the meeting room, the meeting url is copied into the chat transcript. Customer Widget opens a video frame automatically or opens the invitation screen. In the invitation screen, the user can select one of following actions: Open Embedded (video frame is embedded in Genesys Overlay Widget) 36

37 Open video frame in popup window Cancel video meeting After the video view is open, the video screen appears at the customer desktop. The chat toaster view remains open. When an agent makes a decision to close the video view from WDE, the video session is destroyed and all participants are disconnected. After the close video session procedure is finished, the message Message:EndVidyoRequest is sent from WDE to the chat transcript. The video session is ended and the Genesys Widget closes the video view. The screenshot below shows the status after the video session is ended. 37

38 Customer Interface Mobile The video chat home screen contains the chat view at the sidebar and live assistance view in right bottom corner. The display mode of Genesys widget is set by configuration of widget elements. 38

39 When the chat is established, the Live Chat toaster view is displayed. The customer can request a video session by clicking under the message text box. After the video is requested, the Message:RequestVideo appears in the chat transcript. The Genesys WDE opens the video meeting and joins the session. Then WDE sends the guestlink to the chat transcript. Genesys Widget customization for mobile devices opens the video view automatically to overlay the screen and the chat toaster is minimized. The screen below shows the video view in portrait and landscape mode. 39

40 After the agent releases the video session and the Vidyo client is stopped successfully, the Message:VidyoRequestEnd is distributed. The customer widget closes the overlay view and the toaster chat view is maximized. The customer can request a Chat to vidyo escalation multiple times for each single chat session. A new guestlink is delivered to the chat transcript for each new video session. 40

41 Developers Guide The mobile and desktop versions use the same code for handling video session and guestlink delivery. The switch between mobile and desktop views and functionalities is driven by switch IsMobile. This switch is maintained by ve4gutils.js. See the ve4gutils.js section for more details. Code Structure The Click to Vidyo code is in separate files. The developer can take Click to Vidyo files and use them standalone without Chat to Vidyo code present in the solution. After the ve4g-widget-sample.war file is deployed into the container, the source code root application folder is ve4g-widget-sample and contains the following files: css (styles folder) ve4gwclick.css, ve4g widget styles can be customized by developer widgets.min.css, Genesys Widgets styles js (JavaScript folder) plugins, folder with Genesys Widgets plugins ve4g, folder with ve4g JavaScript files for click to vidyo and chat to vidyo click2vidyo.js, click to vidyo Genesys Widget configuration and handler chat2vidyo.js, chat to vidyo Genesys Widget configuration and handler ve4gclick.js, click to vidyo escalation initialization ve4gclient.js, Vidyo Server WebSocket client code ve4gclientrest.js, Vidyo Server REST Full client code ve4gchat.js, chat to vidyo escalation initialization ve4gutils.js, contains vidyo thin client configuration and logger utilities. ve4gview.js, contains view for click and chat to vidyo widgets.min.js, Genesys Widgets script cxbus.min.js, Genesys Widgets CX bus jquery.min.js, third party jquery script click2vidyo.jsp, Click To Vidyo home screen chat2vidyo.jsp, Chat To Vidyo home screen index.jsp, Genesys Widgets Home screen 41

42 ve4gutils.js This contains configuration of WebRTC and native VidyoWorks thin clients. These clients display the video frame and handle all communication from the browser to the VidyoWorks platform. The public variables are: ve4gutils.clientwebrtc, webrtc client url ve4gutils.clientweburl, native client url ve4gutils.ismobile, flag that detects mobile devices ve4gutils.currenttime, returns current time for better debugging. Logger uses this public function as prefix in log records ve4gutils.clientwebrtc = " ve4gutils.clientweburl = " ve4gutils.iswebrtc = false; ve4gutils.ismobile = /iphone ipad ipod Android/i.test(navigator.userAgent); if(navigator.useragent.indexof("chrome")!= -1 ) { ve4gutils.iswebrtc = true; } else if(navigator.useragent.indexof("firefox")!= -1 ) { ve4gutils.iswebrtc = true; } if (ve4gutils.iswebrtc) { ve4gutils.clienturl = ve4gutils.clientwebrtc; } else { ve4gutils.clienturl = ve4gutils.clientweburl; } The ve4gutils are used in both the Click to Vidyo and Chat to Vidyo solutions. ve4gview.js This initiates the Genesys Widget Extension and registers the commands to operate the video view. Video view is the Vidyo frame, which may be embedded into Genesys Overlay view or opened in a separate popup window. All the actions are driven by setting Click to Vidyo and Chat to Vidyo options explained later in this guide and in the Deployment guide. For mobile devices, popup windows are disabled and the video view opens in the Genesys Overlay view only. 42

43 window._genesys.widgets.extensions["ve4gview"] = function($, CXBus, Common){ ve4gviewplugin = CXBus.registerPlugin("Ve4GView"); ve4gviewplugin.registercommand("open" - opens overlay View with Video Frame openoverlay(e.data.guestlink, e.data.actor); ve4gviewplugin.registercommand("close" closes overlay view with video frame closeoverlay(e.data.actor); ve4gviewplugin.registercommand("openpopup" opens popup window with Video Frame openpopup(e.data.guestlink, e.data.actor); ve4gviewplugin.registercommand("closepopup" closes popup window with Vidyo Frame closepopup(); ve4gviewplugin.registercommand("openinvite" opens invite Toaster view with options offered to user openinvitation(e.data.guestlink, e.data.actor); ve4gviewplugin.registercommand("closeinvite" closes invite Toaster view with options offered to user The commands use private JavaScript functions to perform the operations. openpopup(vidyosrc, actor) Opens Vidyo Frame in popup window. Input parameters: vidyosrc, is URL to Vidyo Server thin client with parameters pointing to meeting room. actor, is the source of request (it can be click2v or chat2v). It stands forclick to Vidyo and Chat to Vidyo use cases. For Chat to Vidyo escalations and auto open video view disabled, must be toaster invitation view closed after popup is opened. closepopup() Closes popup window if it is defined. openoverlay(vidyosrc, actor) Opens overlay view with video source and defines overlay view body. If the body must be updated with new text or buttons, this is the place where it can be done. Input parameters: vidyosrc, is URL to Vidyo Server thin client with parameters pointing to meeting room. 43

44 actor, is the source of request (it can be click2v or chat2v). It stands for click to vidyo of chat to vidyo use cases. If actor equals to chat2v and device equals to mobile, the chat view is minimized and the overlay opens. closeoverlay(actor) Closes the overlay view with Video frame in it. Input parameters: actor If actor equals to chat2v and device is mobile, the chat view is maximized after the overlay is closed. openinvitation(vidyosrc, actor) Open invitation opens the Toaster View with options to open popup or Overlay view. It offers possibility to cancel vidyo request. The toaster body is defined here and can be adjusted for more text or functionality. Input parameters: vidyosrc, is URL to Vidyo Server thin client with parameters pointing to meeting room. actor, is the source of request (it can be click2v or chat2v). It stands for click to vidyo of chat to vidyo use cases. If the cancel button is pressed the cancel message is sent to Vidyo Server or Chat transcript. The determination is done based on actor value. The ve4gview and ve4gutils are common namespaces used for both click to vidyo ad chat to vidyo escalation scenarios. Click to Vidyo The architecture of the Click to Vidyo solution components is not changed from the Vidyo Adapter perspective. From the Genesys solution architecture perspective, the Genesys Widgets are a new product within the solution. 44

45 Web Container (Genesys Widgets, Click To Vidyo, Chat To Vidyo) Vidyo Server Interaction Server Workspace Desktop (Vidyo Plugin) Orchestration Server click2vidyo.jsp Contains the buttons for Click to Vidyo and the initialization script for the Click to Vidyo solution. The initialization script must be in the html body tag, otherwise Genesys Widgets don t load the scripts correctly. The load command is <script src="js/ve4g/ve4gclick.js" defer></script>. ve4gclick.js Loads files required for configuration of the Click to Vidyo use case. It contains the configuration relevant to Click to Vidyo. var serveruri=" ve4gclick.serveruri = serveruri; ve4gclick.pluginname = "Ve4G"; //possible values "Ve4GREST", "Ve4G" ve4gclick.vidyoautoopen = true; ve4gclick.routingerrscrtout = 5000; For more information about the configuration, refer to deployment guide of Click to Vidyo Vidyo Adapter solution. Initialization of user interface elements stores the elements based on ID into local variables for future handling. var commands_div = document.getelementbyid("c2vcommands"); var loading_div = document.getelementbyid("c2vloading"); var error_div = document.getelementbyid("c2verror"); commands_div.style.display = "none"; loading_div.style.display = "block"; error_div.style.display = "none"; 45

46 Initialization of Genesys Vidyo Server input parameters is required before the Vidyo Server API is called. window._gv = window._gv {}; _gv.config = { serverurl:ve4gclick.serveruri, debug:true, donotusews:true }; The loading of scripts is developed in sequence. All scripts loaded in this file are required for the Click to Vidyo use case: Vidyo Server JavaScript file /scripts/vidyo.min.js (ensure that vidyo server is reachable) js/ve4g/ve4gutils.js, utils JavaScript required for logger and vidyo thin client js/ve4g/click2vidyo.js, click to vidyo configuration, manager and event handlers js/ve4g/ve4gview.js, Widgets toaster, overlay and popup windows js/ve4g/ve4gclient.js, WebSocket Client of Vidyo Server js/ve4g/ve4gclientrest.js, REST Full client of vidyo server js/widgets.min.js, Genesys Widget code In order to keep the sequence right, loading of the script is developed with handlers. The handlers ensure whether the script was loaded successfully and the Vidyo Server Click to Vidyo functionality is available. For example, Vidyo Server script file Loaded and ErrorHandler: var s = document.createelement('script'); s.setattribute('src', serveruri+"/scripts/vidyo.min.js"); s.defer = true; s.onload = handleload; s.onerror = handleerror; document.head.appendchild(s); The handleload() function handles the Vidyo Server loaded successfully event. The same pattern is reused for other scripts and their dependencies. The last loaded script is and must be js/widgets.min.js, Genesys Widget code. Because all the plugin modules must be initialized before this plugin module is loaded. 46

47 function handleload() { if (!done) { done = true; console.info("vidyoserver vidyo.min.js loaded successfully"); commands_div.style.display = "block"; loading_div.style.display = "none"; error_div.style.display = "none"; s = document.createelement('script'); s.setattribute('src', "js/ve4g/click2vidyo.js"); s.onload = handleloadc2v; s.defer = true; document.head.appendchild(s); } } The HandleError resolves the situation, when the Vidyo Server is not available and displays an error message. If the Vidyo Server is not available, the loading of the Widget configuration is skipped and Genesys Widgets are active. function handleerror() { if (!done) { done = true; console.info("vidyoserver vidyo.min.js not loaded"); commands_div.style.display = "none"; loading_div.style.display = "none"; error_div.style.display = "block"; } } The following chapters explain each JavaScript namespace in detail. click2vidyo.js Local variables: vidyoinvitebody, invitation Toaster window body is defined here. It contains user information div id="vidyosubmit" wait for interaction routing div id="vidyowait" error screen div id="waiterror" ispopup = false, specifies whether Video View should be opened to popup or overlay, set by public function setpopup = function(){ } 47

VidyoEngage for Genesys Widgets

VidyoEngage for Genesys Widgets VidyoEngage for Genesys Widgets Developer Guide Product Version 18.2.0 Document Version A April, 2018 2018 Vidyo, Inc. all rights reserved. Vidyo s technology is covered by one or more issued or pending

More information

Lab 1: Getting Started with IBM Worklight Lab Exercise

Lab 1: Getting Started with IBM Worklight Lab Exercise Lab 1: Getting Started with IBM Worklight Lab Exercise Table of Contents 1. Getting Started with IBM Worklight... 3 1.1 Start Worklight Studio... 5 1.1.1 Start Worklight Studio... 6 1.2 Create new MyMemories

More information

Getting started with Convertigo Mobilizer

Getting started with Convertigo Mobilizer Getting started with Convertigo Mobilizer First Sencha-based project tutorial CEMS 6.0.0 TABLE OF CONTENTS Convertigo Mobilizer overview...1 Introducing Convertigo Mobilizer... 1-1 Convertigo Mobilizer

More information

Live Agent for Support Agents

Live Agent for Support Agents Live Agent for Support Agents Salesforce, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Aware IM Version 8.2 Aware IM for Mobile Devices

Aware IM Version 8.2 Aware IM for Mobile Devices Aware IM Version 8.2 Copyright 2002-2018 Awaresoft Pty Ltd CONTENTS Introduction... 3 General Approach... 3 Login... 4 Using Visual Perspectives... 4 Startup Perspective... 4 Application Menu... 5 Using

More information

Genesys Mobile Services Deployment Guide. Setting ORS Dependencies

Genesys Mobile Services Deployment Guide. Setting ORS Dependencies Genesys Mobile Services Deployment Guide Setting ORS Dependencies 4/6/2018 Setting ORS Dependencies Contents 1 Setting ORS Dependencies 1.1 Setting ORS Options 1.2 Deploying DFM Files 1.3 Additional ORS

More information

SAP NW CLOUD HANDS-ON WORKSHOP

SAP NW CLOUD HANDS-ON WORKSHOP SAP NW CLOUD HANDS-ON WORKSHOP CD261 Exercises Sajjad Ahmed, Steven Taylor / SAP 2 Table of Contents Introduction P. 3 Application Description P. 3 Workshop Agenda P. 3 Exercise 1 Configure Development

More information

VidyoDesktop. Installation and User Guide

VidyoDesktop. Installation and User Guide VidyoDesktop Installation and User Guide Product Version 3.6 Document Version C July, 2016 2016 Vidyo, Inc. All rights reserved. Vidyo s technology is covered by one or more issued or pending United States

More information

vrealize Code Stream Plug-In SDK Development Guide

vrealize Code Stream Plug-In SDK Development Guide vrealize Code Stream Plug-In SDK Development Guide vrealize Code Stream 2.2 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

TeamViewer User Guide for Microsoft Dynamics CRM. Document Information Version: 0.5 Version Release Date : 20 th Feb 2018

TeamViewer User Guide for Microsoft Dynamics CRM. Document Information Version: 0.5 Version Release Date : 20 th Feb 2018 TeamViewer User Guide for Microsoft Dynamics CRM Document Information Version: 0.5 Version Release Date : 20 th Feb 2018 1 P a g e Table of Contents TeamViewer User Guide for Microsoft Dynamics CRM 1 Audience

More information

KonaKart Shopping Widgets. 3rd January DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK

KonaKart Shopping Widgets. 3rd January DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK KonaKart Shopping Widgets 3rd January 2018 DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK Introduction KonaKart ( www.konakart.com ) is a Java based ecommerce platform

More information

MASTERS COURSE IN FULL STACK WEB APPLICATION DEVELOPMENT W W W. W E B S T A C K A C A D E M Y. C O M

MASTERS COURSE IN FULL STACK WEB APPLICATION DEVELOPMENT W W W. W E B S T A C K A C A D E M Y. C O M MASTERS COURSE IN FULL STACK WEB APPLICATION DEVELOPMENT W W W. W E B S T A C K A C A D E M Y. C O M COURSE OBJECTIVES Enable participants to develop a complete web application from the scratch that includes

More information

ETC WEBCHAT USER GUIDE

ETC WEBCHAT USER GUIDE ETC WEBCHAT USER GUIDE CONTENTS Overview... 2 Agent and User Experience... 2 Agent Extention Window... 3 Etc WebChat Admin Portal... 4 Agent Groups... 5 Create, Edit, Delete A Group... 5 Create, Edit,

More information

Eclipse Scout. Release Notes. Scout Team. Version 7.0

Eclipse Scout. Release Notes. Scout Team. Version 7.0 Eclipse Scout Release Notes Scout Team Version 7.0 Table of Contents About This Release.......................................................................... 1 Service Releases..........................................................................

More information

Web API Lab. The next two deliverables you shall write yourself.

Web API Lab. The next two deliverables you shall write yourself. Web API Lab In this lab, you shall produce four deliverables in folder 07_webAPIs. The first two deliverables should be pretty much done for you in the sample code. 1. A server side Web API (named listusersapi.jsp)

More information

Comet and WebSocket Web Applications How to Scale Server-Side Event-Driven Scenarios

Comet and WebSocket Web Applications How to Scale Server-Side Event-Driven Scenarios Comet and WebSocket Web Applications How to Scale Server-Side Event-Driven Scenarios Simone Bordet sbordet@intalio.com 1 Agenda What are Comet web applications? Impacts of Comet web applications WebSocket

More information

BMC FootPrints 12 Integration with Remote Support

BMC FootPrints 12 Integration with Remote Support BMC FootPrints 12 Integration with Remote Support 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are

More information

Developing Ajax Web Apps with GWT. Session I

Developing Ajax Web Apps with GWT. Session I Developing Ajax Web Apps with GWT Session I Contents Introduction Traditional Web RIAs Emergence of Ajax Ajax ( GWT ) Google Web Toolkit Installing and Setting up GWT in Eclipse The Project Structure Running

More information

Genesys Mobile Services API Reference. Chat API Version 2 with CometD

Genesys Mobile Services API Reference. Chat API Version 2 with CometD Genesys Mobile Services API Reference Chat API Version 2 with CometD 6/7/2018 Contents 1 Chat API Version 2 with CometD 1.1 Prerequisites for the CometD API 1.2 How to use the CometD API 1.3 CometD API

More information

VCC Chat Feature Highlights

VCC Chat Feature Highlights VCC 2.5.9 Chat Feature Highlights Agenda VCC Chat Channel Overview VCC Dashboard Chat Features Overview VCC Agent Desktop Chat Features Overview Managing the Channel Status Agent Status Monitoring for

More information

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Table of Contents Lab 3 Using the Worklight Server and Environment Optimizations... 3-4 3.1 Building and Testing on the Android Platform...3-4

More information

Genesys Mobile Services Deployment Guide. Most Common System Errors

Genesys Mobile Services Deployment Guide. Most Common System Errors Genesys Mobile Services Deployment Guide Most Common System Errors 9/4/2018 Contents 1 Most Common System Errors 1.1 At Start-up 1.2 Errors in GMS Core Functionality 1.3 Callback Service Errors 2 Chat

More information

Clearspan Hosted Thin Receptionist R Release Notes APRIL 2015 RELEASE NOTES

Clearspan Hosted Thin Receptionist R Release Notes APRIL 2015 RELEASE NOTES Clearspan Hosted Thin Receptionist R20.0.33 Release Notes APRIL 2015 RELEASE NOTES Clearspan Hosted Thin Receptionist R20.0.33 Release Notes The information conveyed in this document is confidential and

More information

Software Integration Guide

Software Integration Guide Software Integration Guide Topaz SigIDExtLite SDK Designed for use in Chrome and Firefox Browser Extension frameworks Version 1.0.0.3 Copyright Topaz Systems Inc. All rights reserved. For Topaz Systems,

More information

Client Samples. Android Sample

Client Samples. Android Sample Client Samples Android Sample 2/6/2018 Contents 1 Android Sample 1.1 Overview 1.2 Implemented Scenarios 1.3 Prerequisites 1.4 Running the Sample Client Samples 2 Android Sample Updated in 8.5.112, 8.5.114

More information

I, J, K. Eclipse, 156

I, J, K. Eclipse, 156 Index A, B Android PhoneGap app, 158 deploying and running, 172 New Eclipse project, 158 Activity dialog, 162 application properties, 160 AVD, 170 configuration, 167 Launcher Icon dialog, 161 PhoneGap

More information

ENABLING WEBCHAT HOSTED USER GUIDE

ENABLING WEBCHAT HOSTED USER GUIDE ENABLING WEBCHAT HOSTED USER GUIDE CONTENTS... 1 Sign up Process... 2 Sign up Process (Continued)... 3 Logging In/ Out... 4 Admin Dashboard... 5 Creating, Edit, Delete A User... 5 Creating, Edit, Delete

More information

Developing and Deploying vsphere Solutions, vservices, and ESX Agents

Developing and Deploying vsphere Solutions, vservices, and ESX Agents Developing and Deploying vsphere Solutions, vservices, and ESX Agents Modified on 27 JUL 2017 vsphere Web Services SDK 6.5 vcenter Server 6.5 VMware ESXi 6.5 Developing and Deploying vsphere Solutions,

More information

DESIGN AND IMPLEMENTATION OF SAGE DISPLAY CONTROLLER PROJECT

DESIGN AND IMPLEMENTATION OF SAGE DISPLAY CONTROLLER PROJECT DESIGN AND IMPLEMENTATION OF SAGE DISPLAY CONTROLLER BY Javid M. Alimohideen Meerasa M.S., University of Illinois at Chicago, 2003 PROJECT Submitted as partial fulfillment of the requirements for the degree

More information

APAR PO06620 Installation Instructions

APAR PO06620 Installation Instructions IBM Corporation APAR PO06620 Installation Instructions IBM Counter Fraud Management 1.5.0.5 IBM Counter Fraud Development 3-31-2017 Table of Contents 1 Fix readme... 1 2 Abstract... 1 3 Contents... 1 4

More information

Comprehensive AngularJS Programming (5 Days)

Comprehensive AngularJS Programming (5 Days) www.peaklearningllc.com S103 Comprehensive AngularJS Programming (5 Days) The AngularJS framework augments applications with the "model-view-controller" pattern which makes applications easier to develop

More information

Widgets Reference. Genesys Widgets 8.5

Widgets Reference. Genesys Widgets 8.5 Widgets Reference Genesys Widgets 8.5 2/28/2018 Table of Contents Genesys Widgets Reference 6 WebChatService 7 Configuration 8 Localization 11 API Commands 12 API Events 28 WebChat 31 Configuration 38

More information

Adobe Marketing Cloud Best Practices Implementing Adobe Target using Dynamic Tag Management

Adobe Marketing Cloud Best Practices Implementing Adobe Target using Dynamic Tag Management Adobe Marketing Cloud Best Practices Implementing Adobe Target using Dynamic Tag Management Contents Best Practices for Implementing Adobe Target using Dynamic Tag Management.3 Dynamic Tag Management Implementation...4

More information

Release Notes. VidyoDesktop. for Windows and Mac. Anchor Version (17) June, 2015 Doc. Rev A

Release Notes. VidyoDesktop. for Windows and Mac. Anchor Version (17) June, 2015 Doc. Rev A Release Notes VidyoDesktop for Windows and Mac Anchor Version 3.5.2 (17) June, 2015 Doc. Rev A 2015 Vidyo, Inc. all rights reserved. Vidyo s technology is covered by one or more issued or pending United

More information

Developing and Deploying vsphere Solutions, vservices, and ESX Agents. 17 APR 2018 vsphere Web Services SDK 6.7 vcenter Server 6.7 VMware ESXi 6.

Developing and Deploying vsphere Solutions, vservices, and ESX Agents. 17 APR 2018 vsphere Web Services SDK 6.7 vcenter Server 6.7 VMware ESXi 6. Developing and Deploying vsphere Solutions, vservices, and ESX Agents 17 APR 2018 vsphere Web Services SDK 6.7 vcenter Server 6.7 VMware ESXi 6.7 You can find the most up-to-date technical documentation

More information

A Model-Controller Interface for Struts-Based Web Applications

A Model-Controller Interface for Struts-Based Web Applications A Model-Controller Interface for Struts-Based Web Applications A Writing Project Presented to The Faculty of the Department of Computer Science San José State University In Partial Fulfillment of the Requirements

More information

What's New in ActiveVOS 7.1 Includes ActiveVOS 7.1.1

What's New in ActiveVOS 7.1 Includes ActiveVOS 7.1.1 What's New in ActiveVOS 7.1 Includes ActiveVOS 7.1.1 2010 Active Endpoints Inc. ActiveVOS is a trademark of Active Endpoints, Inc. All other company and product names are the property of their respective

More information

FIREFLY ARCHITECTURE: CO-BROWSING AT SCALE FOR THE ENTERPRISE

FIREFLY ARCHITECTURE: CO-BROWSING AT SCALE FOR THE ENTERPRISE FIREFLY ARCHITECTURE: CO-BROWSING AT SCALE FOR THE ENTERPRISE Table of Contents Introduction... 2 Architecture Overview... 2 Supported Browser Versions and Technologies... 3 Firewalls and Login Sessions...

More information

Snap-Ins Chat. Salesforce, Winter

Snap-Ins Chat. Salesforce, Winter Salesforce, Winter 18 @salesforcedocs Last updated: December 1, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com, inc., as are other

More information

Liferay Themes: Customizing Liferay s Look & Feel

Liferay Themes: Customizing Liferay s Look & Feel Liferay Themes: Customizing Liferay s Look & Feel Liferay is a JSR-168 compliant enterprise portal. Starting with version 3.5.0, Liferay provides a mechanism for developers to easily customize the user

More information

VCC Dashboard Help. How Do I Configure Genesys Webchat?

VCC Dashboard Help. How Do I Configure Genesys Webchat? VCC Dashboard Help How Do I Configure Genesys Webchat? 11/28/2017 Contents 1 How Do I Configure Genesys Webchat? 1.1 How is this option activated? 1.2 How do I download Genesys Webchat? 1.3 What are the

More information

About MiTeam. MiTeam Stream. MiTeam on MiCollab for PC, MAC Client, and Web Client. MiTeam Stream tabs. Create a Stream.

About MiTeam. MiTeam Stream. MiTeam on MiCollab for PC, MAC Client, and Web Client. MiTeam Stream tabs. Create a Stream. QMiTeam for Enterprise Quick Reference Guide About MiTeam MiTeam is a work stream communications and collaboration tool that provides a highly collaborative and persistent workspace for team-meetings,

More information

Oracle - Developing Applications for the Java EE 7 Platform Ed 1 (Training On Demand)

Oracle - Developing Applications for the Java EE 7 Platform Ed 1 (Training On Demand) Oracle - Developing Applications for the Java EE 7 Platform Ed 1 (Training On Demand) Code: URL: D101074GC10 View Online The Developing Applications for the Java EE 7 Platform training teaches you how

More information

Session 8. Reading and Reference. en.wikipedia.org/wiki/list_of_http_headers. en.wikipedia.org/wiki/http_status_codes

Session 8. Reading and Reference. en.wikipedia.org/wiki/list_of_http_headers. en.wikipedia.org/wiki/http_status_codes Session 8 Deployment Descriptor 1 Reading Reading and Reference en.wikipedia.org/wiki/http Reference http headers en.wikipedia.org/wiki/list_of_http_headers http status codes en.wikipedia.org/wiki/_status_codes

More information

Smooks Developer Tools Reference Guide. Version: GA

Smooks Developer Tools Reference Guide. Version: GA Smooks Developer Tools Reference Guide Version: 3.2.1.GA 1. Introduction... 1 1.1. Key Features of Smooks Tools... 1 1.2. 1.3. 1.4. 2. Tasks 2.1. 2.2. 2.3. What is Smooks?... 1 What is Smooks Tools?...

More information

Composer Help. Deploying Composer Applications

Composer Help. Deploying Composer Applications Composer Help Deploying Composer Applications 2/6/2018 Deploying Composer Applications Contents 1 Deploying Composer Applications 1.1 Video Tutorial 1.2 Deploying to Apache Tomcat Server for Testing 1.3

More information

A demo Wakanda solution (containing a project) is provided with each chapter. To run a demo:

A demo Wakanda solution (containing a project) is provided with each chapter. To run a demo: How Do I About these examples In the Quick Start, you discovered the basic principles of Wakanda programming: you built a typical employees/companies application by creating the datastore model with its

More information

UI Course HTML: (Html, CSS, JavaScript, JQuery, Bootstrap, AngularJS) Introduction. The World Wide Web (WWW) and history of HTML

UI Course HTML: (Html, CSS, JavaScript, JQuery, Bootstrap, AngularJS) Introduction. The World Wide Web (WWW) and history of HTML UI Course (Html, CSS, JavaScript, JQuery, Bootstrap, AngularJS) HTML: Introduction The World Wide Web (WWW) and history of HTML Hypertext and Hypertext Markup Language Why HTML Prerequisites Objective

More information

Using the vrealize Orchestrator Operations Client. vrealize Orchestrator 7.5

Using the vrealize Orchestrator Operations Client. vrealize Orchestrator 7.5 Using the vrealize Orchestrator Operations Client vrealize Orchestrator 7.5 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Developing and Deploying vsphere Solutions, vservices, and ESX Agents

Developing and Deploying vsphere Solutions, vservices, and ESX Agents Developing and Deploying vsphere Solutions, vservices, and ESX Agents vsphere 5.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Introduction to Automation. What is automation testing Advantages of Automation Testing How to learn any automation tool Types of Automation tools

Introduction to Automation. What is automation testing Advantages of Automation Testing How to learn any automation tool Types of Automation tools Introduction to Automation What is automation testing Advantages of Automation Testing How to learn any automation tool Types of Automation tools Introduction to Selenium What is Selenium Use of Selenium

More information

jquery Speedo Popup Product Documentation Version 2.1

jquery Speedo Popup Product Documentation Version 2.1 jquery Speedo Popup Product Documentation Version 2.1 21 June 2013 Table of Contents 1 Introduction... 1 1.1 Main Features... 1 1.2 Folder Structure... 1 2 Working with jquery Speedo Popup... 2 2.1 Getting

More information

Skyway 6.3 How To: Web Services

Skyway 6.3 How To: Web Services Abstract Skyway 6.3 How To: Web Services Build a web user interface around existing Web Services Dave Meurer Copyright 2009 Skyway Software This tutorial details how to generate

More information

SAS AppDev Studio TM 3.4 Eclipse Plug-ins. Migration Guide

SAS AppDev Studio TM 3.4 Eclipse Plug-ins. Migration Guide SAS AppDev Studio TM 3.4 Eclipse Plug-ins Migration Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2009. SAS AppDev Studio TM 3.4 Eclipse Plug-ins: Migration

More information

Installation Guide. Sitecore Federated Experience Manager. Installation & Configuration Guide

Installation Guide. Sitecore Federated Experience Manager. Installation & Configuration Guide Sitecore Federated Experience Manager Installation Guide Rev: 23 August 2014 Sitecore Federated Experience Manager Installation Guide Installation & Configuration Guide Table of Contents Chapter 1 Overview...

More information

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1 Using the VMware vcenter Orchestrator Client vrealize Orchestrator 5.5.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Snap-Ins Chat. Salesforce, Summer

Snap-Ins Chat. Salesforce, Summer Snap-Ins Chat Salesforce, Summer 17 @salesforcedocs Last updated: August 17, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com, inc.,

More information

Kendo UI. Builder by Progress : Using Kendo UI Designer

Kendo UI. Builder by Progress : Using Kendo UI Designer Kendo UI Builder by Progress : Using Kendo UI Designer Copyright 2017 Telerik AD. All rights reserved. December 2017 Last updated with new content: Version 2.1 Updated: 2017/12/22 3 Copyright 4 Contents

More information

SSJS Server-Side JavaScript WAF Wakanda Ajax Framework

SSJS Server-Side JavaScript WAF Wakanda Ajax Framework 1 28/06/2012 13:45 What You Will Find in those Examples In the Quick Start, you discovered the basic principles of Wakanda programming: you built a typical employees/companies application by creating the

More information

AJAX. Lab. de Bases de Dados e Aplicações Web MIEIC, FEUP 2010/11. Sérgio Nunes

AJAX. Lab. de Bases de Dados e Aplicações Web MIEIC, FEUP 2010/11. Sérgio Nunes AJAX Lab. de Bases de Dados e Aplicações Web MIEIC, FEUP 2010/11 Sérgio Nunes Server calls from web pages using JavaScript call HTTP data Motivation The traditional request-response cycle in web applications

More information

The course also includes an overview of some of the most popular frameworks that you will most likely encounter in your real work environments.

The course also includes an overview of some of the most popular frameworks that you will most likely encounter in your real work environments. Web Development WEB101: Web Development Fundamentals using HTML, CSS and JavaScript $2,495.00 5 Days Replay Class Recordings included with this course Upcoming Dates Course Description This 5-day instructor-led

More information

esignlive for Microsoft Dynamics CRM

esignlive for Microsoft Dynamics CRM esignlive for Microsoft Dynamics CRM Integrator's Guide Product Release: 2.0 Date: March 09, 2018 esignlive 8200 Decarie Blvd, Suite 300 Montreal, Quebec H4P 2P5 Phone: 1-855-MYESIGN Fax: (514) 337-5258

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

SOA Software Policy Manager Agent v6.1 for WebSphere Application Server Installation Guide

SOA Software Policy Manager Agent v6.1 for WebSphere Application Server Installation Guide SOA Software Policy Manager Agent v6.1 for WebSphere Application Server Installation Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software,

More information

CIS 3308 Logon Homework

CIS 3308 Logon Homework CIS 3308 Logon Homework Lab Overview In this lab, you shall enhance your web application so that it provides logon and logoff functionality and a profile page that is only available to logged-on users.

More information

ZK Mobile for Android The Quick Start Guide

ZK Mobile for Android The Quick Start Guide potix SIMPLY REACH ZK Mobile for Android TM The Quick Start Guide Version 0.8.1 Feburary 2008 ZK Mobile for Android for Android: Quick Start Guide Page 1 of 14 Copyright. All rights reserved. The material

More information

PRODUCT DOCUMENTATION. Installing and Implementing Enterprise Contact Center Chat RELEASE 5.1

PRODUCT DOCUMENTATION. Installing and Implementing Enterprise Contact Center Chat RELEASE 5.1 PRODUCT DOCUMENTATION Installing and Implementing Enterprise Contact Center Chat RELEASE 5.1 Document and Software Copyrights Copyright 1998 2009 ShoreTel, Inc. All rights reserved. Printed in the United

More information

Developing Web Views for VMware vcenter Orchestrator. vrealize Orchestrator 5.5

Developing Web Views for VMware vcenter Orchestrator. vrealize Orchestrator 5.5 Developing Web Views for VMware vcenter Orchestrator vrealize Orchestrator 5.5 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Clearspan Hosted Thin Call Center R Release Notes APRIL 2015 RELEASE NOTES

Clearspan Hosted Thin Call Center R Release Notes APRIL 2015 RELEASE NOTES Clearspan Hosted Thin Call Center R20.0.32 Release Notes APRIL 2015 RELEASE NOTES Clearspan Hosted Thin Call Center R20.0.32 Release Notes The information conveyed in this document is confidential and

More information

Remote Support 19.1 Web Rep Console

Remote Support 19.1 Web Rep Console Remote Support 19.1 Web Rep Console 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are the property

More information

Workspace Desktop Edition Help. Using Workspace Plugin for Skype for Business

Workspace Desktop Edition Help. Using Workspace Plugin for Skype for Business Workspace Desktop Edition Help Using Workspace Plugin for Skype for Business 12/2/2017 Using Workspace Plugin for Skype for Business Contents 1 Using Workspace Plugin for Skype for Business 1.1 Logging

More information

User Guide. 3CX CRM Plug-in for Zendesk. Version

User Guide. 3CX CRM Plug-in for Zendesk. Version User Guide 3CX CRM Plug-in for Zendesk Version 15.5.89 "Copyright VoIPTools, LLC 2011-2018" Information in this document is subject to change without notice. No part of this document may be reproduced

More information

Adobe ColdFusion 11 Enterprise Edition

Adobe ColdFusion 11 Enterprise Edition Adobe ColdFusion 11 Enterprise Edition Version Comparison Adobe ColdFusion 11 Enterprise Edition Adobe ColdFusion 11 Enterprise Edition is an all-in-one application server that offers you a single platform

More information

Force.com Streaming API Developer Guide

Force.com Streaming API Developer Guide Force.com Streaming API Developer Guide Version 41.0, Winter 18 @salesforcedocs Last updated: December 8, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

CSC 8205 Advanced Java

CSC 8205 Advanced Java Please read this first: 1) All the assignments must be submitted via blackboard account. 2) All the assignments for this course are posted below. The due dates for each assignment are announced on blackboard.

More information

Developing and Deploying vsphere Solutions, vservices, and ESX Agents

Developing and Deploying vsphere Solutions, vservices, and ESX Agents Developing and Deploying vsphere Solutions, vservices, and ESX Agents vsphere 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Service Manager. Database Configuration Guide

Service Manager. Database Configuration Guide Service Manager powered by HEAT Database Configuration Guide 2017.2.1 Copyright Notice This document contains the confidential information and/or proprietary property of Ivanti, Inc. and its affiliates

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony MobileFabric TM Integration Service Admin Console User Guide On-Premises Release 7.3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and

More information

5.1 Registration and Configuration

5.1 Registration and Configuration 5.1 Registration and Configuration Registration and Configuration Apache Wink provides several methods for registering resources and providers. This chapter describes registration methods and Wink configuration

More information

Vidyo Server for WebRTC. Administrator Guide

Vidyo Server for WebRTC. Administrator Guide Vidyo Server for WebRTC Administrator Guide Product Version 3.2 Document Version A April, 2016 TABLE OF CONTENTS Overview... 1 Understanding the Configuration Procedure... 1 1. Using Vidyo Server for WebRTC

More information

SelectSurvey.NET Developers Manual

SelectSurvey.NET Developers Manual Developers Manual (Last updated: 5/6/2016) SelectSurvey.NET Developers Manual Table of Contents: SelectSurvey.NET Developers Manual... 1 Overview... 2 Before Starting - Is your software up to date?...

More information

Client Side JavaScript and AJAX

Client Side JavaScript and AJAX Client Side JavaScript and AJAX Client side javascript is JavaScript that runs in the browsers of people using your site. So far all the JavaScript code we've written runs on our node.js server. This is

More information

iview (v2.0) User Guide Version 1.0

iview (v2.0) User Guide Version 1.0 iview (v2.0) User Guide Version 1.0 Updated 5/1/2008 Overview This user guide provides an overview of setting up, configuring and running the iview Operator Console (v2.0). General Support If you have

More information

Adobe ColdFusion (2016 release)

Adobe ColdFusion (2016 release) Adobe (2016 release) Feature improvement history Features included in each edition of Adobe API Manager API monitoring API version and lifecycle management API access control API rate limiting and throttling

More information

Integration Guide epadlink SigCaptureWeb SDK

Integration Guide epadlink SigCaptureWeb SDK Integration Guide epadlink SigCaptureWeb SDK Version 1.1 October 12, 2017 Copyright 2017 epadlink. All rights reserved. www.epadlink.com Table of Contents 1.0 Introduction... 3 2.0 Overview and Architecture...

More information

Composer Deployment Guide. Installation

Composer Deployment Guide. Installation Composer Deployment Guide Installation 12/27/2017 Installation Contents 1 Installation 1.1 Composer Installation Video 1.2 Getting Started After Installation 1.3 Installing Composer as an Eclipse Plugin

More information

User Guide Using AuraPlayer

User Guide Using AuraPlayer User Guide Using AuraPlayer AuraPlayer Support Team Version 2 2/7/2011 This document is the sole property of AuraPlayer Ltd., it cannot be communicated to third parties and/or reproduced without the written

More information

Design Document V2 ThingLink Startup

Design Document V2 ThingLink Startup Design Document V2 ThingLink Startup Yon Corp Andy Chen Ashton Yon Eric Ouyang Giovanni Tenorio Table of Contents 1. Technology Background.. 2 2. Design Goal...3 3. Architectural Choices and Corresponding

More information

Using VMware vrealize Orchestrator with VMware vcloud Availability for vcloud Director Version 1.0 April 2017

Using VMware vrealize Orchestrator with VMware vcloud Availability for vcloud Director Version 1.0 April 2017 Using VMware vrealize Orchestrator with VMware vcloud Availability for vcloud Director Version 1.0 April 2017 Page 1 of 53 This product is protected by U.S. and international copyright and intellectual

More information

Using the VMware vrealize Orchestrator Client

Using the VMware vrealize Orchestrator Client Using the VMware vrealize Orchestrator Client vrealize Orchestrator 7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by

More information

20486-Developing ASP.NET MVC 4 Web Applications

20486-Developing ASP.NET MVC 4 Web Applications Course Outline 20486-Developing ASP.NET MVC 4 Web Applications Duration: 5 days (30 hours) Target Audience: This course is intended for professional web developers who use Microsoft Visual Studio in an

More information

ReportPlus Embedded Web SDK Guide

ReportPlus Embedded Web SDK Guide ReportPlus Embedded Web SDK Guide ReportPlus Web Embedding Guide 1.4 Disclaimer THE INFORMATION CONTAINED IN THIS DOCUMENT IS PROVIDED AS IS WITHOUT ANY EXPRESS REPRESENTATIONS OF WARRANTIES. IN ADDITION,

More information

ZK Mobile The Quick Start Guide

ZK Mobile The Quick Start Guide potix SIMPLY REACH ZK Mobile TM The Quick Start Guide Version 0.8.6 September 2007 Potix Corporation ZK Mobile: Quick Start Guide Page 1 of 12 Potix Corporation Copyright Potix Corporation. All rights

More information

Application Deployment System Guide Version 8.0 October 14, 2013

Application Deployment System Guide Version 8.0 October 14, 2013 Application Deployment System Guide Version 8.0 October 14, 2013 For the most recent version of this document, visit our developer's website. Table of Contents 1 Application Deployment System 4 1.1 System

More information

Programming with the Finesse API

Programming with the Finesse API Programming with the Finesse API OpenSocial Gadgets Source: http://www.slideshare.net/wuzziwug/opensocial-intro-presentation OpenSocial Gadgets A gadget spec: Is an XML file Defines metadata about an OpenSocial

More information

CS506 Web Design & Development Final Term Solved MCQs with Reference

CS506 Web Design & Development Final Term Solved MCQs with Reference with Reference I am student in MCS (Virtual University of Pakistan). All the MCQs are solved by me. I followed the Moaaz pattern in Writing and Layout this document. Because many students are familiar

More information

Platform. Custom Embedded Tabs. Custom Embedded Tab Definitions. Custom Embedded Tabs, page 1

Platform. Custom Embedded Tabs. Custom Embedded Tab Definitions. Custom Embedded Tabs, page 1 Custom Embedded Tabs, page 1 Custom Embedded Tabs Applies to Cisco Jabber for desktop and mobile clients. Custom embedded tabs display HTML content in the client interface. Learn how to create custom embedded

More information

WA2018 Programming REST Web Services with JAX-RS WebLogic 12c / Eclipse. Student Labs. Web Age Solutions Inc.

WA2018 Programming REST Web Services with JAX-RS WebLogic 12c / Eclipse. Student Labs. Web Age Solutions Inc. WA2018 Programming REST Web Services with JAX-RS 1.1 - WebLogic 12c / Eclipse Student Labs Web Age Solutions Inc. Copyright 2012 Web Age Solutions Inc. 1 Table of Contents Lab 1 - Configure the Development

More information

The paper shows how to realize write-once-run-anywhere for such apps, and what are important lessons learned from our experience.

The paper shows how to realize write-once-run-anywhere for such apps, and what are important lessons learned from our experience. Paper title: Developing WebRTC-based team apps with a cross-platform mobile framework. Speaker: John Buford. Track: Mobile and Wearable Devices, Services, and Applications. Hello everyone. My name is John

More information

Lab 2 Examine More Development Features in IBM Worklight

Lab 2 Examine More Development Features in IBM Worklight Lab 2 Examine More Development Features in IBM Worklight Table of Contents 2. Examine More Development Features in IBM Worklight... 2-3 2.1 Examine the fully-built and styled version of MyMemories...2-4

More information