Operational Decision Manager Worklight Integration

Size: px
Start display at page:

Download "Operational Decision Manager Worklight Integration"

Transcription

1 Copyright IBM Corporation 2013 All rights reserved IBM Operational Decision Manager V8.5 Lab exercise Operational Decision Manager Worklight Integration Integrate dynamic business rules into a Worklight mobile application What this exercise is about... 1 Lab requirements... 1 What you should be able to do... 2 Introduction... 2 Part 1: Deploy the rule project... 5 Part 2: Deploy the mobile application Part 3: Run the Assistance Application in the Worklight console Part 4: Change rules (Optional) What you did in this exercise What this exercise is about This lab explains how you can integrate decision services managed in IBM Operational Decision Manager (ODM) into a Worklight mobile application. This lab is provided AS-IS, with no formal IBM support. Lab requirements List of system and software required to complete the lab. IBM Operational Decision Manager V8.5 with sample server profile IBM Worklight Studio V5.0.5 Google Chrome Throughout the lab, references to these products drop the brand prefix and the version, calling them Operational Decision Manager or in short ODM, Worklight, and Chrome. IBM Operational Decision Manager Worklight Integration Lab exercise Page 1 of 38

2 What you should be able to do At the end of this lab you should be able to know: How to structure a Worklight Mobile application and use Worklight adapters to connect the mobile application to the REST Operational Decision Manager decision service How ODM rules can be used to provide dynamic decisions in Worklight mobile solutions How an ODM rule project can be structured to take advantage of the mobile environment How to deploy and invoke decision services using REST protocols allowing easy invocation from mobile and client based applications Introduction Mobile Auto Insurance Assistance Scenario The scenario used in the lab is based on an auto insurance company that wants to provide assistance to their customers in the event of a breakdown or accident. This is provided as an Assistance Application running on the Android mobile device. The Mobile development and execution environment is provided by Worklight. In the lab you will use the Worklight Mobile Browser Simulator to explore the impact of this information on the Assistance Application as shown below. This allows the location of the mobile and the battery level to be configured through the simulator. IBM Operational Decision Manager Worklight Integration Lab exercise Page 2 of 38

3 The assistance provided in this application is determined by rules running on Operational Decision Manager. To determine the advice provided to the mobile user, the rules are based on this information: Customer information: Customer name, age, and code name for policy coverage (bronze, silver, or gold) Customer vehicle brand, model and year Customer home location specified in latitude and longitude Mobile device information: Geolocation allowing the rules to provide advice based on where the incident has occurred Battery level allowing the rules to send asynchronous alerts or text messages with advice rather than relying on permanent network connectivity Note: the device specific information is accessed through a Cordova API (previously called Phonegap) which allows a consistent approach to be applied across devices, for example: Android versus iphone versus browser. This lab contains four main parts to help you understand how an ODM Worklight integration solution can be realized as shown in the diagram below. Deploy the rule project. This part shows you the structure of the sample rule project called myinsurance-rules. You will learn the detail of the rules that provide assistance to a mobile user in the event of an accident using both the mobile user characteristics and information provided by the mobile device. With the sample command, you then deploy the rule project to the decision server. IBM Operational Decision Manager Worklight Integration Lab exercise Page 3 of 38

4 Deploy the mobile application. In this part, you first learn the structure of the sample Worklight project: myinsurance-wl. Then you deploy the adapter to the Worklight server and the application to the Worklight Browser Simulator. Run the Assistance Application in the Worklight environment. You run the application and observe how the rules determine the advice based on the different user characteristics and location of the mobile device. (Optional) Update the redeploy rules. You can experiment with changing and redeploying rules and observe the changed response of the Assistance Application. IBM Operational Decision Manager Worklight Integration Lab exercise Page 4 of 38

5 Part 1: Deploy the rule project 1. Start the Operational Decision Manager sample server. a. Select Start All Programs IBM Operational Decision Manager V8.5 Sample server Start server. b. Wait a few moments until the server starts. When it is ready, you should see this window with a successful message: Press any key to close the command window. 2. Launch the Sample Console and import the sample project. a. Select Start All Programs IBM Operational Decision Manager V8.5 Sample server Samples Console(en_US). Enter the workspace location. For example: C:\IBM\workspaces\WorklightSample. IBM Operational Decision Manager Worklight Integration Lab exercise Page 5 of 38

6 b. Once the Sample Console is opened, on Samples and Tutorials page, navigate to Rule Execution Server > Samples > Worklight ODM adapter. c. Click Import Projects. In the Rule perspective, several projects which are used in the myinsurance-rules decision are imported. myinsurance-rules: a sample rule project containing the vocabulary, interfaces, and rules used to determine the Assistance reports. myinsurance-xom: a Java project containing the definition of the information exchanged with the application. While most of the classes are Java beans representing the user, vehicle and cover, there are also some utility functions that can be invoked by the rules. cordova-bom: contains an example of how the Cordova APIs can be exposed to the rules in a business friendly manner. cordova-xom: contains Java beans representing the objects available from the mobile device such as geolocation and battery status. myinsurance-ruleapp: provides the definition of the deployable ruleapp that contains the myinsurance-rules project. IBM Operational Decision Manager Worklight Integration Lab exercise Page 6 of 38

7 3. Understand Cordova projects The cordova-bom project provides the Business Object model and verbalization that allows the mobile device characteristics specified in the Cordova API to be referenced in the rules. You can find detailed information about those BOMs under cordova-bom > bom > cordova > cordova. The cordova-xom project defines the Java beans used to define the structure of this information used at runtime. To explore this vocabulary, expand the Rule Explorer view and double click the classes of interest to see how they are represented in the rules. 4. Understand myinsurance-rules rule project The myinsurance-xom project contains Java beans that represent the mobile user characteristics and include helper functions for calculating the distance to home. IBM Operational Decision Manager Worklight Integration Lab exercise Page 7 of 38

8 a. Double click myinsurance-xom > src > myinsurance > Customer.java to see the implementation of the getdistancetohome() method. The myinsurance-rules project is the main rule project used by the Assistance Application to make the assistance decisions. It has dependencies on the cordova-bom project for the mobile device characteristics allowing the vocabulary to be shared across the projects. The decision is invoked as a decision service with parameters that define the information required to make the decision and returns parameters containing the report information provided by the decision. These parameters are shown as JavaScript variables in the Assistance Application. b. Select the myinsurance-rules project, right click and select Properties. c. In the properties panel, select Ruleset Parameters. IBM Operational Decision Manager Worklight Integration Lab exercise Page 8 of 38

