Enterprise Integration with WSO2 ESB
|
|
|
- Rosalind Stevenson
- 10 years ago
- Views:
Transcription
1 Enterprise Integration with WSO2 ESB Prabath Siriwardena Chapter No. 4 "Business Messaging and Transformations"
2 In this package, you will find: A Biography of the author of the book A preview chapter from the book, Chapter NO.04 "Business Messaging and Transformations" A synopsis of the book s content Information on where to buy this book About the Author Prabath Siriwardena is the Director of Security Architecture at WSO2 Inc., a company that produces a wide variety of open source software from data to screen. Before that he chaired the Management Committee Integration Technologies at WSO2. He completed his degree and then a Masters from the University of Moratuwa, Sri Lanka. He is a member of OASIS Identity Metasystem Interoperability (IMI) TC, OASIS extensible Access Control Markup Language (XACML) TC, and OASIS Security Services (SAML) TC. He is also a member of Apache Axis PMC. He has spoken at numerous international conferences including OSCON, ApacheCon, WSO2Con, EIC, and IDentity Next. He has more than 9 years industry experience and has worked with many Fortune 100 companies.
3 Enterprise Integration with WSO2 ESB The Enterprise Service Bus (ESB) today serves as a key component in most of the enterprise grade deployments. In most cases the ESB removes point-to-point dependencies in your system to build a highly scalable and loosely coupled solution. But that does not necessarily mean ESB means SOA. ESB is a key ingredient to build an SOA infrastructure, but it's not a must. Even with an ESB if not followed industry best practices and patterns you will end up with a mess. Enterprise Integration with WSO2 ESB guides you through common patterns used in the industry to address enterprise integration challenges with WSO2 ESB. What This Book Covers Chapter 1, Getting Started focuses on giving a brief introduction to the Enterprise Service Bus in general, when to use it and when not to. We will also see how to deploy WSO2 ESB in a production environment with optimal settings. Chapter 2, Enterprise Integration Patterns explains how to implement a mostly used set of Enterprise Integration Patterns (EIP) with WSO2 ESB. It covers Content-Based Router, Dynamic Router, Splitter, Scatter & Gather, Publish & Subscribe, Service Chaining, Content Enricher, and Detour with examples. This is only a limited set of EIPs, which provides a base, while WSO2 ESB is capable of implementing almost all the EIPs highlighted in Gregor Hohpe's Enterprise Integration Patterns book. Chapter 3, Integration with Third-party Message Brokers explains how to integrate WSO2 ESB with third-party message brokers. First, we will start with Apache ActiveMQ and show how WSO2 ESB can consume messages from an ActiveMQ Queue. Then, we will see how WSO2 ESB acts as a publisher. Later, we will explain how we can integrate Apache Qpid as a message broker to the WSO2 ESB message store. Chapter 4, Business Messaging and Transformations explains, by example, a selected set of capabilities of WSO2 ESB in business messaging and transformations. FIX, HL7, and SAP are covered in the first three sections. WSO2 ESB ships with a rich set of connectors to a wide variety of business applications. Later in this chapter, we explain how to use Twitter connector and then how to transform REST/JSON messages into SOAP and vice versa. Chapter 5, Task Scheduling explains how to setup scheduled tasks through WSO2 ESB. Appendix A, WSO2 ESB Terminology introduces commonly used terminology related to WSO2 ESB.
4 4 Business Messaging and Transformations This chapter explains by example, a selected set of capabilities of WSO2 ESB in business messaging and transformations. FIX, HL7, and SAP are covered in the fi rst three sections. WSO2 ESB ships with a rich set of connectors to a wide variety of business applications. Later in this chapter we explain how to use the Twitter connector and then how to transform REST/JSON messages into SOAP and vice-versa. Transforming messages from FIX to SOAP (Advanced) WSO2 ESB is capable of doing numerous types of protocol switching and message transformations. Under this section, we will see how to transform a Financial Information exchange (FIX) message generated from a FIX source to a SOAP message over HTTP. Getting ready Let's use the Banzai FIX application that comes with QuickFIX/J. Banzai is a Java swing application that will generate FIX messages, which will be accepted by the BanzaiProxy that we create in WSO2 ESB. BanzaiProxy will transform the FIX message to a SOAP message and send it across to the SimpleStockQuoteService running in simple Axis2Server.
5 Business Messaging and Transformations How to do it Download QuickFIX/J from At the time of this writing, the latest version is which is used in this example. 2. Copy banzai.cfg to quickfixj/etc. You can get banzai.cfg from the SAMPLE-12 folder provided in the code bundle. 3. Get SimpleStockQuoteService.aar from the SAMPLE-12 folder and copy it to wso2esb-4.8.0/samples/axis2server/repository/services/. If there is no services directory create one. 4. Start simple Axis2Server from wso2esb-4.8.0/samples/axis2server. 5. Validate whether the SimpleStockQuoteService is up and running.. localhost:9000/services/simplestockquoteservice?wsdl 6. Open wso2esb-4.8.0/repository/conf/axis2/axis2.xml and uncomment the following two sections: <transportreceiver name="fix" class="org.apache.synapse. transport.fix.fixtransportlistener"/> <transportsender name="fix" class="org.apache.synapse. transport.fix.fixtransportsender"/> 7. Copy fix-synapse.cfg to wso2esb-4.8.0/repository/. You can get fixsynapse.cfg from SAMPLE Start WSO2 ESB and log in with username as admin and password also as admin. The ESB will start on 9. Get synapse.xml from SAMPLE-12, copy the content of it, go to Main Manage Service Bus Source View, and paste it there, overriding the existing and click on Update. 10. The above step will create a proxy service called BanzaiProxy in the ESB, which will route messages to the SimpleStockQuoteService running in simple Axis2Server. 11. Go to Main Manage Services List. You should be able to see BanzaiProxy listed there. 12. Start Banzai QuickFIX/J application from quickfixj/bin. $ sh banzai.sh../etc/banzai.cfg 13. The previous command will start a Java swing application. Enter appropriate values and click on submit. Use IBM, MSFT as the symbol and any integer value as the quantity. Observe the simple Axis2Server console to see the logs being printed. 50
6 Chapter 4 How it works... Let's have a look at the Synapse confi guration. The BanzaiProxy acts as a FIX acceptor and we need to have the following two service parameters. <parameter name="transport.fix.acceptormessagestore">file</ parameter> <parameter name="transport.fix.acceptorconfigurl">file:repository/ fix-synapse.cfg</parameter> transport.fix.acceptormessagestore: This is the type of message store to be used with the acceptor. Allowed values for this parameter are file, JDBC, memory, and sleepycat. If not specified, a memory-based message store will be used by default. Additional parameters required to configure each of the message stores should be specified in the acceptor configuration file. transport.fix.acceptorconfigurl: If a service needs to listen to incoming FIX messages from a remote initiator, then WSO2 ESB needs to create an acceptor. This parameter should contain the URL of the file, which contains the FIX configuration for the acceptor. SocketAcceptPort in repository/fix-synapse.cfg is set to This is the same port number we setup in quickfixj/etc/banzai.cfg as the SocketConnectPort. The WSO2 ESB accepts a FIX payload and converts it into a SOAP message. In the <payloadfactory/> mediator we have XPaths defi ned against the transformed SOAP message ignoring the namespaces. Transforming messages from HL7 to SOAP (Advanced) Health Level Seven International (HL7) is a data standard, widely used in the health care industry. You can fi nd more about HL7 standard from standards/index.cfm. Having a common standard will let different health-care systems speak to each other and integrate quite seamlessly. In this section we'll see how to integrate a system that only speaks SOAP with an HL7 system. 51
7 Business Messaging and Transformations Getting ready Let's say we have a health-care system called Medicare-SFO, which only speaks SOAP. Now Medicare-SFO wants to accept messages from Medicare-NYC, which only knows standard HL7. To facilitate this we will have WSO2 ESB deployed in Medicare-SFO, which will transform HL7 messages coming from Medicare-NYC to SOAP messages that are understood by Medicare-SFO. The HL7 feature does not ship with WSO2 ESB by default, so we need to start installing it fi rst. How to do it Start WSO2 ESB and log in with username as admin and password also as admin. The ESB will start on 2. Go to Configure Feature Available Features Add Repository. 3. Enter Name as wso2packt, and the Location (URL) as org/p2/carbon/releases/turing. Click on Add. In case WSO2 ESB is not yet available, you can use prabath/esb/packtbook/p2-repo/ as the Location (URL). 4. Go to Configure Feature Available Features. Enter HL7 in the Filter by feature name section, uncheck Group features by category and click on Find Features. 5. Select Axis2 Transport HL7 and then click Install and follow the wizard. 6. Shutdown the ESB. 7. Open wso2esb-4.8.0/repository/conf/axis2/axis2.xml and uncomment the following four sections. <messageformatter contenttype="application/edi-hl7" class="org. wso2.carbon.business.messaging.hl7.message.hl7messageformatter"/> <messagebuilder contenttype="application/edi-hl7" class="org.wso2. carbon.business.messaging.hl7.message.hl7messagebuilder"/> <transportreceiver name="hl7" class="org.wso2.carbon.business. messaging.hl7.transport.hl7transportlistener"/> <transportsender name="hl7" class="org.wso2.carbon.business. messaging.hl7.transport.hl7transportsender"/> 8. Start WSO2 ESB and log in with the username as admin and the password also as admin. 9. Get synapse.xml from the SAMPLE-13 folder, copy the content of it and go to Main Manage Service Bus Source View and paste it there, overriding the existing and click on Update. 52
8 10. The previous step will create a proxy service called MedicareSFOHL7Proxy in the ESB, which will transform HL7 messages to SOAP and route them to the MedicareSFOService running in simple Axis2Server. Chapter Get MedicareSFOService.aar from SAMPLE-13 and copy it to wso2esb-4.8.0/ samples/axis2server/repository/services/. If there is no services directory create one. 12. Start simple Axis2Server from wso2esb-4.8.0/samples/axis2server. 13. Validate whether the MedicareSFOService service is up and running ( 14. Now let's test our setup with the HL7 Client $ java -Dhl7_payload=request.hl7 -cp xercesimpl wso2v2. jar:hapi_1.2.0.wso2v1.jar:com.packt.wso2.esb.client.hl7. jar:commons-logging jar com.packt.wso2.esb.client.hl7. HL7Client 15. You can get request.hl7,xercesimpl wso2v2.jar, hapi_1.2.0.wso2v1.jar,com.packt.wso2.esb.client.hl7.jar, and commons-logging jar from SAMPLE-13. How it works... Let's have a look at the Synapse confi guration: In the proxy confi guration we have enabled HL7 transport, so it can accept HL7 messages. <proxy name="medicaresfohl7proxy" transports="hl7" startonload="true" trace="disable"> Add the service parameter transport.hl7.port to the proxy. HL7TransportListener will start on this port. <parameter name="transport.hl7.port">9293</parameter> When you save the proxy confi guration with the previous parameter you will see the following printed on the ESB console. INFO - HL7TransportListener Started HL7 endpoint on port: 9293 If you pick a different port/hostname, then, while running the client you need to specify them in the two system properties hl7_port and hl7_host. $ java -Dhl7_port=9293 -Dhl7_host=localhost -Dhl7_payload=request. hl7 -cp xercesimpl wso2v2.jar:hapi_1.2.0.wso2v1.jar:com. packt.wso2.esb.client.hl7.jar:commons-logging jar com.packt. wso2.esb.client.hl7.hl7client 53
9 Business Messaging and Transformations Since we need to send the message out to the business service in SOAP, we need to add the format attribute to the corresponding endpoint. <endpoint> <address uri=" format="soap12"/> </endpoint> Enterprise Integration with SAP (Advanced) Systems, Applications, and Products (SAP) for data processing is industry leading enterprise software to manage business operations and customer relations. WSO2 ESB provides the integration layer so an existing SAP R/3 system can be integrated with external services/systems. Further more, it will take care of advanced routing, mediation and work fl ows between the interconnected systems. WSO2 ESB can also be used to bring quality of services, such as reliability and security to a SAP based system. Here, we will see how to setup WSO2 ESB in a SAP environment and to install the SAP JCo middleware library, SAP Intermediate Document (IDoc) and Business Application Programming Interface (BAPI) adapters. Getting ready Let's take the 7-Eleven convenient store as an example. Say they have a SAP system running internally integrating a POS system, a CRM system and an ERP system. All these systems talk SAP, so integrating them with each other is not an issue. Let's say 7-Eleven acquired Walgreens and now they want to integrate 7-Eleven's internal system with Walgreens' CRM. But, Walgreens' CRM system is not SAP compliant and we have an issue with smooth integration. Let's see how to solve this with WSO2 ESB. How to do it Download sapidoc3.jar and sapjco3.jar from the SAP support portal and copy those to wso2esb-4.8.0/repository/components/lib. You need to have SAP login credentials to access this site. 2. Download the native SAP JCo library and copy it to the system path. For 32-bit Linux you need to copy libsapjco3.so to JAVA_HOME/jre/lib/i386/server. For 64-bit Linux you need to copy the same library to JAVA_HOME/jre/lib/amd64. In Windows you need to have sapjco3.dll copied to WINDOWS_HOME/system32. 54
10 Chapter 4 3. Copy the following SAP endpoint property fi les to wso2esb-4.8.0/repository/ conf/sap. We have to have two property fi les at the server-end and the client-end to communicate with an external SAP endpoint with IDoc or BAPI. *.dest: This is where we keep SAP endpoint parameters when WSO2 ESB has to act as a client to an external SAP endpoint. *.server: This is where we keep SAP endpoint parameters when WSO2 ESB has to act as a server to an external SAP endpoint. For this example, we accept SAP messages and then send them across to a SOAP endpoint. So, we only need to have the.sever fi le. Let's name it as SEVENLELEVEN.server. 4. Open wso2esb-4.8.0/repository/conf/axis2/axis2.xml and uncomment the following two sections to enable the BAPI/RFC adapter. <transportsender name="bapi" class="org.wso2.carbon.transports. sap.saptransportsender"/> <transportreceiver name="bapi" class="org.wso2.carbon.transports. sap.saptransportlistener"/> 5. Open wso2esb-4.8.0/repository/conf/axis2/axis2.xml and uncomment on the following two sections to enable IDoc adapter. <transportsender name="idoc" class="org.wso2.carbon.transports. sap.saptransportsender"/> <transportreceiver name="idoc" class="org.wso2.carbon.transports. sap.saptransportlistener"/> 6. Get WalgreensService.aar from the SAMPLE-14 folder and copy it to wso2esb-4.8.0/samples/axis2server/repository/services/. If there is no services directory create one. 7. Start simple Axis2Server from wso2esb-4.8.0/samples/axis2server. 8. Validate whether the WalgreensService is up and running, 9. Start WSO2 ESB and log in with username as admin and password also as admin. 10. Get synapse.xml from SAMPLE-14, copy the content of it, and go to Main Manage Service Bus Source View and paste it there, overriding the existing and Update. 11. The above will create a proxy service called WalgreenSAPProxy in ESB, which will transform SAP messages to SOAP and route them to the WalgreensService, which is running in simple Axis2Server. 55
11 Business Messaging and Transformations How it works... Let's have a look at the Synapse confi guration. In the proxy confi guration we have enabled the idoc transport so that it can accept SAP IDoc messages. <proxy name="walgreensapproxy" transports="idoc" startonload="true" trace="disable"> Add the service parameter transport.sap.servername to the proxy. The value of this parameter should be the name of the fi le SEVENLELEVEN.server at wso2esb-4.8.0/repository/conf/sap. <parameter name="transport.sap.servername">sevenleleven</ parameter> Since we need to send the message out to the business service in SOAP, we need to add the format attribute to the corresponding endpoint. <endpoint> <address uri=" format="soap12"/> </endpoint> In the SEVENLELEVEN.server confi guration fi le you need to defi ne the following properties appropriately: Property Gwhost Gwserv Progid Trace Params snc_myname Description Host name of the SAP gateway Service name of the SAP gateway Program ID of the server, which is optional. The default value is the destination. The default is 0. To enable tracing you need to set the value of this to 1. Parameters required by the RFC library SNC name of the RFC server program snc_qop Quality of protection. Permitted values are 1,2,3,8,9 and the default is 3. snc_lib Path and file name of the gssapi library profile_name Profile file name to be used in the startup. Unicode Specifies whether to connect in Unicode mode or not max_startup_delay Maximum server startup delay time in seconds 56
12 Chapter 4 Using Twitter Connector (Intermediate) Twitter Connector is part of the mediation libraries available with WSO2 ESB. It ships many other Cloud Connectors along with the Twitter Connector from release onwards. Salesforce, LinkedIn, Paypal, Jira, AWS are a few to name. Getting ready Twitter Connector can be used to Tweet messages looking at the incoming message. Let's take the same example that we took under the Publish & Subscribe EIP. There the updates are initially published to the FlightStatusService proxy service deployed in WSO2 ESB and within the FlightStatusService proxy it uses the <event/> mediator to publish events to the DeltaFlightStatusAlertService and EmiratesFlightAlertService. We'll modify that example here. In addition to events being published to the backend business services, the ESB will also send a Tweet if a fl ight is delayed. How to do it First we need to create a Twitter App. Go to and click on Create New App. 2. Once the app is created go to and click on the link to the app that you just created. 3. Go to Settings and check Read and Write and click on Update this twitter application's settings at the bottom of the page. Allow some time getting the new changes updated. 4. Go to Details and click on Create my access token. 5. Refresh Details and copy the values of the following attributes. Consumer key Consumer secret Access token Access token secret That's all we need to do on Twitter. 6. Now we need to setup AAFlightStatusAlertService, DeltaFlightStatusAlertService, and EmiratesFlightAlertService. These are the business services that subscribe to the main FlightStatusService with a fi lter by the airline. So the AAFlightStatusAlertService will only get fl ight status updates for American Airlines and DeltaFlightStatusAlertService for Delta fl ights. 57
13 Business Messaging and Transformations 7. Get AAFlightStatusAlertService.aar, DeltaFlightStatusAlertService.aar. and EmiratesFlightAlertService.aar from SAMPLE-15 and copy those to wso2esb-4.8.0/samples/axis2server/repository/services/. If there is no services directory create one. 8. Start simple Axis2Server from wso2esb-4.8.0/samples/axis2server. 9. Validate whether the three business services are up and running by accessing their WSDLs. 10. Start WSO2 ESB and login with the username as admin and the password also as admin. The ESB will start on Go to Main Manage Topics Add. Type flightstatus as the name of the topic and click on Add Topic. 12. Go to Main Manage Topics Browse. You will see the flightstatus topic that we just created is listed there. Click on it and then on Add Subtopic. 13. Create a subtopic with the name aa and click on Add Topic. 14. Repeat steps 12 and 13 to create two more subtopics with the names emirates and delta. 15. Go to Main Manage Topics Browse. You will see the aa subtopic under the flightstatus topic that we just created listed there. Click on it and then on Subscribe. 16. Select Topic and Children for the Subscription Mode. 17. Type as the Event Sink URL. 18. Keep the Expiration Time blank and click on Subscribe to complete the fi rst subscription. 19. Repeat steps 15 to 18 for DeltaFlightStatusAlertService and EmiratesFlightAlertService. Change steps 15 and 17 appropriately to point to the corresponding subtopic and the corresponding service. 20. Go to Main Manage Connectors Add Choose File and select the twitterconnector.zip library from SAMPLE-15 and click on Upload 21. Allow some time to update the system and go to Main Manage Connectors List. There you will see the twitter_1.1 library we just added being listed. Click on the Enable link against it. 22. Get synapse.xml from SAMPLE-15, copy the content of it, and go to Main Manage Service Bus Source View and paste it there, overriding the existing and click on Update. The above will create a proxy service called FlightStatusService in the ESB, which will route messages to the three business services running in simple Axis2Server, as well as Tweet whenever a fl ight is being delayed. 58
14 23. Go to Main Manage Services List. You should be able to see FlightStatusService listed there. 24. Go to Main Manage Service Bus Source View and fi nd the following block in the synapse confi guration and update it with the values from step 5. <twitter_1.1.config> <consumersecret>xxxxx</consumersecret> <accesstokensecret>xxxxx</accesstokensecret> <accesstoken>xxxxx</accesstoken> <consumerkey>xxxxx</consumerkey> </twitter_1.1.config> <twitter_1.1.updatestatus> <status>{get-property('airlinedelayed')}</status> </twitter_1.1.updatestatus> 25. Now let's test our setup with curl. $ curl -H "Content-Type: application/ soap+xml action=updatestatus" FlightStatusService Chapter 4 $ curl -H "Content-Type: application/ soap+xml action=updatestatus" FlightStatusService $ curl -H "Content-Type: application/ soap+xml action=updatestatus" FlightStatusService You can get request-aa.xml, request-ek.xml, and request-dl.xml from SAMPLE-15. How it works... Let's have a look at the Synapse confi guration. The Twitter mediation library we uploaded in step 20 introduces twitter_1.1.updatestatus, which takes care of sending messages to Twitter. The element twitter_1.1.config contains all the confi guration parameters required to connect to and authenticate to Twitter. Twitter uses OAuth 1.0 for authentication and the above parameters are related to OAuth 1.0 authentication. 59
15 Business Messaging and Transformations Before using the Twitter mediation library we need to import it. When you enable the connector in step 21, the following will be added automatically to the synapse confi guration. <import name="twitter_1.1" package="org.wso2.carbon.connectors" status="enabled"/> You need to have org.wso2.carbon.mediation.registry.wso2registry as the registry provider when we work with the Twitter connector. <registry provider="org.wso2.carbon.mediation.registry. WSO2Registry"> <parameter name="cachableduration">15000</parameter> </registry> For the rest of the confi guration you can refer to the Publish & Subscribe recipe, in Chapter 2, Enterprise Integration Patterns. Transforming messages from REST/JSON to SOAP and SOAP to REST/JSON (Simple) Message transformation is one of the key features expected from an ESB in enterprise integration. Here we will see how to transform a REST/JSON message into a SOAP message, and in the return path a SOAP message into a JSON message. Getting ready Let's use the same example we used in explaining the Content-Based Router pattern. There we had the proxy service CreditCardPaymentService, which accepts payment-processing requests over HTTP, and delegates further processing to different other SOAP based services depending on the type of the credit card such as VISA, AMEX, or Master. Here we will introduce a REST API from the WSO2 ESB, which will accept requests in JSON, and then will delegate further processing to backend SOAP based services. How to do it Set up VISAProcessingService and AMEXProcessingService. We need to have these SOAP based business services up and running, so WSO2 ESB can route messages to them. 2. Get VISAProcessingService.aar and AMEXProcessingService.aar from SAMPLE-16 and copy those to wso2esb-4.8.0/samples/axis2server/ repository/services/. If there is no services directory create one. 60
16 3. Start simple Axis2Server from wso2esb-4.8.0/samples/axis2server. Chapter 4 4. Validate whether the two business services are up and running. 5. Start WSO2 ESB and log in with admin/admin. The ESB will start on 6. Get synapse.xml from SAMPLE-16, copy the content of it, and go to Main Manage Service Bus Source View and paste it there, overriding the existing and click on Update. The previous step will create an API called CreditCardPayment in the ESB, which will route messages to two other business services running in simple Axis2Server. 7. Go to Main Manage Service Bus APIs. You should be able to see CreditCardPayment listed there. 8. Now let's test our setup with curl. $ curl -v -H "Content-type: application/ json" $ curl -v -H "Content-type: application/ json" You can get request-visa.json and request-amex.json from SAMPLE-16. How it works... Let's have a look at the Synapse confi guration. The following is the API defi nition. <api name="creditcardpayment" context="/card"> <resource methods="post"> </resource> </api> The above block will get hit for any HTTP POST request coming to the context /card. Inside the <resource/> element you can have any number of mediators. The confi guration inside <resource/> element is very much similar to what is in the Content-Based Router pattern example. 61
17 Business Messaging and Transformations The WSO2 ESB accepts a JSON payload and converts that into a SOAP message. In the <payloadfactory/> mediator we are having XPaths defi ned against the transformed SOAP messages ignoring the namespaces. Since we need to send the message out to the business service in SOAP, we are adding the format attribute to the corresponding endpoint. <endpoint> <address uri= AMEXProcessingService format="soap12"/> </endpoint> In the outsequence we once again use the <payloadfactory/> mediator to build an xml payload in the format we need, using the returned SOAP payload from the business service. To convert this XML payload to JSON we need to add the following property just before the <send/> mediator. <property name="messagetype" value="application/json" scope="axis2"/> 62
18 Where to buy this book You can buy Enterprise Integration with WSO2 ESB from the Packt Publishing website: Free shipping to the US, UK, Europe and selected Asian countries. For more information, please read our shipping policy. Alternatively, you can buy the book from Amazon, BN.com, Computer Manuals and most internet book retailers.
Introduction to Mobile Access Gateway Installation
Introduction to Mobile Access Gateway Installation This document describes the installation process for the Mobile Access Gateway (MAG), which is an enterprise integration component that provides a secure
Advancing Integration Competency and Excellence with the WSO2 Integration Platform
Advancing Integration Competency and Excellence with the WSO2 Integration Platform Dushan Abeyruwan Associate Technical Lead WSO2 Shammi Jayasinghe Associate Technical Lead WSO2 Agenda Fundamentals of
Configuration Guide. BES12 Cloud
Configuration Guide BES12 Cloud Published: 2016-04-08 SWD-20160408113328879 Contents About this guide... 6 Getting started... 7 Configuring BES12 for the first time...7 Administrator permissions you need
Administering Jive for Outlook
Administering Jive for Outlook TOC 2 Contents Administering Jive for Outlook...3 System Requirements...3 Installing the Plugin... 3 Installing the Plugin... 3 Client Installation... 4 Resetting the Binaries...4
Configuration Guide - OneDesk to SalesForce Connector
Configuration Guide - OneDesk to SalesForce Connector Introduction The OneDesk to SalesForce Connector allows users to capture customer feedback and issues in OneDesk without leaving their familiar SalesForce
Mitra Innovation Leverages WSO2's Open Source Middleware to Build BIM Exchange Platform
Mitra Innovation Leverages WSO2's Open Source Middleware to Build BIM Exchange Platform May 2015 Contents 1. Introduction... 3 2. What is BIM... 3 2.1. History of BIM... 3 2.2. Why Implement BIM... 4 2.3.
Introduction to the EIS Guide
Introduction to the EIS Guide The AirWatch Enterprise Integration Service (EIS) provides organizations the ability to securely integrate with back-end enterprise systems from either the AirWatch SaaS environment
Apigee Gateway Specifications
Apigee Gateway Specifications Logging and Auditing Data Selection Request/response messages HTTP headers Simple Object Access Protocol (SOAP) headers Custom fragment selection via XPath Data Handling Encryption
AVG Business Secure Sign On Active Directory Quick Start Guide
AVG Business Secure Sign On Active Directory Quick Start Guide The steps below will allow for download and registration of the AVG Business SSO Cloud Connector to integrate SaaS application access and
So far in the first three chapters of this book we have studied an overview of SAP
4 CHAPTER SAP ERP Integration Overview with Other Systems So far in the first three chapters of this book we have studied an overview of SAP business suite applications and the NetWeaver Application Server
Oracle Service Bus Examples and Tutorials
March 2011 Contents 1 Oracle Service Bus Examples... 2 2 Introduction to the Oracle Service Bus Tutorials... 5 3 Getting Started with the Oracle Service Bus Tutorials... 12 4 Tutorial 1. Routing a Loan
SOA Software: Troubleshooting Guide for Agents
SOA Software: Troubleshooting Guide for Agents SOA Software Troubleshooting Guide for Agents 1.1 October, 2013 Copyright Copyright 2013 SOA Software, Inc. All rights reserved. Trademarks SOA Software,
tibbr Now, the Information Finds You.
tibbr Now, the Information Finds You. - tibbr Integration 1 tibbr Integration: Get More from Your Existing Enterprise Systems and Improve Business Process tibbr empowers IT to integrate the enterprise
Copyright 2012, Oracle and/or its affiliates. All rights reserved.
1 OTM and SOA Mark Hagan Principal Software Engineer Oracle Product Development Content What is SOA? What is Web Services Security? Web Services Security in OTM Futures 3 PARADIGM 4 Content What is SOA?
Enterprise Service Bus
We tested: Talend ESB 5.2.1 Enterprise Service Bus Dr. Götz Güttich Talend Enterprise Service Bus 5.2.1 is an open source, modular solution that allows enterprises to integrate existing or new applications
Introduction to WebSphere Process Server and WebSphere Enterprise Service Bus
Introduction to WebSphere Process Server and WebSphere Enterprise Service Bus Course materials may not be reproduced in whole or in part without the prior written permission of IBM. 4.0.3 Unit objectives
PingFederate. Salesforce Connector. Quick Connection Guide. Version 4.1
PingFederate Salesforce Connector Version 4.1 Quick Connection Guide 2011 Ping Identity Corporation. All rights reserved. PingFederate Salesforce Quick Connection Guide Version 4.1 June, 2011 Ping Identity
Copyright Pivotal Software Inc, 2013-2015 1 of 10
Table of Contents Table of Contents Getting Started with Pivotal Single Sign-On Adding Users to a Single Sign-On Service Plan Administering Pivotal Single Sign-On Choosing an Application Type 1 2 5 7 10
Comodo Mobile Device Manager Software Version 1.0
Comodo Mobile Device Manager Software Version 1.0 Installation Guide Guide Version 1.0.041114 Comodo Security Solutions 1255 Broad Street STE 100 Clifton, NJ 07013 Table of Contents 1.CMDM Setup... 3 1.1.System
IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016. Integration Guide IBM
IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016 Integration Guide IBM Note Before using this information and the product it supports, read the information
How To Set Up A Xerox Econcierge Powered By Xerx Account
Xerox econcierge Account Setup Guide Xerox econcierge Account Setup Guide The free Xerox econcierge service provides the quickest, easiest way for your customers to order printer supplies for all their
WELCOME TO Open Source Enterprise Architecture
WELCOME TO Open Source Enterprise Architecture WELCOME TO An overview of Open Source Enterprise Architecture In the integration domain Who we are Fredrik Hilmersson Petter Nordlander Why Open Source Integration
INTEGRATION GUIDE. DIGIPASS Authentication for Salesforce using IDENTIKEY Federation Server
INTEGRATION GUIDE DIGIPASS Authentication for Salesforce using IDENTIKEY Federation Server Disclaimer Disclaimer of Warranties and Limitation of Liabilities All information contained in this document is
This document summarizes the steps of deploying ActiveVOS on the IBM WebSphere Platform.
Technical Note Overview This document summarizes the steps of deploying ActiveVOS on the IBM WebSphere Platform. Legal Notice The information in this document is preliminary and is subject to change without
Table of Contents. OpenDrive Drive 2. Installation 4 Standard Installation Unattended Installation
User Guide for OpenDrive Application v1.6.0.4 for MS Windows Platform 20150430 April 2015 Table of Contents Installation 4 Standard Installation Unattended Installation Installation (cont.) 5 Unattended
Integrating a Hitachi IP5000 Wireless IP Phone
November, 2007 Avaya Quick Edition Integrating a Hitachi IP5000 Wireless IP Phone This application note explains how to configure the Hitachi IP5000 wireless IP telephone to connect with Avaya Quick Edition
Developing Applications with Salesforce Chatter
Developing Applications with Salesforce Chatter Rakesh Gupta Sagar Pareek Chapter No. 5 "Understanding Chatter REST API" In this package, you will find: A Biography of the authors of the book A preview
Talend ESB. Getting Started Guide 5.5.1
Talend ESB Getting Started Guide 5.5.1 Talend ESB Publication date: June 24, 2014 Copyright 2011-2014 Talend Inc. Copyleft This documentation is provided under the terms of the Creative Commons Public
Camilyo APS package by Techno Mango Service Provide Deployment Guide Version 1.0
Camilyo APS package by Techno Mango Service Provide Deployment Guide Version 1.0 Contents Introduction... 3 Endpoint deployment... 3 Endpoint minimal hardware requirements:... 3 Endpoint software requirements:...
Building Dynamics CRM 2015 Dashboards with Power BI
Fr Building Dynamics CRM 2015 Dashboards with Power BI is a hands-on guide to building and configuring powerful Dynamics CRM dashboards. This book will provide you with the skills you need to learn how
New Features in Neuron ESB 2.6
New Features in Neuron ESB 2.6 This release significantly extends the Neuron ESB platform by introducing new capabilities that will allow businesses to more easily scale, develop, connect and operationally
Enterprise Access Control Patterns For REST and Web APIs
Enterprise Access Control Patterns For REST and Web APIs Francois Lascelles Layer 7 Technologies Session ID: STAR-402 Session Classification: intermediate Today s enterprise API drivers IAAS/PAAS distributed
Citrix XenMobile Mobile Device Management
Citrix XenMobile Mobile Device Management Akash Phoenix Chapter No. 4 "XenMobile Device Manager Deployment" In this package, you will find: A Biography of the author of the book A preview chapter from
Configuration Worksheets for Oracle WebCenter Ensemble 10.3
Configuration Worksheets for Oracle WebCenter Ensemble 10.3 This document contains worksheets for installing and configuring Oracle WebCenter Ensemble 10.3. Print this document and use it to gather the
System Administration Training Guide. S100 Installation and Site Management
System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5
Building the European Biodiversity. Observation Network (EU BON)
Enterprise Application Integration Building the European Biodiversity through Service-Oriented Architecture Observation Network (EU BON) EU BON Project Building the European Biodiversity Network Presentation
FioranoMQ 9. High Availability Guide
FioranoMQ 9 High Availability Guide Copyright (c) 1999-2008, Fiorano Software Technologies Pvt. Ltd., Copyright (c) 2008-2009, Fiorano Software Pty. Ltd. All rights reserved. This software is the confidential
Egnyte Single Sign-On (SSO) Installation for OneLogin
Egnyte Single Sign-On (SSO) Installation for OneLogin To set up Egnyte so employees can log in using SSO, follow the steps below to configure OneLogin and Egnyte to work with each other. 1. Set up OneLogin
Connection Broker Managing User Connections to Workstations, Blades, VDI, and More. Quick Start with Microsoft Hyper-V
Connection Broker Managing User Connections to Workstations, Blades, VDI, and More Quick Start with Microsoft Hyper-V Version 8.1 October 21, 2015 Contacting Leostream Leostream Corporation http://www.leostream.com
Windows Server 2012 Hyper-V Cookbook
Windows Server 2012 Hyper-V Cookbook Leandro Carvalho Chapter No. 2 "Migrating and Upgrading Physical and Virtual Servers" In this package, you will find: A Biography of the author of the book A preview
SOA Software API Gateway Appliance 7.1.x Administration Guide
SOA Software API Gateway Appliance 7.1.x Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names,
MIT Tech Talk, May 2013 Justin Richer, The MITRE Corporation
MIT Tech Talk, May 2013 Justin Richer, The MITRE Corporation Approved for Public Release Distribution Unlimited 13-1871 2013 The MITRE Corporation All Rights Reserved } OpenID Connect and OAuth2 protocol
Installation and Configuration Guide. Sybase Mobile Sales for SAP CRM 1.1
Installation and Configuration Guide Sybase Mobile Sales for SAP CRM 1.1 DOCUMENT ID: DC01180-01-0110-01 LAST REVISED: August 2010 Copyright 2010 by Sybase, Inc. All rights reserved. This publication pertains
AquaLogic Service Bus
AquaLogic Bus Wolfgang Weigend Principal Systems Engineer BEA Systems 1 What to consider when looking at ESB? Number of planned business access points Reuse across organization Reduced cost of ownership
Social Application Guide
Social Application Guide Version 2.2.0 Mar 2015 This document is intent to use for our following Magento Extensions Or any other cases it might help. Copyright 2015 LitExtension.com. All Rights Reserved
Introduction to Directory Services
Introduction to Directory Services Overview This document explains how AirWatch integrates with your organization's existing directory service such as Active Directory, Lotus Domino and Novell e-directory
Centrify Cloud Connector Deployment Guide
C E N T R I F Y D E P L O Y M E N T G U I D E Centrify Cloud Connector Deployment Guide Abstract Centrify provides mobile device management and single sign-on services that you can trust and count on as
Developers Integration Lab (DIL) System Architecture, Version 1.0
Developers Integration Lab (DIL) System Architecture, Version 1.0 11/13/2012 Document Change History Version Date Items Changed Since Previous Version Changed By 0.1 10/01/2011 Outline Laura Edens 0.2
CloudCall for Salesforce- Quick Start Guide. CloudCall for Act! CRM Quick Start Guide
CloudCall for Salesforce- Quick Start Guide CloudCall for Act! CRM Quick Start Guide 26/01/2015 Plugin Overview About SYNETY SYNETY is a leading cloud- based software and communications company that develops
WebSphere Business Monitor V7.0: Clustering Single cluster deployment environment pattern
Copyright IBM Corporation 2010 All rights reserved WebSphere Business Monitor V7.0: Clustering Single cluster deployment environment pattern What this exercise is about... 2 Exercise requirements... 2
Setting Up Resources in VMware Identity Manager
Setting Up Resources in VMware Identity Manager VMware Identity Manager 2.4 This document supports the version of each product listed and supports all subsequent versions until the document is replaced
Okta/Dropbox Active Directory Integration Guide
Okta/Dropbox Active Directory Integration Guide Okta Inc. 301 Brannan Street, 3rd Floor San Francisco CA, 94107 [email protected] 1-888- 722-7871 1 Table of Contents 1 Okta Directory Integration Edition for
BMC Remedy Integration Guide 7.6.04
BMC Remedy Integration Guide 7.6.04 2015 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their
Axway API Gateway. Version 7.4.1
O A U T H U S E R G U I D E Axway API Gateway Version 7.4.1 3 February 2016 Copyright 2016 Axway All rights reserved. This documentation describes the following Axway software: Axway API Gateway 7.4.1
IBM Security QRadar Version 7.2.5. Vulnerability Assessment Configuration Guide IBM
IBM Security QRadar Version 7.2.5 Vulnerability Assessment Configuration Guide IBM Note Before using this information and the product that it supports, read the information in Notices on page 93. Product
SCA-based Enterprise Service Bus WebSphere ESB
IBM Software Group SCA-based Enterprise Service Bus WebSphere ESB Soudabeh Javadi, WebSphere Software IBM Canada Ltd [email protected] 2007 IBM Corporation Agenda IBM Software Group WebSphere software
Configuring the Samsung SDS CellWe EMM cloud connector
Appendix 3 Configuring the Samsung SDS CellWe EMM cloud connector This appendix explains how to use the Samsung SDS CellWe EMM cloud connector configuration program to configure and monitor your cloud
WSO2 Message Broker. Scalable persistent Messaging System
WSO2 Message Broker Scalable persistent Messaging System Outline Messaging Scalable Messaging Distributed Message Brokers WSO2 MB Architecture o Distributed Pub/sub architecture o Distributed Queues architecture
Administering Jive Mobile Apps
Administering Jive Mobile Apps Contents 2 Contents Administering Jive Mobile Apps...3 Configuring Jive for Android and ios... 3 Native Apps and Push Notifications...4 Custom App Wrapping for ios... 5 Native
Google Cloud Print Administrator Configuration Guide
Google Cloud Print Administrator Configuration Guide 1 December, 2014 Advanced Customer Technologies Ricoh AMERICAS Holdings, Inc. Table of Contents Scope and Purpose... 4 Overview... 4 System Requirements...
Fax User Guide 07/31/2014 USER GUIDE
Fax User Guide 07/31/2014 USER GUIDE Contents: Access Fusion Fax Service 3 Search Tab 3 View Tab 5 To E-mail From View Page 5 Send Tab 7 Recipient Info Section 7 Attachments Section 7 Preview Fax Section
IBM WebSphere Application Server Communications Enabled Applications Setup guide
Copyright IBM Corporation 2009, 2011 All rights reserved IBM WebSphere Application Server Communications Enabled Applications Setup guide What this exercise is about... 1 Lab requirements... 2 What you
Deploying Intellicus Portal on IBM WebSphere
Deploying Intellicus Portal on IBM WebSphere Intellicus Web-based Reporting Suite Version 4.5 Enterprise Professional Smart Developer Smart Viewer Intellicus Technologies [email protected] www.intellicus.com
Web Sites, Virtual Machines, Service Management Portal and Service Management API Beta Installation Guide
Web Sites, Virtual Machines, Service Management Portal and Service Management API Beta Installation Guide Contents Introduction... 2 Environment Topology... 2 Virtual Machines / System Requirements...
Novell Access Manager
J2EE Agent Guide AUTHORIZED DOCUMENTATION Novell Access Manager 3.1 SP3 February 02, 2011 www.novell.com Novell Access Manager 3.1 SP3 J2EE Agent Guide Legal Notices Novell, Inc., makes no representations
SAML 2.0 SSO Deployment with Okta
SAML 2.0 SSO Deployment with Okta Simplify Network Authentication by Using Thunder ADC as an Authentication Proxy DEPLOYMENT GUIDE Table of Contents Overview...3 The A10 Networks SAML 2.0 SSO Deployment
Installation and Running of RADR
Installation and Running of RADR Requirements System requirements: Intel based Macintosh with OS X 10.5 or Higher. 20MB of free diskspace, 1GB ram and Internet connection. Software requirements: Native
Installing and Configuring vcloud Connector
Installing and Configuring vcloud Connector vcloud Connector 2.7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new
CafePilot has 3 components: the Client, Server and Service Request Monitor (or SRM for short).
Table of Contents Introduction...2 Downloads... 2 Zip Setups... 2 Configuration... 3 Server...3 Client... 5 Service Request Monitor...6 Licensing...7 Frequently Asked Questions... 10 Introduction CafePilot
Quick Start Guide. Cerberus FTP is distributed in Canada through C&C Software. Visit us today at www.ccsoftware.ca!
Quick Start Guide Cerberus FTP is distributed in Canada through C&C Software. Visit us today at www.ccsoftware.ca! How to Setup a File Server with Cerberus FTP Server FTP and SSH SFTP are application protocols
Microsoft Dynamics CRM 2011 New Features
Microsoft Dynamics CRM 2011 New Features Jim Wang Darren Liu Chapter No. 1 "Setting Up the Development Workspace" In this package, you will find: A Biography of the authors of the book A preview chapter
AVG Business SSO Partner Getting Started Guide
AVG Business SSO Partner Getting Started Guide Table of Contents Overview... 2 Getting Started... 3 Web and OS requirements... 3 Supported web and device browsers... 3 Initial Login... 4 Navigation in
Flexible Identity Federation
Flexible Identity Federation Quick start guide version 1.0.1 Publication history Date Description Revision 2015.09.23 initial release 1.0.0 2015.12.11 minor updates 1.0.1 Copyright Orange Business Services
Spectrum Technology Platform. Version 9.0. Spectrum Spatial Administration Guide
Spectrum Technology Platform Version 9.0 Spectrum Spatial Administration Guide Contents Chapter 1: Introduction...7 Welcome and Overview...8 Chapter 2: Configuring Your System...9 Changing the Default
Use Enterprise SSO as the Credential Server for Protected Sites
Webthority HOW TO Use Enterprise SSO as the Credential Server for Protected Sites This document describes how to integrate Webthority with Enterprise SSO version 8.0.2 or 8.0.3. Webthority can be configured
GE Measurement & Control. Remote Comms System. Installation and User Reference Guide
GE Measurement & Control Remote Comms System Installation and User Reference Guide Contents BENEFITS OF REMOTE COMMS SYSTEM... 1 HOW THE REMOTE COMMS SYSTEM WORKS... 3 COMPONENTS OF REMOTE COMMS SYSTEM...
Universal Event Monitor for SOA 5.2.0 Reference Guide
Universal Event Monitor for SOA 5.2.0 Reference Guide 2015 by Stonebranch, Inc. All Rights Reserved. 1. Universal Event Monitor for SOA 5.2.0 Reference Guide.............................................................
To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008.
Znode Multifront - Installation Guide Version 6.2 1 System Requirements To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server
Creating a DUO MFA Service in AWS
Amazon AWS is a cloud based development environment with a goal to provide many options to companies wishing to leverage the power and convenience of cloud computing within their organisation. In 2013
WhatsUp Gold v16.3 Installation and Configuration Guide
WhatsUp Gold v16.3 Installation and Configuration Guide Contents Installing and Configuring WhatsUp Gold using WhatsUp Setup Installation Overview... 1 Overview... 1 Security considerations... 2 Standard
SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL
SOS Online Backup USER MANUAL HOW TO INSTALL THE SOFTWARE 1. Download the software from the website: http://www.sosonlinebackup.com/download_the_software.htm 2. Click Run to install when promoted, or alternatively,
Introduction to the Mobile Access Gateway
Introduction to the Mobile Access Gateway This document provides an overview of the AirWatch Mobile Access Gateway (MAG) architecture and security and explains how to enable MAG functionality in the AirWatch
Integrating LivePerson with Salesforce
Integrating LivePerson with Salesforce V 9.2 March 2, 2010 Implementation Guide Description Who should use this guide? Duration This guide describes the process of integrating LivePerson and Salesforce
Introduction to the Secure Email Gateway (SEG)
Introduction to the Secure Email Gateway (SEG) Overview The Secure Email Gateway (SEG) Proxy server is a separate server installed in-line with your existing email server to proxy all email traffic going
Net 2. NetApp Electronic Library. User Guide for Net 2 Client Version 6.0a
Net 2 NetApp Electronic Library User Guide for Net 2 Client Version 6.0a Table of Contents 1 INTRODUCTION AND KEY FEATURES... 3 SOME OF THE KEY FEATURES INCLUDE:... 3 INSTALLATION PREREQUISITES:... 3 2
How to Setup and Connect to an FTP Server Using FileZilla. Part I: Setting up the server
How to Setup and Connect to an FTP Server Using FileZilla The ability to store data on a server and being able to access the data from anywhere in the world has allowed us to get rid of external flash
Technical Support Set-up Procedure
Technical Support Set-up Procedure How to Setup the Amazon S3 Application on the DSN-320 Amazon S3 (Simple Storage Service) is an online storage web service offered by AWS (Amazon Web Services), and it
INTEGRATION GUIDE. DIGIPASS Authentication for Google Apps using IDENTIKEY Federation Server
INTEGRATION GUIDE DIGIPASS Authentication for Google Apps using IDENTIKEY Federation Server Disclaimer Disclaimer of Warranties and Limitation of Liabilities All information contained in this document
File Share Navigator Online 1
File Share Navigator Online 1 User Guide Service Pack 3 Issued November 2015 Table of Contents What s New in this Guide... 4 About File Share Navigator Online... 5 Components of File Share Navigator Online...
CA Nimsoft Service Desk
CA Nimsoft Service Desk Configure Outbound Web Services 7.13.7 Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject
Integration in Action using JBoss Middleware. Ashokraj Natarajan - Cognizant
Integration in Action using JBoss Middleware Ashokraj Natarajan - Cognizant Agenda Open Source Enterprise Needs Top Reasons Integration Trends HealthCare Trends Use Cases Demo Cognizant Frameworks Cognizant
Authentication in Apache Lenya
Authentication in Apache Lenya Using LDAP The user authentication mechanism in Apache Lenya is carried out by specifi c components using certain policy fi les. This process is, in itself, complex to understand
WebSphere Integration Solutions. IBM Day Minsk 2014. Anton Litvinov WebSphere Connectivity Professional Central Eastern Europe
WebSphere Integration Solutions IBM Day Minsk 2014 Ann Litvinov WebSphere Connectivity Professional Central Eastern Europe 1 Agenda 1 Understand vision for ESB capabilities 2 Understand DataPower Basics
Cloud Services MDM. ios User Guide
Cloud Services MDM ios User Guide 10/24/2014 CONTENTS Overview... 3 Supported Devices... 3 System Capabilities... 3 Enrollment and Activation... 4 Download the Agent... 4 Enroll Your Device Using the Agent...
Orchestrating Document and Media Management using CMIS
Orchestrating Document and Media Management using CMIS Technical Note - Integrating ActiveVOS with Alfresco CMIS Services AN ACTIVE ENDPOINTS TECHNICAL NOTE 2009 Active Endpoints Inc. ActiveVOS is a trademark
ADFS Integration Guidelines
ADFS Integration Guidelines Version 1.6 updated March 13 th 2014 Table of contents About This Guide 3 Requirements 3 Part 1 Configure Marcombox in the ADFS Environment 4 Part 2 Add Relying Party in ADFS
INUVIKA OPEN VIRTUAL DESKTOP FOUNDATION SERVER
INUVIKA OPEN VIRTUAL DESKTOP FOUNDATION SERVER OVERVIEW OF OPEN VIRTUAL DESKTOP Mathieu SCHIRES Version: 1.0.2 Published April 9, 2015 http://www.inuvika.com Contents 1 Introduction 2 2 Terminology and
