Build Mobile Apps for Oracle E-Business Suite with Oracle Mobile Platform Part 2

Size: px
Start display at page:

Download "Build Mobile Apps for Oracle E-Business Suite with Oracle Mobile Platform Part 2"

Transcription

1 Build Mobile Apps for Oracle E-Business Suite with Oracle Mobile Platform Part 2 Bruce Bailey Principal Mobile / Social Solutions Consultant Srikant Subramaniam Director, FMW Product Management, AppAdvantage Jagadeesh Shetty Senior FMW Sales Consultant

2 Table of Contents 1 WORKSHOP OVERVIEW GETTING STARTED Environment Setup INVESTIGATE THE LOGIN AND REST SERVICES BUILD THE SECURED REST DATA CONTROL Start Oracle JDeveloper Open the ExpensesApproval App Create REST Service Data Control Use our REST Data Control to Generate a Pie Chart ADD AUTHENTICATION Secure the Application with a Login Page Create the Login Service Connection Configure REST Requests for Credential Injection DEPLOY AND TEST THE APPLICATION

3 1 Workshop Overview Oracle Mobile Development Platform enables you to build mobile applications for smart phones and tablets, via a visual and declarative framework. The framework provides all the services needed by an enterprise grade mobile application. Using Oracle JDeveloper, developers can develop one application that can be deployed to multiple mobile device platforms (Android, ios). Oracle Fusion Middleware provides the necessary infrastructure (via SOA Oracle Service Bus and SOA Composites) to extend business processes and services to the mobile device, thus enabling the mobile user to access enterprise applications. When coupled with Oracle Mobile Platform, the combination can enable mobile execution of business transactions on Oracle E-Business Suite (or any Oracle Application). This is the second workshop in Oracle s Mobile Reference Architecture Series. In the first workshop we walked through the construction of a Mobile Expense Approval application for E-Business Suite. The constructed application accessed some pre-staged SOA (SOAP) services, which allowed it to fetch a list of expense reports for a given manager, select the details for a given report, and then approve or reject the report. The mobile development involved the generation of a Web Service Data Control, which allowed us to generate application screens without knowledge of the data providers themselves (in that case the SOAP services). The first workshop then used the data controls in the construction of device independent.amx screens, which are converted to HTML5 and rendered on the given device. Page navigation was defined using drag-and-drop taskflow construction. The goal of this workshop is twofold; to add security functionality to the Expense Approval application through Oracle API Gateway (OAG), and to demonstrate REST services access through Oracle Service Bus (OSB). This will be achieved as follows: 1. We will add a login screen which will send the entered user credentials to an OAG Login service 2. We will maintain the provided OAG security token in our mobile application, and send it along with successive requests to a secured OSB REST service which provides aggregated expense report results. The security model used here is suitable for secure mobile B2C (Business to Customer) access. The lab itself uses HTTP-based communication for simplicity, though when implementing your own secure applications you should use HTTPS to encrypt all network traffic. Software Used: Oracle SOA Suite 12c Oracle Service Bus 12c Oracle E-Business Suite Oracle JDeveloper 12c + Latest MAF Patch 3

4 Additional information: Fusion Middleware Best Practice Centers on Oracle Technology Network Whitepaper: Mobility for Oracle Applications with Fusion Middleware Questions: Bruce Bailey 4

5 2 Getting Started 2.1 Environment Setup 1. If you are running JDeveloper on a Linux system then edit the /etc/hosts file to update the IP address entry for the soabpm-vm server your instructor has provided specifically for you. On some lab systems this is already pre-configured. You can test whether the hosts file is configured already by trying to ping the soabpm-vm as shown below prior to editing your windows hosts file. Note: On Windows the host file is located in the C:\WINDOWS\system32\drivers\etc folder. E.g., soabpm-vm.us.oracle.com soabpm-vm 2. Once you have saved your edits of the hosts file it is a good idea to try to ping the soabpm-vm in order to ensure that you can communicate with it. On Windows do this in a cmd (command) window. On Linux use a shell. The output from the ping command should look similar to the following: 3. Disable browser proxies: FireFox: Tools > Options > Network > Settings, select No Proxy IE: Tools > Internet Options > Connections > LAN Settings, uncheck all boxes 5

6 3 Investigate the Login and REST Services During this lab we will be accessing services residing on OAG (Oracle API Gateway) and OSB (Oracle Service Bus). The purpose of OAG is to regulate service requests coming into the enterprise in order to prevent service attacks and ensure that only legitimate requests are accepted and forwarded back to virtualized services residing on Oracle Service Bus. Hence, the typical OAG deployment is within an enterprise s DMZ (de-militarized zone), whereas OSB is integrated directly with back-end applications and other enterprise services. Extensive exploration of OAG and OSB is beyond the scope of this workshop, though Oracle offers other workshops that focus exclusively on the technical and operational aspects of those components. For our purposes OAG hosts an Authentication service and provides secure access to a REST service that resides on Oracle Service Bus. 1. The secured REST service returns a rolled-up list of expense reports for a manager. The service can be accessed by typing the following URL (with the sample user WTUCKER provided as an input parameter) into a browser. TIP: These URLs are provided in a text file called Lab2-URLs.txt in the top level project directory for the hands-on lab #2, e.g., C:\HOL9304\Lab2 2. Open up a browser and input the REST service URL. Notice that when you do you are prompted for login credentials by OAG, and that OAG s defined security realm is called DefaultRealm. We will specify this security realm later on in this workshop. Click Cancel. 6

7 The other OAG service is the Login service which is located here: 3. Type the URL for the Login service into your browser. You will again be prompted for credentials. Use the following credentials to log into the service: User Name: demouser Password: welcome1 Click OK Upon successful authentication OAG passes a login token back to your browser in a cookie. Your browser window should display the following: 4. Now re-enter the URL for the secured REST service into your browser. 7

8 5. When you enter the URL, your browser will pass your credentials back to OAG along with the HTTP request. OAG will recognize the authenticated, established session and this time will forward the request to the OSB server hosting the REST Chart Service. The OSB REST service is a virtualized service in that OSB acts as a mediator by providing whatever client endpoint type is needed by the service consumer. In this case OSB provides REST access to a SOAP service endpoint running on a SOA server, which itself is integrated with the EBS back-end. The SOA Server will then interface with EBS in order to retrieve the aggregated list of expense reports, and will return the results via SOAP to OSB. OSB then converts this SOAP response to REST and returns the data back through the secured OAG interface to your browser. The data returned by the service should look something like the following: Close your browser window and proceed to the next section. 8