9 When the decision is invoked with the input parameters (Customer, Position, Battery), the rule engine applies the rules in a sequence. It is defined by the my insurance rule flow before returning the Report parameter. d. Double click myinsurance-rules > rules > my insurance to open the rule flow editor. IBM Operational Decision Manager Worklight Integration Lab exercise Page 9 of 38

10 The flow runs through these steps: Init report initializes the fields in the Report parameter with default values. Check position determines if positional information is available from the mobile device. If not, only the general rules about position task is applied which runs the rules in the package position.general. country and timezone init calculates the country and time zone based on the position.contextual.country decision table. position contextual applies these rules: position.contextual.country checking, position.contextual.night exception and position.contextual.position policy. general rules applies the decision table general conditions. battery applies the rules in the battery package. vehicle applies the rules in the vehicle package. You can double click any of the rules or decision tables in the Rule Explorer to see the appropriate rule. For example, to open position.contextual.position policy: e. Double click myinsurance-rules > rules > position > contextual > position policy as shown below. 5. Deploy the rule project The steps provided below use pre-configured sample ant scripts to deploy the rule project. You can also deploy the rule project directly from Rule perspective in Rule Designer. See Part 4 Deploy modified ruleset section for more details. IBM Operational Decision Manager Worklight Integration Lab exercise Page 10 of 38

11 a. Switch back to Samples Console perspective and choose Samples Commands tab. b. Navigate to Samples Commands > Rule Execution Server > Worklight ODM adapter. c. Double click run. At the end of Sample Server Console log, you should see the deployment successful message. You have deployed myinsurance-ruleapp to the Rule Execution Server. IBM Operational Decision Manager Worklight Integration Lab exercise Page 11 of 38

12 Part 2: Deploy the mobile application 1. Create a Worklight project named myinsurance-wl. a. Start the Worklight Studio and switch to the Design perspective. b. From the menu, choose File > New > Worklight Project. c. Type myinsurance-wl in the name field and select Hybrid Application as the project template. Click Next. d. Type MyInsuranceWL in the application name field, and select Add Dojo Toolkit. Click Finish. IBM Operational Decision Manager Worklight Integration Lab exercise Page 12 of 38

13 2. Copy the project implementation into workspace In the previous step, you have created myinsurance-wl Worklight project. The Operational Decision Manager Worklight sample provides the full implementation. You can copy the sample implementation into the workspace. a. Right click myinsurance-wl project, click Close Project. b. On your local system, navigate to <ODM>/executionserver/samples/worklight/myinsurance-wl-files. c. Copy all the content under myinsurance-wl-files folder and paste to your workspace myinsurance-wl folder. Overwrite the existing content. d. In the Eclipse, right click myinsurance-wl project, choose Open Project. Press F5 to refresh the project content. 3. Establish mobile environments a. From Project Explorer view, expand myinsurance-wl > apps > MyInsuranceWL folder and double click the application-descriptor.xml file. The application descriptor provides the ability to define the common structure for the application and the mobile environments to which it can be deployed. This lab uses the Android environment for the MyInsuranceWL hybrid application. Alternatively, you can add Android by creating a new Worklight Environment from Eclipse menu. b. In Overview section, click Add button. c. Select Android phones and tablets environment, and click OK. IBM Operational Decision Manager Worklight Integration Lab exercise Page 13 of 38

14 d. Wait for the workspace to complete the building of the Android environment. In the Worklight Console, you get an error indicating that the Android ADT is missing. Failed importing native project for 'Android phones and tablets'. Missing ADT plugin or Android SDK. For more details see Application 'MyInsuranceWL' with environment 'android' build finished. This is expected as the Android development environment has not been installed. It is not needed for this lab which works in the Mobile Browser Simulator. But if you were developing on Android devices, it needs to be installed. You have generated an Android folder under apps. The Android folder contains custom Androidspecific materials that you can use to build an Android application. e. Expand MyInsuranceWL > Common and double click MyInsuranceWL.html to see the structure and customizations that have been added for the Assistance Application. IBM Operational Decision Manager Worklight Integration Lab exercise Page 14 of 38

15 Worklight allows all the application code to be written in a common fashion consisting of HTML files and JavaScript routines. In this lab, the top level application definition is provided by the HTML file: MyInsuranceWL.html. It is pre-generated when you re-create an application in Worklight and can be customized to produce the pages that are required in the device. The HTML file references several CSS and JavaScript files that can also be customized making it very quick to develop Apps. Two key JavaScript files are: initoptions.js: This defines how the Application starts up and makes any connections back to the Worklight server MyInsuranceWL.js: This defines the main JavaScript functions provided for the mobile Insurance Assistance Application. 4. Configure the ODM Worklight adapter a. From the Project Explorer view, expand myinsurance-wl > adapters > myinsurance_adapter_rest_xml folder. Open the myinsurance_adapter_rest_xml.xml file. b. Update the Connection Policy to reference the URL of the decision server to which you deployed the rule project. IBM Operational Decision Manager Worklight Integration Lab exercise Page 15 of 38

16 c. Open the myinsurance_adapter_rest_xml-impl.js file to see the implementation. IBM Operational Decision Manager Worklight Integration Lab exercise Page 16 of 38

17 The getreport function takes three JavaScript variables (customer, position, battery) and sends them to the correct ruleset running in Decision server. The path defines the endpoint for the REST decision service execution point that should be invoked. This is determined by the path to which you deployed the ruleset. The body defines the XML content that is sent to ODM. This is obtained by using the computerestpayload function to map from the JavaScript (JSON) representation passed into the function to an XML request document that can be sent to the decision service. 5. Deploy the Assistance Application a. From Project Explorer view, select myinsurance-wl > apps> MyInsuranceWL application. b. Right click and select Run As > Build All and Deploy. It should start the Worklight server, build the application, and deploy it to the development Worklight server running on port 8080 by default. The Worklight Console view shows the progress of the build and deploy. 6. Deploy the Worklight adapter a. From Project Explorer view, select myinsurance-wl > adapters > myinsurance_adapter_xml adapter. b. Right click and select Run As > Deploy Worklight Adapter. You should see Adapter deployed successful message in the Worklight Console view. You have now deployed your mobile application and adapter to the development Worklight server and device simulator. IBM Operational Decision Manager Worklight Integration Lab exercise Page 17 of 38

18 Part 3: Run the Assistance Application in the Worklight console 1. Open the Worklight console and launch Mobile Browser Simulator a. Launch Google Chrome with URL: Under MyInsuranceWL application section, click the Android icon. It starts the Mobile Browser Simulator using an Android device. IBM Operational Decision Manager Worklight Integration Lab exercise Page 18 of 38

