Feature Customizations and Implementations Using Oracle Web SDK Abhay Bhavsar and Rohit Dhamija, July 2020

Total Page:16

File Type:pdf, Size:1020Kb

Feature Customizations and Implementations Using Oracle Web SDK Abhay Bhavsar and Rohit Dhamija, July 2020 Programming Pearls: Feature customizations and implementations using Oracle Web SDK Abhay Bhavsar and Rohit Dhamija, July 2020 Summary The purpose of this article is to provide a guidance to customer deploying digital assistant using the new Oracle Web SDK. It also explains the benefits of migrating from the deprecated 19.4.1 SDK to the new Oracle Web SDK 20.6.1 currently available on Generation 2 Oracle Cloud Infrastructure (OCI). The Oracle Web SDK provides an extensive set of configurations and customizations using properties, event handlers and delegates. The article not only introduces the developers to various built-in capabilities but also provides some customizations that shows the extensibility of the SDK that are not available out of the box. It is assumed that you are familiar with client programming in JavaScript and understand basics of HTML/CSS. At the time of writing this article the latest version of Oracle Web SDK was 20.6.1. Disclaimer Please be aware that while this document demonstrates possible feature implementation using the JavaScript Web SDK, you have to decide the cost of those features. For example, not all channels that your bot is used on would support the features described in this article. The code supplied with this article comes with no support, so use at your own risk. TABLE OF CONTENTS TABLE OF CONTENTS 2 Before You Begin 3 Running The Sample 3 SECTION – I – BASIC SETUP 5 BAS.Q.1 : Set up ODA Web Channel using Oracle Web SDK 6 BAS.Q.2 : Implement Bot Initiated Conversation 10 BAS.Q.3 : Change bot and person icons on the chat header and in the message window 11 SECTION – II – ENHANCING THE CHAT WIDGET 12 INT.Q.1 : Implement banners & quick service buttons 12 INT.Q.2 : Implement Close Button with Confirmation dialog box 13 INT.Q.3 : Adding a Menu to the header of the chat widget 14 INT.Q.4 : Send HTML formatted content as part of the message 17 INT.Q.5 : Embedding YouTube video inside ODA chat web-widget 18 INT.Q.6 : Upload files/attachments to ODA through Web Channel 19 INT.Q.7 : Perform clean-up after a user logged out or loses session 21 INT.Q.8 : Optimize longer bot messages displayed in the Oracle Web Messenger 22 INT.Q.9 : Extending Oracle Digital Assistant built-in Styles 24 SECTION – III – ADVANCED FEATURES 26 ADV.Q.1 : Using Inline forms to capture use information for simple use cases 26 ADV.Q.2 : Configure Voice Channel and support various skill voices depending on region 28 ADV.Q.3 : Test Oracle Digital Assistant Web Channels with Client Authentication Enabled 29 Before You Begin • Ensure that you have access to the instance of Oracle Digital Assistant version 20.06 or later. • A few features may require access to Object Storage service on Oracle Cloud Infrastructure aka OCI. • Download the latest Oracle Digital Assistant Oracle Web SDK. https://www.oracle.com/downloads/cloud/amce-downloads.html • Download and extract the resources.zip file provided with this article to your local machine, it has the DA export and the Oracle Web SDK customized sample. - ITMgmtDA(1.1).zip - Web-SDK-Sample.zip Running The Sample • Import the Digital Assistant (DA). Train it. You may have the DA in Draft status. Figure 1: Import Digital Assistant • Extract the Web-SDK-Sample.zip file provided, the folder structure should look something like shown below: Figure 2: Locate the sample and index.html • Double click on index.html, so that it opens this page on your browser. You will observe a chat widget icon on the bottom right of the browser page. Click on the chat widget, you will observe the screen something like below: Figure 3: Launch chat widget Your chat-widget is ready, but wait, you cannot communicate with this digital assistant because you still need to set up the Oracle Web Channel and route your Digital assistant through it. So, let’s get started. SECTION – I – BASIC SETUP This section answers basic questions on how to set up an Oracle Web Channel and use basic features of the Oracle Web SDK. Here are some of the questions this section answers: Q.1 How do I migrate from old 19.4.1 Web SDK to Oracle Web SDK 20.6.1 available on ODA 20.0x on OCI GEN2? Ans: Refer to BAS.Q.1 of this section. Q.2 How to set up a new Oracle Web channel on Oracle Digital Assistant user interface? Ans: Refer to BAS.Q.1 of this section. Q.3 I am new to Oracle Digital Assistant, help me expose my skill or digital assistant on my website. Ans: You can deploy the sample provided with this article on your web site. You may also choose to store all the SDK files on Oracle Cloud e.g. Object Storage and only make a small change on your web site to run the bot. The HTML code snippet in the index.html page shows a sample of what script you need to embed inside the HTML page of your web site. You can run the bot over a simple HTML page, an Oracle Visual Builder application or deployed on Oracle Content and Experience cloud. Q.4 I need to make basic changes to the out of the box web interface to the sample provided with Oracle Web SDK. Ans: Refer to BAS.Q.3. This topic explains how to change the various icons and make basic UI changes to the chat widget. It also refers you to another article that provides a step-by-step guide on how to do this. Q.5 May I continue using the existing 19.4.1 web channel and SDK on the migrated ODA 20.0x version on OCI GEN 2? Ans: Oracle strongly suggests moving to the Oracle Web channel using the latest Oracle Web SDK 20.6.1 or above. The Oracle Web SDK is very easy to configure, has built-in properties to perform some advanced features and is voice enabled. The old 19.4.1 web channel forces end user messages to be routed through a third party cloud while the Oracle Web SDK is a completely Oracle only solution. The old 19.4.1 channel will be discontinued in near future. Q.6 My migrated instance works fine and my existing web channel continues to function, so why should I change? Ans: The existing channel is only provided so that the migration activity does not disrupt currently deployed bots. It is recommended to create a new Oracle Web Channel and use some techniques provided in this article to improve the overall user experience. You can approach the PM team who would be glad to assist in this migration. Q.7 Can I edit the old web channel so that it can point to a newer version of my skill or DA? Ans: The old 19.4.1 web channel is deprecated and is only provided for a limited time. The channel is read only so that customers are encouraged to move to Oracle Web SDK. YOUR EXISTING WEB CHANNEL (MIGRATED FROM 19.X TO 20.X) WILL BE READ ONLY AND YOU WILL NOT BE ABLE TO MAKE THE CHANGES TO THE CHANNEL, BUT THE CHANNEL RUNTIME WOULD WORK WITHOUT ANY ISSUE. BAS.Q.1 : Set up ODA Web Channel using Oracle Web SDK You will learn to host and run Oracle Digital Assistant chat widget. The following screen shot shows a 19.4.1 web channel which is no longer supported. So we create a new Oracle Web channel. Figure 4: Deprecated 19.4.1 Web Channel You have already imported the digital assistant and trained it. This topic discussed how to create the new Oracle Web channel and configure it to point to your DA. 1. Open Oracle Digital Assistant click on the top left hamburger menu and navigate to Channels menu 2. Under Users tab, click on + Channel button, as shown below: Figure 5: Create new channel 3. Click the + Create Channel button and set the following options: a) Provide a name to the channel, e.g. ITMgmtBotWebChannel. b) Select Channel Type as Oracle Web. c) Under Allowed domains enter * d) Disable the client authentication enabled option. e) Click on the Create button. Figure 6: Creating a new channel. The Allowed Domains restricts this channel from being communicated by specific domains to ensure anonymous web sites or test pages do not send messages to this channel. Note: For this section, please set the Allowed Domains to *. You will run the sample web page locally on your computer (so no domain involved). The client authentication mechanism is explained in the advanced section of this article. 4. Now set Route to ITMgmtDA digital assistant and toggle the Channel Enabled switch to show enabled. Figure 7: Configure oracle web channel 5. Next, please take a note of the Channel Id, as well as the Oracle Digital Assistant instance URI as shown in the image below. You need the ODA URI & Channel ID for configuring the chat widget. Figure 8: Copy URI from address bar 6. Configure the downloaded sample to point to your Oracle Web channel you just created. a) Locate the web folder extracted from the Web-SDK-Sample.zip file. b) Open settings.js (web/script/settings) and update values for URI and channel ID Note: The URI does not contain the protocol i.e. https:// f) Save settings.js file and close it g) Run the index.html in your browser.
Recommended publications
  • Uila Supported Apps
    Uila Supported Applications and Protocols updated Oct 2020 Application/Protocol Name Full Description 01net.com 01net website, a French high-tech news site. 050 plus is a Japanese embedded smartphone application dedicated to 050 plus audio-conferencing. 0zz0.com 0zz0 is an online solution to store, send and share files 10050.net China Railcom group web portal. This protocol plug-in classifies the http traffic to the host 10086.cn. It also 10086.cn classifies the ssl traffic to the Common Name 10086.cn. 104.com Web site dedicated to job research. 1111.com.tw Website dedicated to job research in Taiwan. 114la.com Chinese web portal operated by YLMF Computer Technology Co. Chinese cloud storing system of the 115 website. It is operated by YLMF 115.com Computer Technology Co. 118114.cn Chinese booking and reservation portal. 11st.co.kr Korean shopping website 11st. It is operated by SK Planet Co. 1337x.org Bittorrent tracker search engine 139mail 139mail is a chinese webmail powered by China Mobile. 15min.lt Lithuanian news portal Chinese web portal 163. It is operated by NetEase, a company which 163.com pioneered the development of Internet in China. 17173.com Website distributing Chinese games. 17u.com Chinese online travel booking website. 20 minutes is a free, daily newspaper available in France, Spain and 20minutes Switzerland. This plugin classifies websites. 24h.com.vn Vietnamese news portal 24ora.com Aruban news portal 24sata.hr Croatian news portal 24SevenOffice 24SevenOffice is a web-based Enterprise resource planning (ERP) systems. 24ur.com Slovenian news portal 2ch.net Japanese adult videos web site 2Shared 2shared is an online space for sharing and storage.
    [Show full text]
  • Openmagazin 5/2009
    openMagazin www.openmagazin.cz openMagazin 5/2009 openOffice.org openSource openMind Vážení čtenáři, Obsah openMagazin je jedinečný PDF e-zin, který vám každý měsíc přinese to nejlepší, co vyšlo na Co se děje ve světě Linuxu a open source...........................2 Krusader 2.0 – Křížová výprava mezi soubory...................27 portálech věnovaných svobodnému softwaru, a to Touch Book: Váš nový linuxový notebook, netbook, PDA Firefox 3.5 – co nabídne nového?.......................................31 zcela zdarma. Můžete se těšit na návody, recenze, nebo přehrávač....................................................................6 Jsou revoluční kroky pro Gnome a KDE nutné?..................34 novinky, tipy a triky, které si můžete v klidu přečíst Audacious: modulární hudební přehrávač...........................9 Moblin: budoucnost netbooků?..........................................36 na svém netbooku nebo jiném přenosném zařízení. Screenlets – to pravé pro vaši obrazovku..........................11 Doufáme, že vás obsah zaujme a také vás prosíme, Nové Ubuntu má vážné problémy s grafikami Intel...........39 abyste PDF soubor šířili, kam to jen jde. Kopírujte Hybrid Share: Sdílení souborů a komunikace s přáteli......14 Zajímavé programy 76.......................................................41 nás, posílejte, sdílejte. A pište nám, jak se vám Jak v Ubuntu vyzkoušet Kubuntu a Xubuntu, zjistit OpenOffice.org ve společnosti Snaggi s.r.o........................42 nový česko-slovenský nejen linuxový e-zin líbí. informace o hardwaru a změnit
    [Show full text]
  • Identifying Web Widgets
    The University of Manchester Research Identifying Web Widgets Link to publication record in Manchester Research Explorer Citation for published version (APA): Chen, A. Q., & Harper, S. (Ed.) (2009). Identifying Web Widgets. University of Manchester, School of Computer Science. Citing this paper Please note that where the full-text provided on Manchester Research Explorer is the Author Accepted Manuscript or Proof version this may differ from the final Published version. If citing, it is advised that you check and use the publisher's definitive version. General rights Copyright and moral rights for the publications made accessible in the Research Explorer are retained by the authors and/or other copyright owners and it is a condition of accessing publications that users recognise and abide by the legal requirements associated with these rights. Takedown policy If you believe that this document breaches copyright please refer to the University of Manchester’s Takedown Procedures [http://man.ac.uk/04Y6Bo] or contact [email protected] providing relevant details, so we can investigate your claim. Download date:26. Sep. 2021 HCW| WIMWAT Technical Report 1, May 2009 School of Computer Science Information Management Group Identifying Web Widgets Technical Reports Alex Q. Chen and Simon Harper Human Centred Web Lab School of Computer Science University of Manchester UK The Web 2.0 concepts encourage presented content to be updated dynamically, without the need for Web pages to be reloaded. How- ever, these concepts require assistive technologies to adapt the way that they interact with Web pages. This report provides an insight into the problem, and introduces a process to identify and mod- ify the problem at the developer's end, so that Web widgets that produces inaccessible micro-content can be modified into an acces- sible form.
    [Show full text]
  • Comparative Studies of 10 Programming Languages Within 10 Diverse Criteria Revision 1.0
    Comparative Studies of 10 Programming Languages within 10 Diverse Criteria Revision 1.0 Rana Naim∗ Mohammad Fahim Nizam† Concordia University Montreal, Concordia University Montreal, Quebec, Canada Quebec, Canada [email protected] [email protected] Sheetal Hanamasagar‡ Jalal Noureddine§ Concordia University Montreal, Concordia University Montreal, Quebec, Canada Quebec, Canada [email protected] [email protected] Marinela Miladinova¶ Concordia University Montreal, Quebec, Canada [email protected] Abstract This is a survey on the programming languages: C++, JavaScript, AspectJ, C#, Haskell, Java, PHP, Scala, Scheme, and BPEL. Our survey work involves a comparative study of these ten programming languages with respect to the following criteria: secure programming practices, web application development, web service composition, OOP-based abstractions, reflection, aspect orientation, functional programming, declarative programming, batch scripting, and UI prototyping. We study these languages in the context of the above mentioned criteria and the level of support they provide for each one of them. Keywords: programming languages, programming paradigms, language features, language design and implementation 1 Introduction Choosing the best language that would satisfy all requirements for the given problem domain can be a difficult task. Some languages are better suited for specific applications than others. In order to select the proper one for the specific problem domain, one has to know what features it provides to support the requirements. Different languages support different paradigms, provide different abstractions, and have different levels of expressive power. Some are better suited to express algorithms and others are targeting the non-technical users. The question is then what is the best tool for a particular problem.
    [Show full text]
  • Automated Security Testing of Web Widget Interactions
    Automated Security Testing of Web Widget Interactions Cor-Paul Bezemer Ali Mesbah Arie van Deursen Delft Univ. of Technology Delft Univ. of Technology Delft Univ. of Technology & Exact Software The Netherlands The Netherlands The Netherlands [email protected] [email protected] [email protected] ABSTRACT directly manipulates the browser's DOM tree. Communica- We present a technique for automatically detecting secu- tion with the server is asynchronous, and typically affects rity vulnerabilities in client-side self-contained components, small parts of the DOM tree only [13]. called web widgets, that can co-exist independently on a Furthermore, Ajax pages can be composed from indepen- single web page. In this paper we focus on two security dent user interface components, often called web widgets. scenarios, namely the case in which (1) a malicious widget These widgets are mini-applications composed of a chunk changes the content (DOM) of another widget, and (2) a of code that can be embedded in an HTML page, and run widget steals data from another widget and sends it to the independently and next to each other, providing dynamic server via an HTTP request. We propose a dynamic analy- content and functionality for a wide variety of tasks such as sis approach for automatically executing the web application showing the latest news headlines, weather predictions, or a list of new email messages. Highly visible examples include and analyzing the runtime changes in the user interface, as 1 2 3 well as the outgoing HTTP calls, to detect inter-widget in- Mashup sites such as iGoogle, Netvibes, and Pageflakes, teraction violations.
    [Show full text]
  • Openerp Web Developers Documentation Release 7.0
    OpenERP Web Developers Documentation Release 7.0 OpenERP s.a. August 29, 2016 Contents 1 Building an OpenERP Web module3 2 Widget 11 3 Asynchronous Operations 15 4 RPC Calls 21 5 QWeb 25 6 Client actions 33 7 Guidelines and Recommendations 35 8 Testing in OpenERP Web 37 9 Search View 49 10 List View 57 11 Notes on the usage of the Form View as a sub-widget 65 12 API changes from OpenERP Web 6.1 to 7.0 67 13 Indices and tables 69 i ii OpenERP Web Developers Documentation, Release 7.0 Contents: Contents 1 OpenERP Web Developers Documentation, Release 7.0 2 Contents CHAPTER 1 Building an OpenERP Web module There is no significant distinction between an OpenERP Web module and an OpenERP module, the web part is mostly additional data and code inside a regular OpenERP module. This allows providing more seamless features by integrating your module deeper into the web client. 1.1 A Basic Module A very basic OpenERP module structure will be our starting point: web_example -- __init__.py -- __openerp__.py # __openerp__.py { 'name':"Web Example", 'description':"Basic example of a (future) web module", 'category':'Hidden', 'depends':['base'], } This is a sufficient minimal declaration of a valid OpenERP module. 1.2 Web Declaration There is no such thing as a “web module” declaration. An OpenERP module is automatically recognized as “web- enabled” if it contains a static directory at its root, so: web_example -- __init__.py -- __openerp__.py -- static is the extent of it. You should also change the dependency to list web: --- web_example/__openerp__.py +++ web_example/__openerp__.py @@ -1,7 +1,7 @@ # __openerp__.py { 3 OpenERP Web Developers Documentation, Release 7.0 'name': "Web Example", 'description': "Basic example of a (future) web module", 'category': 'Hidden', - 'depends': ['base'], + 'depends': ['web'], } Note: This does not matter in normal operation so you may not realize it’s wrong (the web module does the loading of everything else, so it can only be loaded), but when e.g.
    [Show full text]
  • Contextual Spaces with Functional Skins As Opensocial Extension
    Contextual Spaces with Functional Skins as OpenSocial Extension Evgeny Bogdanov, Christophe Salzmann, Denis Gillet Computer, Communication and Information Sciences Ecole Polytechnique Fed´ erale´ de Lausanne Lausanne, Switzerland fevgeny.bogdanov, christophe.salzmann, denis.gilletg@epfl.ch Abstract—Portability, flexibility and extensibility are es- in other platforms. These widgets can be found everywhere sential features of social media platforms. When such Web ranging from simple blog sites such as Blogger to social platforms are able to take user’s context into account, they media platforms (Myspace, Orkut, Friendster, etc.) and provide better user experience and enhance the effectiveness of users’ actions. In this paper, we discuss an extension to business-oriented networking solutions (LinkedIn, Oracle, OpenSocial standard, namely contextual space, that shapes XING, etc.). A social media platform that implements sup- the framework, in which people carry out online activities. port for OpenSocial can ensure that any widget implemented The proposed contextual space extension defines how a set according to the standard will run properly when plugged of OpenSocial widgets are aggregated as a Web environment into this application. In other words, the widget becomes for a given purpose and with a given functional skin as a user interface. Additionally it allows to create contextualized portable and can be run in different social media platforms. widgets. In this paper we discuss the proposed extension in With the advent of a reference open source implementation details and provide the examples of its use based on real life for OpenSocial API (Apache Shindig), any social media scenarios. Finally, we detail an implementation scheme. platform can quickly start hosting OpenSocial widgets.
    [Show full text]
  • Thesis Supervisor
    A Widget Library for Creating Policy-Aware Semantic Web Applications by James Dylan Hollenbach S.B., Massachusetts Institute of Technology (2009) Submitted to the Department of Electrical Engineering and Computer Science in partial fulfillment of the requirements for the degree of Master of Engineering in Computer Science and Engineering at the MASSACHUSETTS INSTITUTE OF TECHNOLOGY June 2010 c Massachusetts Institute of Technology 2010. All rights reserved. Author.............................................................. Department of Electrical Engineering and Computer Science May 21, 2010 Certified by. Tim Berners-Lee 3COM Founders Professor of Engineering Thesis Supervisor Accepted by . Dr. Christopher J. Terman Chairman, Department Committee on Graduate Theses 2 A Widget Library for Creating Policy-Aware Semantic Web Applications by James Dylan Hollenbach Submitted to the Department of Electrical Engineering and Computer Science on May 21, 2010, in partial fulfillment of the requirements for the degree of Master of Engineering in Computer Science and Engineering Abstract In order to truly reap the benefits of the Semantic Web, there must be adequate tools for writing Web applications that aggregate, view, and edit the widely varying data the Semantic Web makes available. As a step toward this goal, I introduce a Javascript widget library for creating Web applications that can both read from and write to the Semantic Web. In addition to providing widgets that perform editing operations, access control rules for user-generated content are supported using FOAF+SSL, a decentralized authentication technique, allowing for users to independently manage the restrictions placed on their data. I demonstrate this functionality with two examples: an aggregator application for exploring information about musicians from multiple data stores, and a universal annotation widget that allows users to make public and private comments about any resource on the Semantic Web.
    [Show full text]
  • Developing Web Widget with HTML, CSS, JSON and AJAX: a Complete Guide to Web Widget Ebooks Free
    Developing Web Widget With HTML, CSS, JSON And AJAX: A Complete Guide To Web Widget Ebooks Free * Revised and updated, 2nd Edition 2/11/2012 * THE HANDS-ON, TUTORIAL-BASED GUIDE TO BUILDING SECURE AND HIGH PERFORMANT WEB WIDGET Get up to speed for developing web widget with design guidelines, standard practices, security measures and techniques for high performance. Developing Web Widget with HTML, CSS, JSON and Ajax is the first guide to creating web widgets, tiny web applications that can be embedded in a web page, blog or social profile. Inside, author of the bestselling book Creating Vista Gadget, Rajesh Lal provide readers with a methodology for building widget using standard web technologies like HTML, CSS, and JavaScript. Developing Web Widget starts with a step-by step tutorial starting from Hello World Widget to an advanced Web Widget which uniquely identifies the user based on the url and not only display user data but also update data. Reader will learn how to use techniques to ensure security and add high performance to the web widget. You will also learn how to create RSS based widgets using Ajax, Proxy Server and Google Ajax Feed API and Widgets based on Facebook APIs. The star Widget developed in the book is now a popular free service. To see it live, visit http://addrating.com All code can be downloaded from the companion website. http://widgets-gadgets.com and https://github.com/rajlal/DevelopingWebWidget Paperback: 372 pages Publisher: CreateSpace Independent Publishing Platform (March 11, 2010) Language: English ISBN-10:
    [Show full text]
  • Integration of Web Technologies Into Wincc OA Based Human-Machine Interfaces at CERN
    20th International Conference on Computing in High Energy and Nuclear Physics (CHEP2013) IOP Publishing Journal of Physics: Conference Series 513 (2014) 012009 doi:10.1088/1742-6596/513/1/012009 FwWebViewPlus: integration of web technologies into WinCC OA based Human-Machine Interfaces at CERN Piotr Golonka1, Wojciech Fabian, Manuel Gonzalez-Berges, Piotr Jasiun, Fernando Varela-Rodriguez CERN: European Organization for Nuclear Research, Geneva, Switzerland E-mail: [email protected] Abstract. The rapid growth in popularity of web applications gives rise to a plethora of reusable graphical components, such as Google Chart Tools and JQuery Sparklines, implemented in JavaScript and run inside a web browser. In the paper we describe the tool that allows for seamless integration of web-based widgets into WinCC Open Architecture, the SCADA system used commonly at CERN to build complex Human-Machine Interfaces. Reuse of widely available widget libraries and pushing the development efforts to a higher abstraction layer based on a scripting language allow for significant reduction in maintenance of the code in multi-platform environments compared to those currently used in C++ visualization plugins. Adequately designed interfaces allow for rapid integration of new web widgets into WinCC OA. At the same time, the mechanisms familiar to HMI developers are preserved, making the use of new widgets "native". Perspectives for further integration between the realms of WinCC OA and Web development are also discussed. 1. Context and problem specification The screens of operator consoles for many of the control systems at CERN display highly specialized applications built on top of the Simatic WinCC Open Architecture commercial SCADA product (formerly known as PVSS), from ETM/Siemens.
    [Show full text]
  • Mashup-Based Linked Data Integration
    Die approbierte Originalversion dieser Dissertation ist in der Hauptbibliothek der Technischen Universität Wien aufgestellt und zugänglich. http://www.ub.tuwien.ac.at The approved original version of this thesis is available at the main library of the Vienna University of Technology. http://www.ub.tuwien.ac.at/eng Mashup-based Linked Data Integration DISSERTATION zur Erlangung des akademischen Grades Doktor der Technischen Wissenschaften eingereicht von Tuan-Dat Trinh Matrikelnummer 1229761 an der Fakultät für Informatik der Technischen Universität Wien Betreuung: O.Univ.Prof. Dipl.-Ing. Dr.techn. A Min Tjoa Mag. Dr. Elmar Kiesling Diese Dissertation haben begutachtet: O.Univ.Prof. Dipl.-Ing. Dr.techn. Prof. Dr. A Min Tjoa Hamideh Afsarmanesh Wien, 3. März 2016 Tuan-Dat Trinh Technische Universität Wien A-1040 Wien Karlsplatz 13 Tel. +43-1-58801-0 www.tuwien.ac.at Mashup-based Linked Data Integration DISSERTATION submitted in partial fulfillment of the requirements for the degree of Doktor der Technischen Wissenschaften by Tuan-Dat Trinh Registration Number 1229761 to the Faculty of Informatics at the Vienna University of Technology Advisor: O.Univ.Prof. Dipl.-Ing. Dr.techn. A Min Tjoa Mag. Dr. Elmar Kiesling The dissertation has been reviewed by: O.Univ.Prof. Dipl.-Ing. Dr.techn. Prof. Dr. A Min Tjoa Hamideh Afsarmanesh Vienna, 3rd March, 2016 Tuan-Dat Trinh Technische Universität Wien A-1040 Wien Karlsplatz 13 Tel. +43-1-58801-0 www.tuwien.ac.at Erklärung zur Verfassung der Arbeit Tuan-Dat Trinh Donaufelderstrasse 54/3120, 1210 Wien Hiermit erkläre ich, dass ich diese Arbeit selbständig verfasst habe, dass ich die verwen- deten Quellen und Hilfsmittel vollständig angegeben habe und dass ich die Stellen der Arbeit – einschließlich Tabellen, Karten und Abbildungen –, die anderen Werken oder dem Internet im Wortlaut oder dem Sinn nach entnommen sind, auf jeden Fall unter Angabe der Quelle als Entlehnung kenntlich gemacht habe.
    [Show full text]
  • Direwolf: a Framework for Widget-Based Distributed User Interfaces
    Journal of Web Engineering, Vol. 13, No. 3&4 (2014) 203{222 c Rinton Press DIREWOLF: A FRAMEWORK FOR WIDGET-BASED DISTRIBUTED USER INTERFACES DEJAN KOVACHEV, DOMINIK RENZEL, PETRU NICOLAESCU, ISTVAN´ KOREN and RALF KLAMMA Advanced Community Information Systems (ACIS) Group, RWTH Aachen University Ahornstr. 55, Aachen, 52056, Germany [email protected] Web applications have overcome traditional desktop applications especially in collab- orative settings. However, the bulk of Web applications still follow the \single user on a single device" computing model. Therefore, we created the DireWolf framework for rich Web applications with distributed user interfaces (DUIs) over a federation of heterogeneous commodity devices supporting modern Web browsers such as laptops, smart phones and tablet computers. The DUIs are based on widget technology coupled with cross-platform inter-widget communication (IWC) and seamless session mobility. Inter-widget communication technologies connect the widgets and enable real-time col- laborative applications as well as runtime migration in our framework. We show that the DireWolf framework facilitates the use case of DUI-enabled semantic video annotation. For a single user it provides more flexible control over different parts of an application by enabling the simultaneous use of smart phones, tablets and computers. We con- ducted a technical evaluation and two user studies to validate the DireWolf approach. The work presented opens the way for creating distributed Web applications which can access device specific functionalities such as multi-touch, text input, etc. in a federated and usable manner. In this paper, we also sketch our ongoing work to integrate the WebRTC API into DireWolf, where we see opportunities for potential adoption of DUI Web applications by the majority of Web users.
    [Show full text]