9 4 Build the Secured REST Data Control 4.1 Start Oracle JDeveloper Start > Oracle JDeveloper Studio. Alternately, locate the JDeveloper icon on the desktop and doubleclick on it. 2. In JDeveloper disable any proxy settings, via Tools > Preferences > Web Browser and Proxy > uncheck Use HTTP Proxy Server (this may already be configured) 4.2 Open the ExpensesApproval App In the previous workshop we built the Expense Approval Mobile Application which fetches a list of outstanding expense reports for a given manager, and then allows the manager to select details for a specific report. In this workshop we will add a login screen to the application as well as a screen which fetches a rolledup list of reports from the secured rest service (using the security token obtained during the login process) and displays them in a graphical chart. If you already have JDeveloper open with the ExpenseApproval application from the previous lab (Lab1) then you can skip the rest of this section and go to 4.3 Create REST Service Data Control section. If you did not complete Lab1 or are simply interested in how to add login and secure service access to the MAF app then you need to start with the Lab1 solution in order to begin Lab2. In this case: 1. Navigate back to the Lab1 directory and unzip the ExpensesApprovalApplication-Lab1-Solution.7z file (or alternately, if the unzipped ExpensesApprovalApplication-Lab1-Solution folder already exists then don t bother with the unzip). Copy the ExpensesApprovalApplication-Lab1-Solution folder. 9

10 2. Now go back to the Lab2 folder and paste the copy of the Lab1 solutions folder there. 3. Finally, rename the ExpensesApprovalApplication-Lab1-Solution folder to ExpensesApprovalApplication 10

11 4. From the top menu bar of JDeveloper select File > Open and navigate to your top Level JDeveloper project directory for the 2 nd lab, e.g., C:\HOL9304\Lab2\ExpensesApprovalApplication\ExpensesApprovalApplication.jws Select the ExpensesApprovalApplication.jws project file and click Open. 5. Since the Lab1 solution that we are starting with here was generated on a different system, we need to update a directory path in the project so that it matches the location where you copied the lab projects on your own machine. In the Applications navigator expand the project structure as follows: ViewController > Application Sources > mobile Double-click on the DataControls.dcx file to open it up in the editor and click on the Source tab at the bottom to get to the data control definition source. 11

12 6. Locate the line referencing the RetrieveExpenseListResponse.xsd file and modify it to reflect the location of the Lab1 directory and schema file on your own system. If you are on a Mac then use the corresponding unix directory path (remove the C: windows directory designation) SchemaLocation="file:/C:/HOL9304/Lab1/RetrieveExpenseListResponse.xsd" ensurekeyattribute="true" 7. Now do a File > Save All to save your work 8. Expand the RetrieveExpensesList data control in the Data Controls pane on the left side of JDeveloper to verify that the new schema location is valid. If the directory path was not modified correctly in the previous step then you will not be able to see the data control structure shown in the screenshot below. 12

13 4.3 Create REST Service Data Control 1. In JDeveloper navigate to the Application hierarchy view and right-mouse click on the ViewController. In the context menu select New > From Gallery 13

14 2. On the left hand side set the Category to Data Controls and then click on Web Service Data Control (SOAP/REST) on the right. Click OK. 14

15 3. In the Create Web Service Data Control wizard do the following: Enter ExpensesChartData in the Name: field Select the REST radio button 4. Add a REST service Connection by clicking the green + icon. 5. In the Create REST Connection Pop-up screen enter the following data. The URL Endpoint is the same as what we accessed via the browser earlier. Name: OAGSecureAPIsConnection URL Endpoint: 15

16 6. Click the Test Connection Button. Note that since the service is secured it asks you for your credentials. Input the same credentials you used for the auth service previously User Name: demouser Password: welcome1 Click OK and observer that the connection test succeeds as shown below, however don t click OK on the Create REST Connection screen just yet. 16

17 7. Now go back and edit the URL Endpoint to remove the /ChartingData?manager_name=WTUCKER part of the URL that you used for the test. The final URL Endpoint should look like the following Click OK 8. Click the Next Button in the Data Control screen to move onto the next step. 17

18 9. Now, on the Resource screen click the green + icon to add a resource path. 18

19 10. Double-click on /path0 in order edit the newly added resources path value. Change it to the value shown below. NOTE: Use the following Resource Path literally, e.g., DO NOT modify this to include your assigned user ID. This has the effect of parameterizing the part of the URL that we stripped off in the previous step. Resource Paths: /ChartingData?manager_name=##managerName## 11. Now select the GET method checkbox and type in chartingdata for the Method Display Name. Click Next 19

20 12. Under the Resource Methods: heading select the chartingdata Resource Method that you specified in the previous step. 13. REST services can return different typs of payloads, such as JSON or XML. This particular service returns XML, so we need to provide a schema file describing the payload format. Click on the magnifying glass to the right of the Response XSD: field and browse to the Response XSD file, RetrieveChartDataResponse.xsd e.g., C:\HOL9304\Lab2\RetrieveChartDataResponse.xsd Once you have selected the schema file click on Open 20

21 14. Click Next to move to the last screen. 15. Click Finish button on the last screen to complete the generation of the data control. Click on File > Save All or alternatively click on the icon that looks like a stack of floppy disks in order to save all of your work. 21

22 16. Navigate to connections.xml, the file where your mobile application s service connections are maintained. Double-click on the connections.xml file and scroll to the bottom when it is displayed in the main editor window. 17. You should see your new OAGSecureAPIsConnection defined near the bottom of the file. 18. Save your work by going to the top menu and clicking File -> Save All or by clicking on the stack-offloppy-disks icon. 22

23 4.4 Use our REST Data Control to Generate a Pie Chart 1. On the left hand side of JDeveloper click on the + Plus sign to expand the Data Controls accordion 2. The complete list of Data Controls is now displayed. You may have to click on the blue, circular arrows in order to refresh the display. 3. Expand the ExpensesChartData Data Control. 23

24 4. Next, expand the ViewController node in the Application Navigator (upper left hand side of JDeveloper) as follows: ViewController > Web Content > ExpensesApproval. Double click on the ExpensesApproval.xml TaskFlow file. You should see the application taskflow open up in the main window as shown below. The task flow represents the state of the application that was completed at the end of the first workshop. Our next job will be to complete the ShowGraph screen with data coming from our secured REST service. 5. Double click on the ShowGraph View in the TaskFlow editor. This will bring up the ShowGraph.amx file in the editor. To make things simple, add a blank line (<carriage return>) before the </amx:panelpage> tag as shown in the next picture. If you want, you can also drag the small vertical bar (highlighted below) to the left, about ½ way across the screen to split the editor into 2 halves. 24