19 2. Configure the Assistance Application settings a. Click the Settings button and enter values of your choice or the defaults used in this lab. Name: John Home latitude: 52 Home Longitude: 0 b. Click Age. Use the scrolling widget to select 36. Then click Settings to go back to main settings widget. IBM Operational Decision Manager Worklight Integration Lab exercise Page 19 of 38

20 c. For the Policy, select bronze. You can experiment with different values later. d. To set the Vehicle, navigate through three screens to select Brand: BrandA Vehicle Model: compact Vehicle Year: 2012 IBM Operational Decision Manager Worklight Integration Lab exercise Page 20 of 38

21 e. Click Done button on the Vehicle Year widget to complete the settings. f. With all the settings established, click Done on Settings page to return to the main panel. Notice that the mobile user s name is shown in the welcome message. You are now ready to use the Assistance Application to evaluate the specific situations controlled by the rules. IBM Operational Decision Manager Worklight Integration Lab exercise Page 21 of 38

22 Scenario 1: Incident close to Home This situation occurs when the mobile user requests assistance when they are within 20 km of home. The main rule being applied here can be found in the Rule Designer workspace at: myinsurance-rules > rules > position > contextual > position policy. Note that the policy needs to be bronze for this rule to apply. Other policies (silver and gold) do not have this limitation. a. In Cordova Geolocation section, set your location to latitude 52, longitude 0.1, so you are close to your home. IBM Operational Decision Manager Worklight Integration Lab exercise Page 22 of 38

23 b. Click the Get Assistance button. On the first call to the ODM decision service, it can take a while to respond and you will see a message as shown below while the ruleset is being loaded into Decision Server. This only occurs on the very first usage of the ruleset within the decision server. Once loaded, you should see four vertical tabs displayed. c. Click the Location tab to see the report based on your geographic location. It shows the comparison being made in the rules between the home location and current location and thus generating a warning if the distance is less than 20 KMs. d. Click the Recovery, Policy cover, and Policy summary tabs. You should see the information as below. IBM Operational Decision Manager Worklight Integration Lab exercise Page 23 of 38

24 The messages displayed for the Recovery and Policy cover panels are generated by a decision table that defines the different cover messages for each type of the policy code. In Rule Designer workspace, you can find the decision table at myinsurance-rules > rules > general conditions. For bronze cover, towing on highways is not covered. If you select silver or gold in the settings, this message is different. IBM Operational Decision Manager Worklight Integration Lab exercise Page 24 of 38

25 Scenario 2: change the location This scenario shows how the geolocation information can be used within the rules. a. Set your position to be in France at 48, 2. b. Click the Get Assistance button. The information provided by the Cordova API specifies location in latitude and longitude. This is not easy for business users to manipulate, and so normally the rules invoke a geolocation service to convert from latitude, longitude into the country (or state). To minimize the dependencies on the external services, this lab uses a decision table to look up the country and its time zone based on the supplied latitude and longitude. You can find the decision table in Rule Designer workspace at: myinsurance-rules > rules > position > contextual > country. IBM Operational Decision Manager Worklight Integration Lab exercise Page 25 of 38

26 c. Expand the Location tab. You should see the result of the country checking rule displayed. Once the country and time zone have been determined for the home location and current location, the information can then be used to determine if the mobile user is in their home country or not. The country checking rule can be seen at: myinsurance-rules > rules > position > contextual > country checking. IBM Operational Decision Manager Worklight Integration Lab exercise Page 26 of 38

27 Scenario 3: Time based rules In this scenario, the rules are trying to determine whether it is night time at the user s current location. And thus provide them with appropriate telephone numbers to call. The night exception rule can be seen in the Rule Designer workspace at: myinsurance-rules > rules > position > contextual > night exception. It uses the absolute time provided by the device to calculate the local time in the current location. It adds the message to an alert report which is then used in the Assistance Application to raise an alert as a popup. a. Set your location to New Zealand at -42, 174, where the local time should be at night. b. Click the Get Assistance button. IBM Operational Decision Manager Worklight Integration Lab exercise Page 27 of 38

28 c. A notification is sent to inform you of who to call. Click OK to close the alert and the Assistance screen will then open. IBM Operational Decision Manager Worklight Integration Lab exercise Page 28 of 38

29 Scenario 4: Use of battery level in rules The rules in this scenario also make use of the battery level available from the device. When the battery is low (less than 10%), an additional message is added to the alert indicating that an SMS message is sent. The low battery rule can be seen in the Rule Designer workspace at: myinsurance-rules > rules > battery > low. Note this sample does not actually include the infrastructure to send the SMS message. a. Set the battery to 5% in the Cordova panel. b. Click Get Assistance. IBM Operational Decision Manager Worklight Integration Lab exercise Page 29 of 38

30 c. An alert pops up. It indicates that the rules have detected the low battery and have initiated an SMS message to be sent with further instructions allowing the mobile user to turn off their cellphone network connection and not miss any instructions. Click OK to close the alert and see the Assistance panel showing the battery level change. IBM Operational Decision Manager Worklight Integration Lab exercise Page 30 of 38

31 Part 4: Change rules (Optional) You might have noticed that the location report provided no information if you were close to your home location and were a silver or gold customer. In this part, you learn how to change a rule, redeploy the ruleset and observe the change in behavior of the Assistance Application. 1. Check the Assistance Application location report for a Silver policy type a. In the Cordova, reset the Battery settings to 90% and Geolocation to 52, 0.1 in London. b. On the mobile simulator screen, click Settings button. IBM Operational Decision Manager Worklight Integration Lab exercise Page 31 of 38

32 c. Select the Policy and change it to silver. And click Settings to save the value. Then click Done to save the settings change. d. Click Get Assistance button to run the rules and obtain a report as shown below. There is no information in the location panel. You will modify the position policy rule to provide a message for gold and silver policy codes. IBM Operational Decision Manager Worklight Integration Lab exercise Page 32 of 38

33 2. Change the rule a. Open the Sample Console by selecting Start All Programs IBM Operational Decision Manager V8.5 Sample server Samples Console(en_US). Enter the rule project workspace location. For example: C:\IBM\workspaces\WorklightSample. b. In the Rule Explorer view, double click myinsurance-rules > rules > position > contextual > position policy. c. Click at the end of the rule and press Ctrl + Space keys to bring up the Intellirule autocompletion editor and select else phrase. Double click to add else term. d. Copy the expression below and paste after the else term. add "INFORMATION: You are at " + the distance between 'the customer' home and 'current location + " kms from your home. Towing is covered in your policy" to the location report of 'the report' ; e. It should result in the rule content as shown below. Click the Save button on the toolbar. IBM Operational Decision Manager Worklight Integration Lab exercise Page 33 of 38

34 3. Deploy the modified ruleset a. Right click myinsurance-ruleapp, choose RuleApp > Deploy b. On the Deployment Wizard, select Replace RuleApp version to overwrite any existing deployments. Click Next. c. If a Java version notification pops up, click OK. IBM Operational Decision Manager Worklight Integration Lab exercise Page 34 of 38

35 d. Select Create a temporary Rule Execution Server configuration and use the default values provided. Click Finish. The Console view should show the successful deployment. 4. Rerun the Assistance Application location scenario IBM Operational Decision Manager Worklight Integration Lab exercise Page 35 of 38

36 a. Go back to the Mobile Browser Simulator you used before with silver policy code. Enter geolocation: 52, 0.1. b. Click Get Assistance. IBM Operational Decision Manager Worklight Integration Lab exercise Page 36 of 38

37 As you have just redeployed the rules, you will have a short wait before the updated response is provided. You can see your modified rule is executed. IBM Operational Decision Manager Worklight Integration Lab exercise Page 37 of 38

38 What you did in this exercise In this exercise, you First imported the sample myinsurance-rules rule project and examined the details of the rules that provide assistance to a mobile user in the event of an accident. Then you deployed it to the Decision Server of the Operational Decision Manager. Next, you started a Worklight project called myinsurance-wl using Worklight Studio. You created an Android environment and configured the Operational Decision Manager adapter. You deployed the Android application to the Worklight Browser Simulator and the adapter to the Worklight server. You ran four different end mobile user scenarios and observed how the rules determine the advice based on the different user characteristics and location of the mobile device. In the last part, you changed a specific rule, redeployed the ruleset, and reran the location scenario to observe the changed response of the Assistance Application. This completes the Operational Decision Manager Worklight Integration lab. But you are welcome to continue exploring with changing rules or Mobile device settings. IBM Operational Decision Manager Worklight Integration Lab exercise Page 38 of 38

IBM Operational Decision Manager Version 8 Release 5. Getting Started with Business Rules

IBM Operational Decision Manager Version 8 Release 5. Getting Started with Business Rules IBM Operational Decision Manager Version 8 Release 5 Getting Started with Business Rules Note Before using this information and the product it supports, read the information in Notices on page 43. This

More information

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files About This Tutorial 1Creating an End-to-End HL7 Over MLLP Application 1.1 About This Tutorial 1.1.1 Tutorial Requirements 1.1.2 Provided Files This tutorial takes you through the steps of creating an end-to-end

More information

WebSphere Business Monitor V7.0 Script adapter lab

WebSphere Business Monitor V7.0 Script adapter lab Copyright IBM Corporation 2010 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 7.0 LAB EXERCISE WebSphere Business Monitor V7.0 Script adapter lab What this exercise is about... 1 Changes from the previous

More information

IBM Business Monitor V8.0 Global monitoring context lab

IBM Business Monitor V8.0 Global monitoring context lab Copyright IBM Corporation 2012 All rights reserved IBM BUSINESS MONITOR 8.0 LAB EXERCISE IBM Business Monitor V8.0 lab What this exercise is about... 2 Lab requirements... 2 What you should be able to

More information

WebSphere Business Monitor V7.0 Business space dashboards

WebSphere Business Monitor V7.0 Business space dashboards Copyright IBM Corporation 2010 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 7.0 LAB EXERCISE WebSphere Business Monitor V7.0 What this exercise is about... 2 Lab requirements... 2 What you should

More information

Business Process Management IBM Business Process Manager V7.5

Business Process Management IBM Business Process Manager V7.5 Business Process Management IBM Business Process Manager V7.5 Federated task management for BPEL processes and human tasks This presentation introduces the federated task management feature for BPEL processes

More information

Introduction: The Xcode templates are not available in Cordova-2.0.0 or above, so we'll use the previous version, 1.9.0 for this recipe.

Introduction: The Xcode templates are not available in Cordova-2.0.0 or above, so we'll use the previous version, 1.9.0 for this recipe. Tutorial Learning Objectives: After completing this lab, you should be able to learn about: Learn how to use Xcode with PhoneGap and jquery mobile to develop iphone Cordova applications. Learn how to use

More information

Lab 5 Using Remote Worklight Server

Lab 5 Using Remote Worklight Server Lab 5 Using Remote Worklight Server Table of Contents 5. Using Remote Worklight Server... 5-3 5.1. Lab Setup...5-4 5.1.1. Delete the mobile app in the Worklight Console... 5-4 5.2. Using the Remote Worklight

More information

WebSphere Business Monitor V6.2 Business space dashboards

WebSphere Business Monitor V6.2 Business space dashboards Copyright IBM Corporation 2009 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 6.2 LAB EXERCISE WebSphere Business Monitor V6.2 What this exercise is about... 2 Lab requirements... 2 What you should

More information

IBM TRIRIGA Anywhere Version 10 Release 4. Installing a development environment

IBM TRIRIGA Anywhere Version 10 Release 4. Installing a development environment IBM TRIRIGA Anywhere Version 10 Release 4 Installing a development environment Note Before using this information and the product it supports, read the information in Notices on page 9. This edition applies

More information

Tutorial: BlackBerry Object API Application Development. Sybase Unwired Platform 2.2 SP04

Tutorial: BlackBerry Object API Application Development. Sybase Unwired Platform 2.2 SP04 Tutorial: BlackBerry Object API Application Development Sybase Unwired Platform 2.2 SP04 DOCUMENT ID: DC01214-01-0224-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This

More information

Tutorial: BlackBerry Application Development. Sybase Unwired Platform 2.0

Tutorial: BlackBerry Application Development. Sybase Unwired Platform 2.0 Tutorial: BlackBerry Application Development Sybase Unwired Platform 2.0 DOCUMENT ID: DC01214-01-0200-02 LAST REVISED: May 2011 Copyright 2011 by Sybase, Inc. All rights reserved. This publication pertains

More information

Generate Android App

Generate Android App Generate Android App This paper describes how someone with no programming experience can generate an Android application in minutes without writing any code. The application, also called an APK file can

More information

Workshop for WebLogic introduces new tools in support of Java EE 5.0 standards. The support for Java EE5 includes the following technologies:

Workshop for WebLogic introduces new tools in support of Java EE 5.0 standards. The support for Java EE5 includes the following technologies: Oracle Workshop for WebLogic 10g R3 Hands on Labs Workshop for WebLogic extends Eclipse and Web Tools Platform for development of Web Services, Java, JavaEE, Object Relational Mapping, Spring, Beehive,

More information

Ricardo Perdigao, Solutions Architect Edsel Garcia, Principal Software Engineer Jean Munro, Senior Systems Engineer Dan Mitchell, Principal Systems