25 6. If you have split the editor screen you can then click on the Preview tab at the bottom of the righthand view in order to see a rendered view of the AMX page that you are working on. 25

26 7. In this next step we will bind the output from our REST data control to the ShowGraph page. From the Data Control accordion view on the left, drag the P_EXP_AMOUNT_LINES_ITEM node and drop it in the blank space we created above the </amx:panelpage> amx tag. A context menu will pop-up when you release the mouse button. Select MAF Chart from the context menu. 26

27 8. Select the Pie Chart from the Component Gallery and click OK. 27

28 9. For the input Value type in the name WTUCKER and click OK. This is the parameter that will be passed to the REST Service via the data control upon invocation. Recall that this was the input parameter that we used to test the REST connection we created earlier when we built the data control. Although we are hard-coding the value of WTUCKER here, in a real application we would typically fetch this from an application property that is dynamically updated when the user logs into the application. 10. For the value represented by the complete Pie select TOTAL from the Pie: drop-down menu. 28

29 11. For the individual Slices: drag USER_NAME from the Available data list on the left over to the empty Slices: text input box on the right. 12. Our Pie Chart definition is complete. Click OK. 29

30 13. Select Pie Data Item in the Structure panel. 30

31 14. Enter #{row.user_name} for the Short Desc, Label, and Slice Label Properties (you can copy and paste this from the Slice ID field) 15. A rendered view of the ShowGraph.amx page is now displayed. Save your work either via File > Save All, or by clicking on the stack-of-floppy-disks icon as before. 31

32 5 Add Authentication The final thing that we need to do is add the Login screen to our application and associate it with the OAG Login service that we experimented with earlier. Upon successful login the Oracle Mobile Platform will store the authentication token in a local credential store so that it can be injected into the header of successive service calls we make to our secured services after login (in our case the REST ExpensesChart service). The first step is to select the mobile feature that we want to secure. In this case we want to secure the entire ExpensesApproval taskflow. 5.1 Secure the Application with a Login Page 1. Go back to the Application Navigator and expand the META-INF node underneath Application Sources. ViewController > Application Sources > META-INF 32

33 2. Double-click on the maf-feature.xml file to open it up in the main editor window. 3. Select the ExpensesApproval feature in the top list, and then click on the Enable Security checkbox. Save your work either via File > Save All, or by clicking on the stack-of-floppy-disks icon as before. 33

34 5.2 Create the Login Service Connection 1. Expand the Application Resources accordion menu (below the Application Navigator). Expand the Descriptors node as follows: Descriptors > ADF META-INF and double-click on the maf-application.xml file to bring it up in the main editor window. 2. When the maf-application editor displays click on the Security tab on the left and then click on the green + sign to create a Login Server connection 34

35 3. In the Create MAF Login Connection Name Connection Screen make sure the General tab is selected and specify a of OAGLoginService. Click on the Authentication Server Type: dropdown menu and notice the different types of login servers that are supported such as HTTP Basic (what we are using in this lab), Mobile-Social, Oauth, and Web-SSO. Make sure you leave the type set to HTTP Basic when you are done inspecting the different values 4. Un-check the box to the left of Include basic authentication header in HTTP requests, and leave the other settings on this tab as default. Notice that the checkbox next to the Include login server cookie in REST calls remains checked. This will allow MAF to automatically inject the proper security token into calls to secured services. 35

36 5. Click on the HTTP Basic tab and enter the URL to the authentication service we accessed earlier during this lab. Use the same URL for both the Login URL and Logout URL values Login URL: Logout URL: Click the Test Connection button to make sure your Login/Logout connection URLs are correct and then click OK to complete the connection definition Save your work as before and then continue to the next section. 36

37 5.3 Configure REST Requests for Credential Injection 1. Go back under the Application Resources accordion menu and double-click on the connections.xml file. This will pull up the connections.xml file in the main editor window. The connections file contains information about all of the connections required by our mobile application. 2. Scroll down to the bottom of the connections.xml file and you will see both our OAGSecureAPIsConnection and OAGLoginService connection. Notice that the name of the adfcredentialstorekey property is OAGLoginService. This is the name of our mobile application s credential store, a logical name our application uses to access credentials that are needed for secured service access. connections.xml 37

38 3. Now select the OAGSecureAPIsConnection name as shown and you will notice that the properties for the connection are displayed in the Properties editor. connections.xml 4. In the Properties editor input the name OAGLoginService for the adfcredentialstorekey and then do a File > Save. 38

39 5. Notice that in the connections.xml file the adfcrendentialstorekey property has now been added to the OAGSecureAPIsConnection definition as shown next. connections.xml 39

40 6. Now we need to go through the connections.xml file and substitute the IP address of soabpm-vm for every occurrence of soabpm-vm in the file. This is required because although JDeveloper was able to utilize the /etc/hosts file we configured in Section 2, once the application is deployed to a mobile device that device will not have the luxury of the hostname resolution which is available on our development system. Go to the main menu and click on Search -> Replace in Files Update the fields as follows: Search Text: soabpm-vm Replace With: < IP address for the SOA server that you used in Section 2 > Note that this address may be different than what is shown in the screenshot below. Click on OK to perform the substitution. 7. Click the green play button in the Replace in Files output window (below the main, editor window) to perform the string substitution throughout the application. Inspect the connections.xml file to ensure that the SOA server s hostname is replaced as desired. Do a Save All to save all of your work as done previously 40

41 6 Deploy and Test the Application 1. Make sure the Android Emulator is running first so that you are ready to deploy the mobile application. If you already did this in the previous lab you can skip over the next few steps where we create a new Deployment Profile. Click Application > Deploy > New Deployment Profile from the main menu. 2. Select MAF for Android from the dropdown menu in the Create Deployment Profile wizard here. When JDeveloper is configured for mobile development specifying the target platform (e.g., ios or Android) specifying an Android or ios target is as easy as selecting the desired result in the dropdown menu here. Name the profile MyAndroidProfile and click OK. 41

42 3. Stick with the defaults and click OK. 42

43 4. Now we re finally ready to deploy our mobile application! Go back to the main menu and choose Application > Deploy > (Substitute the name of the profile you just created here) 5. From the Deployment Action wizard click on the drop-down menu and select Deploy Application to Emulator and then click Finish. The deployment may take a while (the Google emulator is very slow). 43

44 6. Once the Deployment Tab says that the deployment is completed, open up the Android Emulator window on your system. Use a sweep gesture with your mouse to sweep the lock off of the emulator screen. This has the effect of unlocking the screen lock on the device. 7. In the bottom center of the screen, click on the white circle with the 6 dots inside to bring up the applications installed into the emulator. When the applications screen comes up click on your newly deployed ExpensesApprovalApplication. Again, due to the emulator s performance, it will take several minutes for the application to build and launch. 44

45 8. When the application launches you should be presented with a Login screen. Try inputting an incorrect user ID and password to see what happens. Then, input your assigned userid and password to access the application (e.g., demouser / welcome1) and then click Login 9. Upon successful login you should see the expense reports listed. Click on one of the reports to go to the Details screen. 45

46 10. From the details screen click on the Graph button to navigate to the ShowGraph screen. This screen will access the secured REST service by passing the security token obtained when we logged into the application. Congratulations you have completed the Mobile Security Lab! 46

3 Connecting to Applications

3 Connecting to Applications 3 Connecting to Applications 3 Connecting to Applications...1 3.1 Prerequisites...1 3.2 Introduction...1 3.2.1 Pega, the Widget Supplier...2 3.2.2 Mega, the Widget Procurer...2 3.3 Create Requisition...3

More information

1 Getting Started with Oracle Service Bus

1 Getting Started with Oracle Service Bus 1 Getting Started with Oracle Service Bus 1 Getting Started with Oracle Service Bus...1 1.1 Prerequisites...1 1.2 Introduction...1 1.2.1 High-level Steps...3 1.3 Setup and Deploy Composites...4 1.3.1 URLs

More information

Oracle Enterprise Manager 11g Ops Center 2.5 Hands-on Lab

Oracle Enterprise Manager 11g Ops Center 2.5 Hands-on Lab Oracle Enterprise Manager 11g Ops Center 2.5 Hands-on Lab Introduction to Enterprise Manager 11g Oracle Enterprise Manager 11g is the centerpiece of Oracle's integrated IT management strategy, which rejects

More information

Hands-On Lab. Lab: Developing BI Applications. Lab version: Last updated: 2/23/2011

Hands-On Lab. Lab: Developing BI Applications. Lab version: Last updated: 2/23/2011 Hands-On Lab Lab: Developing BI Applications Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: USING THE CHARTING WEB PARTS... 5 EXERCISE 2: PERFORMING ANALYSIS WITH EXCEL AND

More information

Oracle Enterprise Manager Oracle Database and Application Testing. Application Testing Suite Lab. Session S318966

Oracle Enterprise Manager Oracle Database and Application Testing. Application Testing Suite Lab. Session S318966 Oracle Enterprise Manager Oracle Database and Application Testing Application Testing Suite Lab Session S318966 Oracle Enterprise Manager 11g Application Testing Suite 9.1 Hands on Lab Introduction to

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Using Oracle Eloqua Cloud Adapter Release 12.2.1.1.0 E73562-01 June 2016 Oracle Fusion Middleware Using Oracle Eloqua Cloud Adapter, Release 12.2.1.1.0 E73562-01 Copyright 2015,

More information

Ektron Advanced. Learning Objectives. Getting Started

Ektron Advanced. Learning Objectives. Getting Started Ektron Advanced 1 Learning Objectives This workshop introduces you beyond the basics of Ektron, the USF web content management system that is being used to modify department web pages. This workshop focuses

More information

VMware AirWatch - Workspace ONE, Single Sign-on and VMware Identity Manager

VMware AirWatch - Workspace ONE, Single Sign-on and VMware Identity Manager VMware AirWatch - Workspace ONE, Single Sign-on and VMware Identity Table of Contents Lab Overview - HOL-1857-03-UEM - Workspace ONE UEM with App & Access Management... 2 Lab Guidance... 3 Module 1 - Workspace

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Using Oracle Eloqua Cloud Adapter Release 12.2.1.3.0 E83336-02 July 2017 Documentation for Oracle Service-Oriented Architecture (SOA) developers that describes how to use the Oracle

More information

H. Adding BAM Activity Sensors

H. Adding BAM Activity Sensors H. Adding BAM Activity Sensors H.1. Introduction Note: The solution for this chapter can be found in c:\po\solutions\aph-bam To run this solution, you must have completed labs through chapter 9. Alternatively,

More information

BEAWebLogic. Portal. Tutorials Getting Started with WebLogic Portal

BEAWebLogic. Portal. Tutorials Getting Started with WebLogic Portal BEAWebLogic Portal Tutorials Getting Started with WebLogic Portal Version 10.2 February 2008 Contents 1. Introduction Introduction............................................................ 1-1 2. Setting

More information

Oracle BPEL Tutorial

Oracle BPEL Tutorial Oracle BPEL Tutorial This exercise introduces you to the Business Process Execution (BPEL) language, the Oracle JDeveloper BPEL Designer and to the Oracle BPEL Process Manager engine. INSTALL JDEVELOPER

More information

Introduction... 5 Configuring Single Sign-On... 7 Prerequisites for Configuring Single Sign-On... 7 Installing Oracle HTTP Server...

Introduction... 5 Configuring Single Sign-On... 7 Prerequisites for Configuring Single Sign-On... 7 Installing Oracle HTTP Server... Oracle Access Manager Configuration Guide for On-Premises Version 17 October 2017 Contents Introduction... 5 Configuring Single Sign-On... 7 Prerequisites for Configuring Single Sign-On... 7 Installing

More information

Workspace ONE UEM Certificate Authentication for EAS with ADCS. VMware Workspace ONE UEM 1902

Workspace ONE UEM Certificate Authentication for EAS with ADCS. VMware Workspace ONE UEM 1902 Workspace ONE UEM Certificate Authentication for EAS with ADCS VMware Workspace ONE UEM 1902 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Oracle SOA Suite 11. Hands-On Workshop VM Intro / Demo / Deployment