Ricardo Perdigao, Solutions Architect Edsel Garcia, Principal Software Engineer Jean Munro, Senior Systems Engineer Dan Mitchell, Principal Systems A Sexy UI for Progress OpenEdge using JSDO and Kendo UI Ricardo Perdigao, Solutions Architect Edsel Garcia, Principal Software Engineer Jean Munro, Senior Systems Engineer Dan Mitchell, Principal Systems

More information

WebSphere Business Monitor V6.2 KPI history and prediction lab

WebSphere Business Monitor V6.2 KPI history and prediction lab Copyright IBM Corporation 2009 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 6.2 LAB EXERCISE WebSphere Business Monitor V6.2 KPI history and prediction lab What this exercise is about... 1 Lab requirements...

More information

EVALUATION ONLY. WA2088 WebSphere Application Server 8.5 Administration on Windows. Student Labs. Web Age Solutions Inc.

EVALUATION ONLY. WA2088 WebSphere Application Server 8.5 Administration on Windows. Student Labs. Web Age Solutions Inc. WA2088 WebSphere Application Server 8.5 Administration on Windows Student Labs Web Age Solutions Inc. Copyright 2013 Web Age Solutions Inc. 1 Table of Contents Directory Paths Used in Labs...3 Lab Notes...4

More information

Oracle Service Bus Examples and Tutorials

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

More information

IBM BPM V8.5 Standard Consistent Document Managment

IBM BPM V8.5 Standard Consistent Document Managment IBM Software An IBM Proof of Technology IBM BPM V8.5 Standard Consistent Document Managment Lab Exercises Version 1.0 Author: Sebastian Carbajales An IBM Proof of Technology Catalog Number Copyright IBM

More information

Tutorial: Android Object API Application Development. SAP Mobile Platform 2.3 SP02

Tutorial: Android Object API Application Development. SAP Mobile Platform 2.3 SP02 Tutorial: Android Object API Application Development SAP Mobile Platform 2.3 SP02 DOCUMENT ID: DC01939-01-0232-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication

More information

Using Microsoft Visual Studio 2010. API Reference

Using Microsoft Visual Studio 2010. API Reference 2010 API Reference Published: 2014-02-19 SWD-20140219103929387 Contents 1... 4 Key features of the Visual Studio plug-in... 4 Get started...5 Request a vendor account... 5 Get code signing and debug token

More information

Abila Nonprofit Online. Connection Guide

Abila Nonprofit Online. Connection Guide Abila Nonprofit Online This is a publication of Abila, Inc. 2014 Abila, Inc. and its affiliated entities. All rights reserved. Abila, the Abila logos, and the Abila product and service names mentioned

More information

How To Use Titanium Studio

How To Use Titanium Studio Crossplatform Programming Lecture 3 Introduction to Titanium http://dsg.ce.unipr.it/ http://dsg.ce.unipr.it/?q=node/37 alessandro.grazioli81@gmail.com 2015 Parma Outline Introduction Installation and Configuration

More information

Running a Program on an AVD

Running a Program on an AVD Running a Program on an AVD Now that you have a project that builds an application, and an AVD with a system image compatible with the application s build target and API level requirements, you can run

More information

isupplier PORTAL ACCESS SYSTEM REQUIREMENTS

isupplier PORTAL ACCESS SYSTEM REQUIREMENTS TABLE OF CONTENTS Recommended Browsers for isupplier Portal Recommended Microsoft Internet Explorer Browser Settings (MSIE) Recommended Firefox Browser Settings Recommended Safari Browser Settings SYSTEM

More information

Table of Contents. 1. Content Approval...1 EVALUATION COPY

Table of Contents. 1. Content Approval...1 EVALUATION COPY Table of Contents Table of Contents 1. Content Approval...1 Enabling Content Approval...1 Content Approval Workflows...4 Exercise 1: Enabling and Using SharePoint Content Approval...9 Exercise 2: Enabling

More information

Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c

Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c This document describes how to set up Oracle Enterprise Manager 12c to monitor

More information

Download and Installation Instructions. Android SDK and Android Development Tools (ADT)

Download and Installation Instructions. Android SDK and Android Development Tools (ADT) Download and Installation Instructions for Android SDK and Android Development Tools (ADT) on Mac OS X Updated October, 2012 This document will describe how to download and install the Android SDK and

More information

Wavecrest Certificate

Wavecrest Certificate Wavecrest InstallationGuide Wavecrest Certificate www.wavecrest.net Copyright Copyright 1996-2015, Wavecrest Computing, Inc. All rights reserved. Use of this product and this manual is subject to license.

More information

10.3.1.9 Lab - Configure a Windows Vista Firewall

10.3.1.9 Lab - Configure a Windows Vista Firewall 5.0 10.3.1.9 Lab - Configure a Windows Vista Firewall Print and complete this lab. In this lab, you will explore the Windows Vista Firewall and configure some advanced settings. Recommended Equipment Step

More information

Welcome to the TransPerfect Translations Secure File Transfer Website What is Secure FTP?

Welcome to the TransPerfect Translations Secure File Transfer Website What is Secure FTP? Welcome to the TransPerfect Translations Secure File Transfer Website What is Secure FTP? SFTP (Secure File Transfer Protocol) is an added layer of security provided to our clients. SFTP requires an encrypted

More information

Adobe Summit 2015 Lab 712: Building Mobile Apps: A PhoneGap Enterprise Introduction for Developers

Adobe Summit 2015 Lab 712: Building Mobile Apps: A PhoneGap Enterprise Introduction for Developers Adobe Summit 2015 Lab 712: Building Mobile Apps: A PhoneGap Enterprise Introduction for Developers 1 Table of Contents INTRODUCTION MODULE 1 AEM & PHONEGAP ENTERPRISE INTRODUCTION LESSON 1- AEM BASICS

More information

This presentation introduces you to the Decision Governance Framework that is new in IBM Operational Decision Manager version 8.5 Decision Center.

This presentation introduces you to the Decision Governance Framework that is new in IBM Operational Decision Manager version 8.5 Decision Center. This presentation introduces you to the Decision Governance Framework that is new in IBM Operational Decision Manager version 8.5 Decision Center. ODM85_DecisionGovernanceFramework.ppt Page 1 of 32 The

More information

WebSphere Business Monitor V7.0: Clustering Single cluster deployment environment pattern

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

More information

Configuring a Custom Load Evaluator Use the XenApp1 virtual machine, logged on as the XenApp\administrator user for this task.

Configuring a Custom Load Evaluator Use the XenApp1 virtual machine, logged on as the XenApp\administrator user for this task. Lab 8 User name: Administrator Password: Password1 Contents Exercise 8-1: Assigning a Custom Load Evaluator... 1 Scenario... 1 Configuring a Custom Load Evaluator... 1 Assigning a Load Evaluator to a Server...

More information

10.3.1.8 Lab - Configure a Windows 7 Firewall

10.3.1.8 Lab - Configure a Windows 7 Firewall 5.0 10.3.1.8 Lab - Configure a Windows 7 Firewall Print and complete this lab. In this lab, you will explore the Windows 7 Firewall and configure some advanced settings. Recommended Equipment Step 1 Two

More information

This tutorial provides detailed instructions to help you download and configure Internet Explorer 6.0 for use with Web Commerce application.

This tutorial provides detailed instructions to help you download and configure Internet Explorer 6.0 for use with Web Commerce application. IE 6.0 Download and Set-up To use the Web Commerce e-commerce service, you need to: Gain access to the Internet Install Microsoft Internet Explorer 6.0 Configure Temporary Internet files in Internet Explorer.

More information

Managing Existing Mobile Apps

Managing Existing Mobile Apps Adobe Summit 2016 Lab 324: Managing Existing Mobile Apps Adobe Experience Manager Mobile 1 Table of Contents INTRODUCTION 4 GOAL 4 OBJECTIVES 4 MODULE 1 AEM INTRODUCTION 5 LESSON 1 - AEM BASICS 5 OVERVIEW

More information

SPC Connect Configuration Manual V1.0

SPC Connect Configuration Manual V1.0 SPC Connect Configuration Manual V1.0 I-200090-1 28.11.2014 Copyright Copyright Technical specifications and availability subject to change without notice. Copyright Siemens AB We reserve all rights in

More information

Quick Start Guide Mobile Entrée 4

Quick Start Guide Mobile Entrée 4 Table of Contents Table of Contents... 1 Installation... 2 Obtaining the Installer... 2 Installation Using the Installer... 2 Site Configuration... 2 Feature Activation... 2 Definition of a Mobile Application

More information

Web services with WebSphere Studio: Deploy and publish

Web services with WebSphere Studio: Deploy and publish Web services with WebSphere Studio: Deploy and publish Table of Contents If you're viewing this document online, you can click any of the topics below to link directly to that section. 1. Introduction...

More information

Quick Start Guide. Installation and Setup

Quick Start Guide. Installation and Setup Quick Start Guide Installation and Setup Introduction Velaro s live help and survey management system provides an exciting new way to engage your customers and website visitors. While adding any new technology

More information

Tutorial: Android Object API Application Development. SAP Mobile Platform 2.3

Tutorial: Android Object API Application Development. SAP Mobile Platform 2.3 Tutorial: Android Object API Application Development SAP Mobile Platform 2.3 DOCUMENT ID: DC01939-01-0230-01 LAST REVISED: March 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication

More information

Java. How to install the Java Runtime Environment (JRE)

Java. How to install the Java Runtime Environment (JRE) Java How to install the Java Runtime Environment (JRE) Install Microsoft Virtual Machine (VM) via System Check Install Sun Java Runtime Environment (JRE) via System Check Loading Java Applet Failed How

More information

Take full advantage of IBM s IDEs for end- to- end mobile development

Take full advantage of IBM s IDEs for end- to- end mobile development Take full advantage of IBM s IDEs for end- to- end mobile development ABSTRACT Mobile development with Rational Application Developer 8.5, Rational Software Architect 8.5, Rational Developer for zenterprise

More information

1. Tutorial Overview

1. Tutorial Overview RDz Web Services Tutorial 02 Web Services Abteilung Technische Informatik, Institut für Informatik, Universität Leipzig Abteilung Technische Informatik, Wilhelm Schickard Institut für Informatik, Universität

More information

Android Programming. Høgskolen i Telemark Telemark University College. Cuong Nguyen, 2013.06.18

Android Programming. Høgskolen i Telemark Telemark University College. Cuong Nguyen, 2013.06.18 Høgskolen i Telemark Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Cuong Nguyen, 2013.06.18 Faculty of Technology, Postboks 203, Kjølnes ring

More information

Mobile App Framework For any Website

Mobile App Framework For any Website Mobile App Framework For any Website Presenting the most advanced and affordable way to create a native mobile app for any website The project of developing a Mobile App is structured and the scope of

More information

SPHOL205: Introduction to Backup & Restore in SharePoint 2013. Hands-On Lab. Lab Manual

SPHOL205: Introduction to Backup & Restore in SharePoint 2013. Hands-On Lab. Lab Manual 2013 SPHOL205: Introduction to Backup & Restore in SharePoint 2013 Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other Internet

More information

Developing coaches in human services

Developing coaches in human services Copyright IBM Corporation 2012 All rights reserved IBM BUSINESS PROCESS MANAGER 8.0 LAB EXERCISE Developing coaches in human services What this exercise is about... 1 Lab requirements... 1 What you should

More information

Tutorial: Android Object API Application Development. Sybase Unwired Platform 2.2 SP02

Tutorial: Android Object API Application Development. Sybase Unwired Platform 2.2 SP02 Tutorial: Android Object API Application Development Sybase Unwired Platform 2.2 SP02 DOCUMENT ID: DC01734-01-0222-01 LAST REVISED: January 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This

More information

Building and Using Web Services With JDeveloper 11g

Building and Using Web Services With JDeveloper 11g Building and Using Web Services With JDeveloper 11g Purpose In this tutorial, you create a series of simple web service scenarios in JDeveloper. This is intended as a light introduction to some of the

More information

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë 14.1 bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë bî~äì~íáåö=oéñäéåíáçå=ñçê=emi=rkfui=~åç=lééåsjp=eçëíë This guide walks you quickly through key Reflection features. It covers: Getting Connected

More information

KonyOne Server Prerequisites _ MS SQL Server

KonyOne Server Prerequisites _ MS SQL Server KonyOne Server Prerequisites _ MS SQL Server KonyOne Platform Release 5.0 Copyright 2012-2013 Kony Solutions, Inc. All Rights Reserved. Page 1 of 13 Copyright 2012-2013 by Kony Solutions, Inc. All rights

More information

Contents First Time Setup... 2 Setting up the Legal Vault Client (KiteDrive)... 3 Setting up the KiteDrive Outlook Plugin... 10 Using the Legal Vault

Contents First Time Setup... 2 Setting up the Legal Vault Client (KiteDrive)... 3 Setting up the KiteDrive Outlook Plugin... 10 Using the Legal Vault Contents First Time Setup... 2 Setting up the Legal Vault Client (KiteDrive)... 3 Setting up the KiteDrive Outlook Plugin... 10 Using the Legal Vault Outlook Plugin... 13 Using KiteDrive to Send Large