Oracle SOA Suite 11. Hands-On Workshop VM Intro / Demo / Deployment Oracle SOA Suite 11 Hands-On Workshop VM Intro / Demo / Deployment Before you begin General notes: 1. All notable references, functions or actions to be performed by the student (for example, text to be

More information

NetBackup 7.6 Replication Director A Hands On Experience

NetBackup 7.6 Replication Director A Hands On Experience NetBackup 7.6 Replication Director A Hands On Experience Description Through this hands on lab you can test drive Replication Director and experience for yourself this easy to use, powerful feature. Once

More information

Table of Contents HOL-1757-MBL-6

Table of Contents HOL-1757-MBL-6 Table of Contents Lab Overview - - VMware AirWatch: Technology Partner Integration... 2 Lab Guidance... 3 Module 1 - F5 Integration with AirWatch (30 min)... 8 Getting Started... 9 F5 BigIP Configuration...

More information

2015 Beta 2 Tutorials

2015 Beta 2 Tutorials 2015 Beta 2 Tutorials 2015 Beta 2 FOR WINDOWS & UNIX & LINUX Contents 1 Tutorial 2: Config, Deploy & Run the Application... 1 1.1 Task 1: Configure the database type... 1 1.2 Task 2: Configure the database

More information

Quick Start Guide. Kaseya 2

Quick Start Guide. Kaseya 2 LiveConnect Quick Start Guide Kaseya 2 February 13, 2010 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations. Kaseya's

More information

MicroStrategy Academic Program

MicroStrategy Academic Program MicroStrategy Academic Program Creating a center of excellence for enterprise analytics and mobility. HOW TO DEPLOY ENTERPRISE ANALYTICS AND MOBILITY ON AWS APPROXIMATE TIME NEEDED: 1 HOUR In this workshop,

More information

TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud.

TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud. TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud. This tutorial walks through the installation and configuration process to access data from

More information

Nimsoft Service Desk. Single Sign-On Configuration Guide. [assign the version number for your book]

Nimsoft Service Desk. Single Sign-On Configuration Guide. [assign the version number for your book] Nimsoft Service Desk Single Sign-On Configuration Guide [assign the version number for your book] Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document

More information

4 Connecting to Composites

4 Connecting to Composites 4 Connecting to Composites 4 Connecting to Composites...1 4.1 Prerequisites...1 4.2 Introduction...1 4.3 OSB to SOA Suite Direct binding...3 4.3.1 What is being done?...3 4.3.2 Create Direct Binding exposed

More information

Colligo Engage Outlook App 7.1. Connected Mode - User Guide

Colligo Engage Outlook App 7.1. Connected Mode - User Guide 7.1 Connected Mode - User Guide Contents Colligo Engage Outlook App 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Engage Outlook App 2 Checking for Updates 3 Updating

More information

Remote Workspace. Nubo End User Guide. Version: 1.3 Date: June, Copyright 2017 by Nubo Inc. All rights reserved. Page 1

Remote Workspace. Nubo End User Guide. Version: 1.3 Date: June, Copyright 2017 by Nubo Inc. All rights reserved. Page 1 Nubo End User Guide Version: 1.3 Date: June, 2017 Copyright 2017 by Nubo Inc. All rights reserved. Page 1 Table of Contents ABOUT THIS GUIDE... 3 1. REGISTRATION & ACTIVATION... 4 A. Install the Nubo App

More information

Center for Faculty Development and Support. Google Docs Tutorial

Center for Faculty Development and Support. Google Docs Tutorial Center for Faculty Development and Support Google Docs Tutorial Table of Contents Overview... 3 Learning Objectives... 3 Access Google Drive... 3 Introduction... 4 Create a Google Document... 4 Upload

More information

Oracle Cloud. Using Oracle Eloqua Adapter Release E

Oracle Cloud. Using Oracle Eloqua Adapter Release E Oracle Cloud Using Oracle Eloqua Adapter Release 12.1.3 E65434-01 August 2015 Oracle Cloud Using Oracle Eloqua Adapter, Release 12.1.3 E65434-01 Copyright 2015, Oracle and/or its affiliates. All rights

More information

edocs Home > BEA AquaLogic Service Bus 3.0 Documentation > Accessing ALDSP Data Services Through ALSB

edocs Home > BEA AquaLogic Service Bus 3.0 Documentation > Accessing ALDSP Data Services Through ALSB Accessing ALDSP 3.0 Data Services Through ALSB 3.0 edocs Home > BEA AquaLogic Service Bus 3.0 Documentation > Accessing ALDSP Data Services Through ALSB Introduction AquaLogic Data Services Platform can

More information

Realms and Identity Policies

Realms and Identity Policies The following topics describe realms and identity policies: Introduction:, page 1 Creating a Realm, page 5 Creating an Identity Policy, page 11 Creating an Identity Rule, page 15 Managing Realms, page

More information

Introduction to IBM Rational HATS For IBM System i (5250)

Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a Web application capable of transforming

More information

Introduction to Cognos

Introduction to Cognos Introduction to Cognos User Handbook 7800 E Orchard Road, Suite 280 Greenwood Village, CO 80111 Table of Contents... 3 Logging In To the Portal... 3 Understanding IBM Cognos Connection... 4 The IBM Cognos

More information

Using Dropbox with Node-RED

Using Dropbox with Node-RED Overview Often when using Platform services, you need to work with files for example reading in a dialog xml file for Watson Dialog or feeding training images to Watson Visual Recognition. While you can

More information

GreenFolders User Manual

GreenFolders User Manual GreenFolders User Manual Welcome! Welcome to GreenFolders the Electronic Records Management Solution. GreenFolders allows you to store and retrieve files with many easy-to-use features for working with

More information

Remote Deposit Capture (CC21) Software Installation Guide for Firefox or Internet Explorer

Remote Deposit Capture (CC21) Software Installation Guide for Firefox or Internet Explorer Remote Deposit Capture (CC21) Software Installation Guide for Firefox or Internet Explorer Part 1 - UNINSTALL PREVIOUS APPLICATION AND SCANNER 1. Save any work you may have open on your PC 2. Be sure to

More information

Table of Contents. VMware AirWatch: Technology Partner Integration

Table of Contents. VMware AirWatch: Technology Partner Integration Table of Contents Lab Overview - HOL-1857-08-UEM - Workspace ONE UEM - Technology Partner Integration... 2 Lab Guidance... 3 Module 1 - F5 Integration with Workspace ONE UEM (30 min)... 9 Introduction...

More information

Integrating IBM Security Privileged Identity Manager with ObserveIT Enterprise Session Recording

Integrating IBM Security Privileged Identity Manager with ObserveIT Enterprise Session Recording Integrating IBM Security Privileged Identity Manager with ObserveIT Enterprise Session Recording Contents 1 About This Document... 2 2 Overview... 2 3 Before You Begin... 2 4 Deploying ObserveIT with IBM

More information

Table of Contents HOL-1757-MBL-5

Table of Contents HOL-1757-MBL-5 Table of Contents Lab Overview - - VMware AirWatch: Mobile App Management and App Development... 2 Lab Guidance... 3 Module 1 - Introduction to AppConfig (30 minutes)... 8 Login to the AirWatch Console...

More information

Anchor User Guide. Presented by: Last Revised: August 07, 2017

Anchor User Guide. Presented by: Last Revised: August 07, 2017 Anchor User Guide Presented by: Last Revised: August 07, 2017 TABLE OF CONTENTS GETTING STARTED... 1 How to Log In to the Web Portal... 1 How to Manage Account Settings... 2 How to Configure Two-Step Authentication...

More information

GRS Enterprise Synchronization Tool

GRS Enterprise Synchronization Tool GRS Enterprise Synchronization Tool Last Revised: Thursday, April 05, 2018 Page i TABLE OF CONTENTS Anchor End User Guide... Error! Bookmark not defined. Last Revised: Monday, March 12, 2018... 1 Table

More information

IBM Software. IBM Forms V8.0. Forms Experience Builder - Portal Integration. Lab Exercise

IBM Software. IBM Forms V8.0. Forms Experience Builder - Portal Integration. Lab Exercise IBM Forms V8.0 Forms Experience Builder - Portal Integration Lab Exercise Catalog Number Copyright IBM Corporation, 2012 US Government Users Restricted Rights - Use, duplication or disclosure restricted

More information

My Sysco Reporting Job Aid for CMU Customers. My Sysco Reporting. For CMU Customers (Serviced by Program Sales)

My Sysco Reporting Job Aid for CMU Customers. My Sysco Reporting. For CMU Customers (Serviced by Program Sales) My Sysco Reporting For CMU Customers (Serviced by Program Sales) 1 Accessing My Sysco Reporting... 2 Logging In... 2 The Reporting Dashboard... 3 My Sysco Reporting Process... 6 Generating a Report...

More information

Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3

Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3 Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3 From Cisco s website, here are the minimum requirements for CCP 2.7 and CCP 2.8: The following info comes from many

More information

We start by providing you with an overview of the key feature of the IBM BPM Process Portal.

We start by providing you with an overview of the key feature of the IBM BPM Process Portal. Lab 1 Process Portal 1.1 Overview This lab exercise will make you familiar with the key capabilities of the ready-to-use Process Portal included with IBM Business Process Manager (BPM). You will experience

More information

Coveo Platform 7.0. Microsoft SharePoint Legacy Connector Guide

Coveo Platform 7.0. Microsoft SharePoint Legacy Connector Guide Coveo Platform 7.0 Microsoft SharePoint Legacy Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds

More information

IT Essentials v6.0 Windows 10 Software Labs

IT Essentials v6.0 Windows 10 Software Labs IT Essentials v6.0 Windows 10 Software Labs 5.2.1.7 Install Windows 10... 1 5.2.1.10 Check for Updates in Windows 10... 10 5.2.4.7 Create a Partition in Windows 10... 16 6.1.1.5 Task Manager in Windows

More information

VMware AirWatch: Directory and Certificate Authority

VMware AirWatch: Directory and Certificate Authority Table of Contents Lab Overview - HOL-1857-06-UEM - VMware AirWatch: Directory and Certificate Authority Integration... 2 Lab Guidance... 3 Module 1 - Advanced AirWatch Configuration, AD Integration/Certificates

More information

owncloud Android App Manual

owncloud Android App Manual owncloud Android App Manual Release 2.7.0 The owncloud developers October 30, 2018 CONTENTS 1 Release Notes 1 1.1 Changes in 2.7.0............................................. 1 1.2 Changes in 2.6.0.............................................

More information

CONFIGURING BASIC MACOS MANAGEMENT: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE

CONFIGURING BASIC MACOS MANAGEMENT: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE GUIDE FEBRUARY 2019 PRINTED 26 FEBRUARY 2019 CONFIGURING BASIC MACOS MANAGEMENT: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE Table of Contents Overview Introduction Purpose Audience

More information

SCHULICH MEDICINE & DENTISTRY Website Updates August 30, Administrative Web Editor Guide v6

SCHULICH MEDICINE & DENTISTRY Website Updates August 30, Administrative Web Editor Guide v6 SCHULICH MEDICINE & DENTISTRY Website Updates August 30, 2012 Administrative Web Editor Guide v6 Table of Contents Chapter 1 Web Anatomy... 1 1.1 What You Need To Know First... 1 1.2 Anatomy of a Home

More information

Production Assistance for Cellular Therapies (PACT) PACT Application System User s Guide

Production Assistance for Cellular Therapies (PACT) PACT Application System User s Guide Production Assistance for Cellular Therapies (PACT) PACT Application System User s Guide Version 1.0 February 9, 2017 Version 1.0 TABLE OF CONTENTS 1.0 Getting Started... 1 1.1 Access to the Internet...

More information

Login: Quick Guide for Qualtrics May 2018 Training:

Login:   Quick Guide for Qualtrics May 2018 Training: Qualtrics Basics Creating a New Qualtrics Account Note: Anyone with a Purdue career account can create a Qualtrics account. 1. In a Web browser, navigate to purdue.qualtrics.com. 2. Enter your Purdue Career

More information

In this lab, you will build and execute a simple message flow. A message flow is like a program but is developed using a visual paradigm.

In this lab, you will build and execute a simple message flow. A message flow is like a program but is developed using a visual paradigm. Lab 1 Getting Started 1.1 Building and Executing a Simple Message Flow In this lab, you will build and execute a simple message flow. A message flow is like a program but is developed using a visual paradigm.

More information

Sync User Guide. Powered by Axient Anchor

Sync User Guide. Powered by Axient Anchor Sync Powered by Axient Anchor TABLE OF CONTENTS End... Error! Bookmark not defined. Last Revised: Wednesday, October 10, 2018... Error! Bookmark not defined. Table of Contents... 2 Getting Started... 7

More information

Colligo Console. Administrator Guide

Colligo Console. Administrator Guide Colligo Console Administrator Guide Contents About this guide... 6 Audience... 6 Requirements... 6 Colligo Technical Support... 6 Introduction... 7 Colligo Console Overview... 8 Colligo Console Home Page...

More information

SQL Server Reporting Services (SSRS) is one of SQL Server 2008 s

SQL Server Reporting Services (SSRS) is one of SQL Server 2008 s Chapter 9 Turning Data into Information with SQL Server Reporting Services In This Chapter Configuring SQL Server Reporting Services with Reporting Services Configuration Manager Designing reports Publishing

More information

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide Multi-Sponsor Environment SAS Clinical Trial Data Transparency User Guide Version 6.0 01 December 2017 Contents Contents 1 Overview...1 2 Setting up Your Account...3 2.1 Completing the Initial Email and

More information

Ion Client User Manual

Ion Client User Manual Ion Client User Manual Table of Contents About Ion Protocol...3 System Requirements... 4 Hardware (Client)... 4 Hardware (Server Connecting to)... 4 Software (Ion Client)... 4 Software (Server Connecting

More information

Agent and Agent Browser. Updated Friday, January 26, Autotask Corporation

Agent and Agent Browser. Updated Friday, January 26, Autotask Corporation Agent and Agent Browser Updated Friday, January 26, 2018 2018 Autotask Corporation Table of Contents Table of Contents 2 The AEM Agent and Agent Browser 3 AEM Agent 5 Privacy Mode 9 Agent Browser 11 Agent

More information

Just Get It Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Hands on Practice

Just Get It Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Hands on Practice This hands on practice describes the steps for deploying an existing Java EE application written with Oracle ADF technologies. Although the practice refers to specific features and files in a sample application

More information

IBM WebSphere Java Batch Lab

IBM WebSphere Java Batch Lab IBM WebSphere Java Batch Lab What are we going to do? First we are going to set up a development environment on your workstation. Download and install Eclipse IBM WebSphere Developer Tools IBM Liberty

More information

Partner Integration Portal (PIP) Installation Guide

Partner Integration Portal (PIP) Installation Guide Partner Integration Portal (PIP) Installation Guide Last Update: 12/3/13 Digital Gateway, Inc. All rights reserved Page 1 TABLE OF CONTENTS INSTALLING PARTNER INTEGRATION PORTAL (PIP)... 3 DOWNLOADING

More information

Contents Introduction... 5 Configuring Single Sign-On... 7 Configuring Identity Federation Using SAML 2.0 Authentication... 29

Contents Introduction... 5 Configuring Single Sign-On... 7 Configuring Identity Federation Using SAML 2.0 Authentication... 29 Oracle Access Manager Configuration Guide 16 R1 March 2016 Contents Introduction... 5 Configuring Single Sign-On... 7 Prerequisites for Configuring Single Sign-On... 8 Installing Oracle HTTP Server...

More information

BUILD YOUR OWN SAP FIORI APP IN THE CLOUD Exercise Week 5

BUILD YOUR OWN SAP FIORI APP IN THE CLOUD Exercise Week 5 BUILD YOUR OWN SAP FIORI APP IN THE CLOUD Exercise Week 5 Create an App from a Smart Template and Annotation File 1 INTRODUCTION 1.1 Goal Smart Templates in the SAP Web IDE of the SAP HANA Cloud Platform

More information

goremote.carolinas.org

goremote.carolinas.org Detailed instructions for goremote.carolinas.org Section 1. Registering your account in the goremote portal To setup your access to goremote.carolinas.org, please follow these steps: Open a browser window

More information

emam and Adobe Premiere Panel Guide

emam and Adobe Premiere Panel Guide emam and Adobe Premiere Panel Guide Version 3.8 April, 2017 Notice The content in this document represents the current view of Empress Media Asset Management, LLC as of the date of publication. As Empress

More information

CIS 231 Windows 7 Install Lab #2

CIS 231 Windows 7 Install Lab #2 CIS 231 Windows 7 Install Lab #2 1) To avoid certain problems later in the lab, use Chrome as your browser: open this url: https://vweb.bristolcc.edu 2) Here again, to avoid certain problems later in the

More information

SecurEnvoy Microsoft Server Agent

SecurEnvoy Microsoft Server Agent SecurEnvoy Microsoft Server Agent SecurEnvoy Global HQ Merlin House, Brunel Road, Theale, Reading. RG7 4TY Tel: 0845 2600010 Fax: 0845 260014 www.securenvoy.com SecurEnvoy Microsoft Server Agent Installation

More information

Copyright 2014, Oracle and/or its affiliates. All rights reserved.

Copyright 2014, Oracle and/or its affiliates. All rights reserved. 1 Introduction to the Oracle Mobile Development Platform Dana Singleterry Product Management Oracle Development Tools Global Installed Base: PCs vs Mobile Devices 3 Mobile Enterprise Challenges In Pursuit

More information

Enterprise Integration

Enterprise Integration Departamento de Engenharia Informática Enterprise Integration BPEL Tutorial IE 2016 In this tutorial, we shall create a simple BPEL process in JDeveloper 11g, deploy and test the SOA application. 1. Open

More information

Akana API Platform: Upgrade Guide

Akana API Platform: Upgrade Guide Akana API Platform: Upgrade Guide Version 8.0 to 8.2 Akana API Platform Upgrade Guide Version 8.0 to 8.2 November, 2016 (update v2) Copyright Copyright 2016 Akana, Inc. All rights reserved. Trademarks

More information

Enter your Appserv username and password to sign in to the Website

Enter your Appserv username and password to sign in to the Website Appserv Desktop Access Logging on from a Windows 10 Device Step 1. To sign in to the Appserv Desktop Access website, either enter the following address into the Microsoft Edge browser address bar, or click

More information

Page 1 of 6 Procedures > Pages > Procedures Use -the-system > MI-generate-report MI - Generate Report I Like It Tags & Notes MI - Generate Report This is an explanation of how to access, view and filter

More information

Bomgar PA Integration with ServiceNow

Bomgar PA Integration with ServiceNow Bomgar PA Integration with ServiceNow 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of

More information

Quick Start Guide. Visual Planning 6 New Features

Quick Start Guide. Visual Planning 6 New Features Visual Planning 6 New Features Contents Chapter 1. ADMIN CENTER... 3 1.1. Admin Center Dashboard... 3 1.2. Planner Menu... 3 1.3. Document storage and file navigator... 3 1.4. Connection history... 3 1.5.

More information

bs^ir^qfkd=obcib`qflk= prfqb=clo=u

bs^ir^qfkd=obcib`qflk= prfqb=clo=u bs^ir^qfkd=obcib`qflk= prfqb=clo=u cçê=u=táåççïë=póëíéãë cçê=lééåsjp=eçëíë cçê=f_j=eçëíë 14.1 bî~äì~íáåö=oéñäéåíáçå=u This guide provides a quick overview of features in Reflection X. This evaluation guide

More information

Roxen Content Provider

Roxen Content Provider Roxen Content Provider Generation 3 Templates Purpose This workbook is designed to provide a training and reference tool for placing University of Alaska information on the World Wide Web (WWW) using the

More information

Introduction & Navigation

Introduction & Navigation Introduction & Navigation Logging In to Marketing Cloud 1. Open a tab in either the Chrome or Firefox web browser. 2. Place your cursor in the URL bar then type mc.exacttarget.com. 3. Strike the Enter

More information

ForeScout CounterACT. Configuration Guide. Version 3.4

ForeScout CounterACT. Configuration Guide. Version 3.4 ForeScout CounterACT Open Integration Module: Data Exchange Version 3.4 Table of Contents About the Data Exchange Module... 4 About Support for Dual Stack Environments... 4 Requirements... 4 CounterACT

More information

Lab 1: Getting Started with IBM Worklight Lab Exercise

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

More information

Oracle Access Manager Configuration Guide

Oracle Access Manager Configuration Guide Oracle Access Manager Configuration Guide 16 R2 September 2016 Contents Introduction... 5 Configuring Single Sign-On... 7 Prerequisites for Configuring Single Sign-On... 7 Installing Oracle HTTP Server...

More information

RSA SecurID Ready Implementation Guide. Last Modified: December 13, 2013

RSA SecurID Ready Implementation Guide. Last Modified: December 13, 2013 Ping Identity RSA SecurID Ready Implementation Guide Partner Information Last Modified: December 13, 2013 Product Information Partner Name Ping Identity Web Site www.pingidentity.com Product Name PingFederate

More information

DSS User Guide. End User Guide. - i -

DSS User Guide. End User Guide. - i - DSS User Guide End User Guide - i - DSS User Guide Table of Contents End User Guide... 1 Table of Contents... 2 Part 1: Getting Started... 1 How to Log in to the Web Portal... 1 How to Manage Account Settings...

More information

Managing your content with the Adobe Experience Manager Template Editor. Gabriel Walt Product Manager twitter.com/gabrielwalt

Managing your content with the Adobe Experience Manager Template Editor. Gabriel Walt Product Manager twitter.com/gabrielwalt Managing your content with the Adobe Experience Manager Template Editor Gabriel Walt Product Manager twitter.com/gabrielwalt Table of Contents 1. Introduction 3 1.1 Overview 3 1.2 Prerequisites 3 2. Getting

More information

User Guide Using AuraPlayer

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

More information

NetBrain Technologies Inc. NetBrain Consultant Edition. Quick Start Guide

NetBrain Technologies Inc. NetBrain Consultant Edition. Quick Start Guide NetBrain Technologies Inc. NetBrain Consultant Edition Quick Start Guide Content 1. Install NetBrain Workstation CE System... 3 1.1 Install and Activate NetBrain Gateway Server... 5 1.2 Install Workstation...

More information

NetScaler Analysis and Reporting. Goliath for NetScaler Installation Guide v4.0 For Deployment on VMware ESX/ESXi

NetScaler Analysis and Reporting. Goliath for NetScaler Installation Guide v4.0 For Deployment on VMware ESX/ESXi NetScaler Analysis and Reporting Goliath for NetScaler Installation Guide v4.0 For Deployment on VMware ESX/ESXi (v4.0) Document Date: October 2016 www.goliathtechnologies.com 1 Legal Notices Goliath for

More information

Wireless Setup Instructions

Wireless Setup Instructions Wireless Setup Instructions THESE INSTRUCTIONS ARE VERY IMPORTANT TO SECURE YOUR WIRELESS NETWORK The purpose of this procedure is to "lock" your router so other users can not access your network without

More information

Website Management with the CMS

Website Management with the CMS Website Management with the CMS In Class Step-by-Step Guidebook Updated 12/22/2010 Quick Reference Links CMS Login http://staging.montgomerycollege.edu/cmslogin.aspx Sample Department Site URLs (staging

More information

Nasuni Mobile Access User Guide

Nasuni Mobile Access User Guide Using Nasuni Mobile Access, you can access data stored in the Nasuni Filer using mobile devices, including ios-based devices (such as iphone and ipad) and Android phones. You can perform tasks such as

More information

NovaBACKUP CMon v19.0

NovaBACKUP CMon v19.0 June 2017 NovaBACKUP CMon v19.0 User Manual Features and specifications are subject to change without notice. The information provided herein is provided for informational and planning purposes only. 2017

More information

Supporting Networked Computers

Supporting Networked Computers CHAPTER 7 Supporting Networked Computers After completing this chapter, you will be able to: Define the main concepts of networking, including the roles of TCP/IP, IP addresses, and subnet masks. Set up

More information

End User Manual. December 2014 V1.0

End User Manual. December 2014 V1.0 End User Manual December 2014 V1.0 Contents Getting Started... 4 How to Log into the Web Portal... 5 How to Manage Account Settings... 6 The Web Portal... 8 How to Upload Files in the Web Portal... 9 How

More information

Sun VirtualBox Installation Tutorial

Sun VirtualBox Installation Tutorial Sun VirtualBox Installation Tutorial Installing Linux Mint 5 LTS Guest OS By Dennis Berry Welcome to the world of virtualization and Linux. This tutorial is intended to help users who are new to the world

More information

DBXL AZURE INSTALLATION GUIDE

DBXL AZURE INSTALLATION GUIDE Page 1 of 48 DBXL AZURE INSTALLATION GUIDE LAST UPDATED: October 25, 2016 ADDING A VIRTUAL MACHINE ON MICROSOFT AZURE Login to your Microsoft Azure site. Create a new Virtual Machine instance by clicking

More information

Wireless LAN Controller Web Authentication Configuration Example

Wireless LAN Controller Web Authentication Configuration Example Wireless LAN Controller Web Authentication Configuration Example Document ID: 69340 Contents Introduction Prerequisites Requirements Components Used Conventions Web Authentication Web Authentication Process

More information

Colligo Manager 5.4 SP3. User Guide

Colligo  Manager 5.4 SP3. User Guide 5.4 SP3 User Guide Contents Enterprise Email Management for SharePoint 2010 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 4 Updating

More information

Installing and Configuring hopto Work. System Requirements Be sure you have these system requirements to install and use hopto Work.

Installing and Configuring hopto Work. System Requirements Be sure you have these system requirements to install and use hopto Work. Installing and Configuring hopto Work To configure and install hopto Work on your Microsoft Windows server, you ll need to have Administrator status. Note: The recommended setup is that Active Directory

More information

Option CloudGate Asset Gateway Step-by-Step Guide

Option CloudGate Asset Gateway Step-by-Step Guide Option CloudGate Asset Gateway Step-by-Step Guide This is Step-by-Step guide that will walk you through installing and setting up an Option CloudGate Asset Gateway with devicewise Asset Gateway software.

More information

Barracuda Web Application Firewall Foundation - WAF01. Lab Guide

Barracuda Web Application Firewall Foundation - WAF01. Lab Guide Barracuda Web Application Firewall Foundation - WAF01 Lab Guide Official training material for Barracuda certified trainings and Autorized Training Centers. Edition 2018 Revision 1.0 campus.barracuda.com

More information

Page Topic 02 Log In to KidKare 02 Using the Navigation Menu 02 Change the Language

Page Topic 02 Log In to KidKare 02 Using the Navigation Menu 02 Change the Language Page Topic 02 Log In to KidKare 02 Using the Navigation Menu 02 Change the Language help.kidkare.com 03 Enroll a Child 03 Withdraw a Child 03 View Pending and Withdrawn Children 04 View Kids by Enrollment

More information