More information

Instructions for Configuring Your Browser Settings and Online Security FAQ s. ios8 Settings for iphone and ipad app

Instructions for Configuring Your Browser Settings and Online Security FAQ s. ios8 Settings for iphone and ipad app Instructions for Configuring Your Browser Settings and Online Security FAQ s ios8 Settings for iphone and ipad app General Settings The following browser settings and plug-ins are required to properly

More information

Reference Guide for WebCDM Application 2013 CEICData. All rights reserved.

Reference Guide for WebCDM Application 2013 CEICData. All rights reserved. Reference Guide for WebCDM Application 2013 CEICData. All rights reserved. Version 1.2 Created On February 5, 2007 Last Modified August 27, 2013 Table of Contents 1 SUPPORTED BROWSERS... 3 1.1 INTERNET

More information

Getting Started with the Aloha Community Template for Salesforce Identity

Getting Started with the Aloha Community Template for Salesforce Identity Getting Started with the Aloha Community Template for Salesforce Identity Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved.

More information

FileMaker Server 13. FileMaker Server Help

FileMaker Server 13. FileMaker Server Help FileMaker Server 13 FileMaker Server Help 2010-2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker,

More information

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts...

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts... Table of Contents Welcome... 2 Login... 3 Password Assistance... 4 Self Registration... 5 Secure Mail... 7 Compose... 8 Drafts... 10 Outbox... 11 Sent Items... 12 View Package Details... 12 File Manager...

More information

Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers

Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers 1 INTRODUCTION GOAL OBJECTIVES MODULE 1 AEM & PHONEGAP ENTERPRISE INTRODUCTION LESSON 1- AEM BASICS OVERVIEW

More information

Oracle SOA Suite 11g Oracle SOA Suite 11g HL7 Inbound Example

Oracle SOA Suite 11g Oracle SOA Suite 11g HL7 Inbound Example Oracle SOA Suite 11g Oracle SOA Suite 11g HL7 Inbound Example michael.czapski@oracle.com June 2010 Table of Contents Introduction... 1 Pre-requisites... 1 Prepare HL7 Data... 1 Obtain and Explore the HL7

More information

unisys ClearPath eportal Developer 6.1 Unisys Multi-Device App Developer s Guide March 2015 8230 0898 001

unisys ClearPath eportal Developer 6.1 Unisys Multi-Device App Developer s Guide March 2015 8230 0898 001 unisys ClearPath eportal Developer 6.1 Unisys Multi-Device App Developer s Guide March 2015 8230 0898 001 NO WARRANTIES OF ANY NATURE ARE EXTENDED BY THIS DOCUMENT. Any product or related information described

More information

Tutorial: Mobile Business Object Development. Sybase Unwired Platform 2.2 SP02

Tutorial: Mobile Business Object Development. Sybase Unwired Platform 2.2 SP02 Tutorial: Mobile Business Object Development Sybase Unwired Platform 2.2 SP02 DOCUMENT ID: DC01208-01-0222-01 LAST REVISED: January 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication

More information

An introduction to creating Web 2.0 applications in Rational Application Developer Version 8.0

An introduction to creating Web 2.0 applications in Rational Application Developer Version 8.0 An introduction to creating Web 2.0 applications in Rational Application Developer Version 8.0 September 2010 Copyright IBM Corporation 2010. 1 Overview Rational Application Developer, Version 8.0, contains

More information

Wakanda Studio Features

Wakanda Studio Features Wakanda Studio Features Discover the many features in Wakanda Studio. The main features each have their own chapters and other features are documented elsewhere: Wakanda Server Administration Data Browser

More information

Integrating Mobile apps with your Enterprise

Integrating Mobile apps with your Enterprise Integrating Mobile apps with your Enterprise Jonathan Marshall marshalj@uk.ibm.com @jmarshall1 Agenda Mobile apps and the enterprise Integrating mobile apps with Enterprise Applications Mobile apps and

More information

Contenu du Cours : IBM Mobile Application

Contenu du Cours : IBM Mobile Application Contenu du Cours : IBM IBM Middle East and Africa University IBM Copyright 2014 IBM CONFIDENTIAL - Why IBM? IBM MARKET LEADER IN THE MOBILE APPLICATION SPACE GARTNER Magic Quadrant Development Platforms

More information

Tutorial: Mobile Business Object Development. SAP Mobile Platform 2.3

Tutorial: Mobile Business Object Development. SAP Mobile Platform 2.3 Tutorial: Mobile Business Object Development SAP Mobile Platform 2.3 DOCUMENT ID: DC01927-01-0230-01 LAST REVISED: March 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains

More information

Backup & Disaster Recovery Appliance User Guide

Backup & Disaster Recovery Appliance User Guide Built on the Intel Hybrid Cloud Platform Backup & Disaster Recovery Appliance User Guide Order Number: G68664-001 Rev 1.0 June 22, 2012 Contents Registering the BDR Appliance... 4 Step 1: Register the

More information

1. INTERFACE ENHANCEMENTS 2. REPORTING ENHANCEMENTS

1. INTERFACE ENHANCEMENTS 2. REPORTING ENHANCEMENTS W E L C O M E T O M O N I T O R I N G H E A V E N NEW THINGS ABOUT PANDORA FMS 5.0 A new version of Pandora FMS full of enhancements is about to hit the market. Pandora FMS 5.0 will be released by the

More information

Tutorial: Mobile Business Object Development. SAP Mobile Platform 2.3 SP02

Tutorial: Mobile Business Object Development. SAP Mobile Platform 2.3 SP02 Tutorial: Mobile Business Object Development SAP Mobile Platform 2.3 SP02 DOCUMENT ID: DC01927-01-0232-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains

More information

Installing the Android SDK

Installing the Android SDK Installing the Android SDK To get started with development, we first need to set up and configure our PCs for working with Java, and the Android SDK. We ll be installing and configuring four packages today

More information

Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5.

Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5. 1 2 3 4 Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5. It replaces the previous tools Database Manager GUI and SQL Studio from SAP MaxDB version 7.7 onwards

More information

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab Description The Symantec App Center platform continues to expand it s offering with new enhanced support for native agent based device management

More information

About this Release. Introduction. Prerequisites. Installation. Using the Web SDK Packager

About this Release. Introduction. Prerequisites. Installation. Using the Web SDK Packager About this Release This is a 1.2.1 release of the Sony Ericsson WebSDK Packager. Limitations are listed in Release Notes. Introduction Sony Ericsson s WebSDK Packager is based on the open source PhoneGap

More information

Download and Installation Instructions. Android SDK and Android Development Tools (ADT) Microsoft Windows

Download and Installation Instructions. Android SDK and Android Development Tools (ADT) Microsoft Windows Download and Installation Instructions for Android SDK and Android Development Tools (ADT) on Microsoft Windows Updated May, 2012 This document will describe how to download and install the Android SDK

More information

Getting Started with Android Development

Getting Started with Android Development Getting Started with Android Development By Steven Castellucci (v1.1, January 2015) You don't always need to be in the PRISM lab to work on your 4443 assignments. Working on your own computer is convenient

More information

ADFS Integration Guidelines

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

More information

USER CONFERENCE 2011 SAN FRANCISCO APRIL 26 29. Running MarkLogic in the Cloud DEVELOPER LOUNGE LAB

USER CONFERENCE 2011 SAN FRANCISCO APRIL 26 29. Running MarkLogic in the Cloud DEVELOPER LOUNGE LAB USER CONFERENCE 2011 SAN FRANCISCO APRIL 26 29 Running MarkLogic in the Cloud DEVELOPER LOUNGE LAB Table of Contents UNIT 1: Lab description... 3 Pre-requisites:... 3 UNIT 2: Launching an instance on EC2...

More information

Remote Application Server Version 14. Last updated: 25-02-15

Remote Application Server Version 14. Last updated: 25-02-15 Remote Application Server Version 14 Last updated: 25-02-15 Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise

More information

Download and Installation Instructions. Android SDK and Android Development Tools (ADT) Microsoft Windows

Download and Installation Instructions. Android SDK and Android Development Tools (ADT) Microsoft Windows Download and Installation Instructions for Android SDK and Android Development Tools (ADT) on Microsoft Windows Updated September, 2013 This document will describe how to download and install the Android

More information

Important Notes for WinConnect Server VS Software Installation:

Important Notes for WinConnect Server VS Software Installation: Important Notes for WinConnect Server VS Software Installation: 1. Only Windows Vista Business, Windows Vista Ultimate, Windows 7 Professional, Windows 7 Ultimate, Windows Server 2008 (32-bit & 64-bit),

More information

Edwin Analytics Getting Started Guide

Edwin Analytics Getting Started Guide Edwin Analytics Getting Started Guide This guide provides assistance for accessing and using Edwin Analytics, the Department of Elementary and Secondary Education s (ESE) online tool for expanding data

More information

MiVoice Integration for Salesforce

MiVoice Integration for Salesforce MiVoice Integration for Salesforce USER GUIDE MiVoice Integration for Salesforce User Guide, Version 1, April 2014. Part number 58014124 Mitel is a registered trademark of Mitel Networks Corporation. Salesforce

More information

Introduction to Android Development

Introduction to Android Development 2013 Introduction to Android Development Keshav Bahadoor An basic guide to setting up and building native Android applications Science Technology Workshop & Exposition University of Nigeria, Nsukka Keshav

More information

Rational Application Developer v7.0 (RAD7) trial version. Installation guide

Rational Application Developer v7.0 (RAD7) trial version. Installation guide Rational Application Developer v7.0 (RAD7) trial version. Installation guide. Warning: You cannot use ghosting or disk imaging to install this software. You must install the software on each machine separately.

More information

Selenium Automation set up with TestNG and Eclipse- A Beginners Guide

Selenium Automation set up with TestNG and Eclipse- A Beginners Guide Selenium Automation set up with TestNG and Eclipse- A Beginners Guide Authors: Eevuri Sri Harsha, Ranjani Sivagnanam Sri Harsha is working as an Associate Software Engineer (QA) for IBM Policy Atlas team

More information

Remote Application Server Version 14. Last updated: 06-02-15

Remote Application Server Version 14. Last updated: 06-02-15 Remote Application Server Version 14 Last updated: 06-02-15 Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise

More information

T320 E-business technologies: foundations and practice

T320 E-business technologies: foundations and practice T320 E-business technologies: foundations and practice Block 3 Part 6 Activity 2: Testing a web service for WS-I conformance Prepared for the course team by Neil Simpkins Introduction 1 Configuring the

More information

Enterprise Service Bus

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

More information

FileMaker Server 14. FileMaker Server Help

FileMaker Server 14. FileMaker Server Help FileMaker Server 14 FileMaker Server Help 2007 2015 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks

More information

Web Hosting Training Guide. Web Hosting Training Guide. Author: Glow Team Page 1 of 28 Ref: GC278_v1.1

Web Hosting Training Guide. Web Hosting Training Guide. Author: Glow Team Page 1 of 28 Ref: GC278_v1.1 Web Hosting Training Guide Internet Explorer version Doc Ref: GC278_v1.1 Author: Glow Team Page 1 of 28 Ref: GC278_v1.1 Contents Introduction... 3 What is the Glow Web Hosting service?... 3 Why use the

More information

E-mail Listeners. E-mail Formats. Free Form. Formatted

E-mail Listeners. E-mail Formats. Free Form. Formatted E-mail Listeners 6 E-mail Formats You use the E-mail Listeners application to receive and process Service Requests and other types of tickets through e-mail in the form of e-mail messages. Using E- mail

More information

Important Notes for WinConnect Server ES Software Installation:

Important Notes for WinConnect Server ES Software Installation: Important Notes for WinConnect Server ES Software Installation: 1. Only Windows 8/8.1 Enterprise, Windows 8/8.1 Professional (32-bit & 64-bit) or Windows Server 2012 (64-bit) or Windows Server 2012 Foundation

More information

Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0

Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0 Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0 Part No. E52543-01 April 2014 Oracle Financial Services Software Limited Oracle Park Off Western Express Highway

More information

Remote Desktop Web Access. Using Remote Desktop Web Access

Remote Desktop Web Access. Using Remote Desktop Web Access Remote Desktop Web Access What is RD Web Access? RD Web Access is a Computer Science service that allows you to access department software and machines from your Windows or OS X computer, both on and off

More information

SQL Server Database Administration and Design By Dave Peru, October 2011

SQL Server Database Administration and Design By Dave Peru, October 2011 SQL Server Database Administration and Design By Dave Peru, October 2011 Introduction Name Handout Sheet Developer s Perspective - Story Outline Create a Database Create a New Data Model Data Model Diagrams

More information

Sophos for Microsoft SharePoint startup guide

Sophos for Microsoft SharePoint startup guide Sophos for Microsoft SharePoint startup guide Product version: 2.0 Document date: March 2011 Contents 1 About this guide...3 2 About Sophos for Microsoft SharePoint...3 3 System requirements...3 4 Planning

More information