Customer: Arinum Solutions. Project: Sircle.

Size: px
Start display at page:

Download "Customer: Arinum Solutions. Project: Sircle."

Transcription

1 Customer: Solutions Project: Sircle

2 Document Owner: Munira Abbas Date: 09 December Version: 2.0 Documents Control Notice to the Recipient of this Proposal The information contained here in is considered proprietary and confidential information of Solutions Pty Ltd and its release would offer substantial benefit to competitors offering similar services. This material includes descriptions of methodologies and concepts derived through substantial research and development efforts undertaken by Solutions. Therefore, the use or release of the information contained in this proposal for purposes other than an evaluation of its contents as a basis for contract award is prohibited, and it is the position of Solutions that the materials herein are not considered subject to release under the Freedom of Information Act, if applicable. No part of this proposal may be reproduced by any means or transmitted without the prior written permission of Solutions except with respect to copies made or transmitted internally by you for the purpose of evaluating this proposal. All copies of this proposal (or any portion hereof) and any accompanying electronic copies should be returned to Solutions or, at Solutions option, destroyed at the end of the proposal evaluation period if Solutions are not selected. No part of this document may be modified, deleted or expanded by any process or means without prior permission from Solutions. Neither submission by Solutions nor your acceptance of this proposal, in whole or in part, constitutes acceptance by Solutions of any contractual terms contained in your Request for Proposal, if any, and shall not form a binding agreement between the parties. Such an agreement shall only exist upon the execution of a mutually acceptable contract by both parties. Except as otherwise set forth in such a contract, Solutions makes no representations or warranties to you. This proposal is being submitted only by Solutions, which is solely responsible for its contents, and Solutions shall be the contracting entity if its proposal is selected Inspire.Integrate.Innovate contact@arinum.com Page 1

3 Sircle Document Control Version Developer Date Document Write 1.0 Tyler Yang Tyler Yang 2.0 Ted Wong Amy Xin Inspire.Integrate.Innovate Page 1

4 Table Of Content 1. Overview 2 2. Introduction 2 3. Sircle Production Site Backend IOS Application Different User Types Community Admin 2. IOS / Android a. Home b. Calendar c. Photos d. Notifications e. Newsletters f. Documents g. Links h. Videos i. Forms j. Settings k. Feedback l. Sign Out 6. Web-Serves 5 Inspire.Integrate.Innovate contact@arinum.com Page 1

5 Overview This guide is an introduction to Sircle mobile app development. It will guide you through both the app platforms development and the web backend that supports and feeds the apps. The backend is based on the LAMP stack with both the Apps developed natively. Introduction The web portal allows the administrator of an instance to manage the content that flows into the app. All content can be controlled through the web portal and 2 modules (calendar, notifications) can be additionally controlled by the ios app and 1 module (notifications) can be controlled by the Android app as well. There are 2 sites, one for development and one production. All work is carried out on the development site and tested throughly before it is migrated to the production site and retested again. At this stage the production site is not a clone of the test site. This is due to certain developments on the production site, and certain unfinished features on the test site. Both sites have FTP and myphpadmin access. Development: Production: Inspire.Integrate.Innovate contact@arinum.com Page 2

6 Sircle Production Site The production site have a domain prefix to distinguish which client is using Sircle. For example, `sircle` is the domain prefix, which is our own demo account. All the school production site can be found in the Sircle Umbrella page: Backend The backend of the web portal is written in php with CodeIgniter framework, and using MySQL database. You can ask your colleagues for information of each FTP login, they will give you the authentication for FTP and MySQL database. IOS and Android Application The ios and android app is basically an extension of the web portal, which allows you to use same set of functionality on mobile phone. IOS app development is ahead to android. There are some modules that are present in IOS but not yet in android. You can download all the school apps and our testing app in app store, simply searching in app store. The application has two type of users: 1. Community 2. Admin Different User Types: Community User It is for parents, or other community members who are interested in the school news and information.they do not have any admin rights. So no push notifications or add calendar events from the application it self. Admin User It is for school s staff/admin to use only. As they get full control.they can post a notification to notify the `Community` user. They can also add,delete and edit event in the calendar. If the school is using a third party calendar Like SENTRAL GOOGLE OR KAMAR the app does show the edit calendar functionally. This is to reduce the risk of multiple information in calendar. As sircle only does one way sink. Inspire.Integrate.Innovate contact@arinum.com Page 3

7 Also, a special admin user is created while application is generated, called apple apple This is for Apple ios s submission process only. This username/password have the admin right. After app has been approved, this account needs to be disabled. Inspire.Integrate.Innovate contact@arinum.com Page 4

8 Web-Servers The ios and Android application will communicate with the web-server via JSON, and all the related setting will be stored in the `schoolname`-prefix.pch file. They have a path define there. Please note the JSON data needs to be passed to the web service in a named value pair p_data. See code example at the end of this document. Sircle uses a post based webservice. Sample request to webservice from android String url= ; JSONObject j = new JSONObject(); j.put("cmd", "method name"); j.put("data", data); HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost(url); Deleting an event Sample request to webservice from android String url= ; JSONObject j = new JSONObject(); j.put("cmd", "delevent"); j.put("data", server_event_id); HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost(url); Sample data data = 1333;//server_event_id response: true or false Updating an event Sample request to webservice from android String url= ; JSONObject j = new JSONObject(); j.put("cmd", " addevent"); j.put("data", data); HttpClient httpclient = new DefaultHttpClient(); Inspire.Integrate.Innovate contact@arinum.com Page 5

9 HttpPost httppost = new HttpPost(url); Sample data = { action = 0; begin = " "; category = 4; content = "Special Details"; date_link = ""; end = " "; end_time = "15:45:00"; grade = " "; location = "Special Place"; pid = 0; reminder = "48:00:00"; repeat_end = " "; repeat_end_occurrences = 0; repeat_every = 1; repeat_on = 0; repeat_type = 0; server_id = 1333;// This differentiate add event and update event start_time = "13:30:00"; status = 0; subject = "Special Event 2"; type = ev; xid = 0; }; Response: { cmd = addevent; cmd_status= 1; data = { server_id = 1333; }; } Adding an event Sample request to webservice from android String url= ; JSONObject j = new JSONObject(); j.put("cmd", "addevent"); j.put("data", data); HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost(url); Inspire.Integrate.Innovate contact@arinum.com Page 6

10 Sample data data = { action = 0; begin = " "; category = 0; content = ""; date_link = ""; end = " "; end_time= "06:00:00"; grade = " ";// grade list would be in local sqlite database location = ""; pid = 0; reminder = "48:00:00"; repeat_end = ""; repeat_end_occurrences = ""; repeat_every = 1; repeat_on = 0; repeat_type = 0; start_times = "06:00:00"; status = 0; subject = "Sample Data"; type = ev; xid = 0; }; Response: server event id Detailed description about Event fields begin: Start date end: End date Start_time: start time End_time:end time Category: server category id(this is already in the local database) Content:description Subject:title Location: location Reminder:calendar event reminder Type:ev,ph,sh,al ev: Normal Event ph: Public Holiday( fields need to pass type:ph, subject:, start_date: ) sh:school Holiday( Inspire.Integrate.Innovate contact@arinum.com Page 7

11 fields need to pass type:sh, subject:, start_date:, end_date ) al: same as ev Recurring event fields action = 0; "date_link" = ""; pid = 0; "repeat_end" = " "; "repeat_end_occurrences" = 0; "repeat_every" = 1; "repeat_on" = 0; "repeat_type" = 0; The above fields represent recurring event. Further details would be explained later as it needs more explanation. Notification Sample request to webservice from android String url= ; JSONObject j = new JSONObject(); j.put("cmd", " sendmessage "); j.put("data", data); HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost(url); Sample data data = { grade = ( 1, 2, 3, 4, 5, 6, 99 ); "msg_content" = "Test Content"; "msg_subject" = "Test Subject"; Inspire.Integrate.Innovate contact@arinum.com Page 8

12 }; tweet = 1;// indicate whether this notification updates the twitter as well String url= ; 1)First solution String cmd= syncconfig ; String selector= "3" JSONObject j = new JSONObject(); j.put("cmd", cmd); j.put("data", selector); HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost(url); List<NameValuePair> namevaluepairs = new ArrayList<NameValuePair>(2); namevaluepairs.add(new BasicNameValuePair("p_data", j.tostring())); httppost.setentity(new UrlEncodedFormEntity(nameValuePairs)); HttpResponse response = httpclient.execute(httppost); String json = EntityUtils.toString(response.getEntity()); Log.d("check data", json); 2)Second solution String cmd= geteventlist ; String selector= "null" JSONObject j = new JSONObject(); j.put("cmd", cmd); j.put("data", selector); HttpClient httpclient = new DefaultHttpClient(); Inspire.Integrate.Innovate contact@arinum.com Page 9

13 HttpPost httppost = new HttpPost(url); List<NameValuePair> namevaluepairs = new ArrayList<NameValuePair>(2); namevaluepairs.add(new BasicNameValuePair("p_data", j.tostring())); httppost.setentity(new UrlEncodedFormEntity(nameValuePairs)); HttpResponse response = httpclient.execute(httppost); String json = EntityUtils.toString(response.getEntity()); Log.d("check data", json); If both fails i think it may be a server side issue Inspire.Integrate.Innovate contact@arinum.com Page 10

14 Things To Keep In Mind Cross version Issues on ios Because the company wants to support as more user as possible, so the ios project is deployment target the ios 5, with the base SDK is ios 7. So, the application need to be careful when using old APIs and least API. Remember to use a `respondtoselector` to avoid potential crash in the application Automatic Reference Counting Basically, it mixed with ARC and non-arc in the same project. But it is suggest to use ARC for least development and application maintenance. As I previous maintainer of this project, I strongly suggest that you use ARC, and move all the codes to ARC. Third Party Libraries The project used LOTS of third party libraries, and some may have some issues. If you find some error that it is not likely to happen, it maybe because of the third party libraries. NOTE: Please make a note and come up with a way to replace all third party libraries. Inspire.Integrate.Innovate contact@arinum.com Page 11

October Oracle Application Express Statement of Direction

October Oracle Application Express Statement of Direction October 2017 Oracle Application Express Statement of Direction Disclaimer This document in any form, software or printed matter, contains proprietary information that is the exclusive property of Oracle.

More information

Record Clone User Guide

Record Clone User Guide IOTAP s Record Clone add-on for Microsoft Dynamics CRM allows users to create copy of records for not only System & Standard entities but also Custom and their related entities. Record Clone Version: 3.1

More information

APS Mobile App Frequently Asked Questions

APS Mobile App Frequently Asked Questions How much does the APS Mobile App cost to download? The APS Mobile App is free to download! How do I install the APS Mobile App? Android Device: 1. Visit the Google Play Store 2. Search for Atlanta Public

More information

UFED Cloud Analyzer. Traces and changes. February Version 6.0

UFED Cloud Analyzer. Traces and changes. February Version 6.0 UFED Cloud Analyzer Traces and changes February 2017 Version 6.0 Legal notices Copyright 2017 Cellebrite Mobile Synchronization Ltd. All rights reserved. This manual is delivered subject to the following

More information

Working with Webservices (Cloud Services)

Working with Webservices (Cloud Services) Working with Webservices (Cloud Services) Nilanjan Banerjee University of Maryland, Baltimore County Baltimore, MD nilanb@umbc.edu Intro to Mobile Computing 1 Some of the simple web based services you

More information

Kony MobileFabric. Release Notes. On-Premises. Release 6.5. Document Relevance and Accuracy

Kony MobileFabric. Release Notes. On-Premises. Release 6.5. Document Relevance and Accuracy Kony MobileFabric Release Notes On-Premises Release 6.5 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version stated on

More information

BuilderTREND Owners Help

BuilderTREND Owners Help BuilderTREND Owners Help Summary The summary screen is what you will see as soon as you login to the system. It is designed to give you a quick snapshot of where the building process currently stands,

More information

Deltek Touch CRM Release Notes for Ajera CRM, GovWin Capture Management, and Vision

Deltek Touch CRM Release Notes for Ajera CRM, GovWin Capture Management, and Vision Deltek Touch CRM 1.6.3 March 2016 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical errors may exist. The recipient of

More information

LiveEngage Messaging Platform: Security Overview Document Version: 2.0 July 2017

LiveEngage Messaging Platform: Security Overview Document Version: 2.0 July 2017 LiveEngage Messaging Platform: Security Overview Document Version: 2.0 July 2017 Contents Introduction... 3 Supported Platforms... 3 Protecting Data in Transit... 3 Protecting Data at Rest... 3 Encryption...

More information

Deltek Touch CRM for Vision. User Guide

Deltek Touch CRM for Vision. User Guide Deltek Touch CRM for Vision User Guide September 2017 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical errors may exist.

More information

YOUR COMMUNITY WITH NABR NETWORK

YOUR COMMUNITY WITH NABR NETWORK YOUR COMMUNITY WITH NABR NETWORK Thank you for your interest in Nabr Network This exciting mobile app and website are designed to keep communication flowing in your community association. Many communities

More information

Deltek Touch CRM for GovWin Capture Management. User Guide

Deltek Touch CRM for GovWin Capture Management. User Guide Deltek Touch CRM for GovWin Capture Management User Guide September 2017 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical

More information

Introduction to Kony Fabric

Introduction to Kony Fabric Kony Fabric Introduction to Kony Fabric Release V8 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version stated on the Revision

More information

Oracle Service Cloud. Release 18D. What s New

Oracle Service Cloud. Release 18D. What s New Oracle Service Cloud Release 18D What s New TABLE OF CONTENTS Revision History 3 Overview 3 Feature Summary 3 Agent Browser Channels 4 Chat Transfer Enhancements 4 Agent Browser Workspaces 5 Link and Unlink

More information

Parent/Carer User Guide Bay House School and Sixth Form

Parent/Carer User Guide Bay House School and Sixth Form Parent/Carer User Guide Bay House School and Sixth Form Welcome to MyEd. Before we can get on with viewing information about your school and students, we first need to download the app. On Android devices,

More information

TIBCO Managed File Transfer Internet Server Transfer and File Share Clients User's Guide

TIBCO Managed File Transfer Internet Server Transfer and File Share Clients User's Guide TIBCO Managed File Transfer Internet Server Transfer and File Share Clients User's Guide Software Release 8.1 March 2018 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES

More information

Project Plan Mobile Event App

Project Plan Mobile Event App Project Plan Mobile Event App The Capstone Experience From Students to Professionals Team Auto-Owners Matt Krease Shen Li Eddy Maxwell Allen Scheck Tyler Smith Department of Computer Science and Engineering

More information

GETTING STARTED GUIDE. Mobile Admin. Version 8.2

GETTING STARTED GUIDE. Mobile Admin. Version 8.2 GETTING STARTED GUIDE Mobile Admin Version 8.2 Last Updated: April 24, 2018 GETTING STARTED GUIDE: MOBILE ADMIN 2018 SolarWinds Worldwide, LLC. All rights reserved. This document may not be reproduced

More information

Polycom RealAccess. Cloud Edition. Contents. Software 2.4 January P1

Polycom RealAccess. Cloud Edition. Contents. Software 2.4 January P1 RELEASE NOTES Software 2.4 January 2018 3725-71943-002P1 Polycom RealAccess Cloud Edition Contents What s New in Release 2.4... 2 Release History... 2 Security Updates... 3 Platform Requirements... 3 Browser

More information

Deltek Touch CRM for Ajera CRM. User Guide

Deltek Touch CRM for Ajera CRM. User Guide Deltek Touch CRM for Ajera CRM User Guide September 2017 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical errors may

More information

NextGen Patient Portal. User Guide.

NextGen Patient Portal. User Guide. 2.4.3 NextGen Patient Portal User Guide www.nextgen.com Copyright 2014-2017 QSI Management, LLC. All Rights Reserved. The registered trademarks listed at http://www.qsii.com/legal_notices.shtml are the

More information

We will ask you for certain kinds of personal information ( Personal Information ) to provide the services you request. This information includes:

We will ask you for certain kinds of personal information ( Personal Information ) to provide the services you request. This information includes: PRIVACY POLICY This Website is operated by Mergent, Inc., a member of the London Stock Exchange plc group of companies ( we/our/us/mergent ). Website means the website located at www.mergent.com, any subsequent

More information

TWO-FACTOR AUTHENTICATION Version 1.1.0

TWO-FACTOR AUTHENTICATION Version 1.1.0 TWO-FACTOR AUTHENTICATION Version 1.1.0 User Guide for Magento 1.9 Table of Contents 1..................... The MIT License 2.................... About JetRails 2FA 4................. Installing JetRails

More information

Fair Isaac Product Name User s Guide ENHANCEMENT NOTIFICATION Fair Isaac LenStar. Security Requirements

Fair Isaac Product Name User s Guide ENHANCEMENT NOTIFICATION Fair Isaac LenStar. Security Requirements Fair Isaac Product Name User s Guide ENHANCEMENT NOTIFICATION 6.1.2 Fair Isaac LenStar Security Requirements This document is the confidential, unpublished property of Fair Isaac Corporation. Receipt or

More information

Oracle Responsys Release 18C. New Feature Summary

Oracle Responsys Release 18C. New Feature Summary Oracle Responsys Release 18C New Feature Summary TABLE OF CONTENTS Revision History 3 Overview 3 APIs 3 REST AFTM API: Support for retrievelistmember 3 Mobile 4 SPAN Deliverability Scoring and Monthly

More information

Class Composer General Terms of Use

Class Composer General Terms of Use Class Composer General Terms of Use Effective Date: July 24, 2017 Welcome to Class Composer! Please continue reading to learn about the terms by which you may use our Service. If you have any questions

More information

TIBCO Spotfire Connectors Release Notes

TIBCO Spotfire Connectors Release Notes TIBCO Spotfire Connectors Release Notes Software Release 7.6 May 2016 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

More information

Multiple Custom Forms

Multiple Custom Forms Multiple Custom Forms for Magento 2 Extension for Magento 2 User Guide Table of contents 1. Module Features 2. Module Configuration 3. Manage Forms 4. Add Field 4.1. Text Field 4.2. Text Area 4.3. Drop

More information

Talend Component tgoogledrive

Talend Component tgoogledrive Talend Component tgoogledrive Purpose and procedure This component manages files on a Google Drive. The component provides these capabilities: 1. Providing only the client for other tgoogledrive components

More information

Mobile Admin GETTING STARTED GUIDE. Version 8.2. Last Updated: Thursday, May 25, 2017

Mobile Admin GETTING STARTED GUIDE. Version 8.2. Last Updated: Thursday, May 25, 2017 GETTING STARTED GUIDE Mobile Admin Version 8.2 Last Updated: Thursday, May 25, 2017 Retrieve the latest version from: https://support.solarwinds.com/success_center/mobile_admin/mobile_admin_documentation

More information

OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA)

OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA) OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA) This is a License Agreement (the "Agreement") for certain code (the Software ) owned by Akamai Technologies, Inc. ( Akamai ) that is useful in connection

More information

Complementary Demo Guide

Complementary Demo Guide Complementary Demo Guide SAP Business ByDesign SAP Business ByDesign Global October 23, 2017 1 Table of Content 1 About this Document... 3 1.1 Purpose... 3 1.2 Demo Business Context... 3 1.3 Prerequisites...

More information

Mobile Application Development L12: Storage & Communication

Mobile Application Development L12: Storage & Communication Mobile Application Development L12: Storage & Communication Jonathan Diehl (Informatik 10) Hendrik Thüs (Informatik 9) Data Storage & Communication Serialization & File Management SQLite Database CoreData

More information

FAQs. A guide for school app administrators

FAQs. A guide for school app administrators FAQs A guide for school app administrators Introduction myschoolapp is a simple and cost-effective way to engage with today s mobile parents and carers who run their lives from their phones. It helps you

More information

Spectralink CMS Update Procedure for Release

Spectralink CMS Update Procedure for Release Spectralink CMS Update Procedure for Release 1.1.66 This technical bulletin explains the procedure used to update and deploy the Spectralink CMS for PIVOT to release 1.1.66. System Affected Spectralink

More information

Oracle Responsys. Release 18B. New Feature Summary ORACLE

Oracle Responsys. Release 18B. New Feature Summary ORACLE Oracle Responsys Release 18B New Feature Summary ORACLE TABLE OF CONTENTS Revision History 4 Overview 4 APIs 4 New Throttling Limits for Web Services APIs 4 New Asynchronous Web Services APIs 5 New REST

More information

Oracle Mobile Application Framework

Oracle Mobile Application Framework Oracle Mobile Application Framework Oracle Mobile Application Framework (Oracle MAF) is a hybrid-mobile development framework that enables development teams to rapidly develop single-source applications

More information

RDS Employee Access Module User Guide

RDS Employee Access Module User Guide RDS Employee Access Module User Guide This manual is designed to help you set up your Employee Access account. Create New Account - As Employee Disclaimer of Warranties and Limitation of Liabilities Regional

More information

Terms of Use. Changes. General Use.

Terms of Use. Changes. General Use. Terms of Use THESE TERMS AND CONDITIONS (THE TERMS ) ARE A LEGAL CONTRACT BETWEEN YOU AND SPIN TRANSFER TECHNOLOGIES ( SPIN TRANSFER TECHNOLOGIES, STT, WE OR US ). THE TERMS EXPLAIN HOW YOU ARE PERMITTED

More information

Mobile Android Guide for Users

Mobile Android Guide for Users Mobile Android Guide for Users Version 19.01 SP-WX-MBLAND-UG-201706--R019.01 Sage 2017. All rights reserved. This document contains information proprietary to Sage and may not be reproduced, disclosed,

More information

Business Mobile Banking.

Business Mobile Banking. Business Mobile Resource Guide Business Mobile Banking Business Mobile Banking gives business customers the ability to access their business accounts and perform a variety of banking functions from the

More information

Northcross Website Parents Portal - Login: xxxxx Password: xxxx

Northcross Website Parents Portal -   Login: xxxxx Password: xxxx FAQS BEFORE YOU START Three Channel of Communications Northcross Website Parents Portal - https://www.northcross.nsw.edu.au/parents/ Login: xxxxx Password: xxxx Spider Parents Portal (Web) - https://spider.northcross.nsw.edu.au

More information

WebAccess Mobile User Guide

WebAccess Mobile User Guide www.novell.com/documentation WebAccess Mobile User Guide GroupWise 2012 September 20, 2012 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or use of this

More information

DocAve. Release Notes. Governance Automation Online. Service Pack 9, Cumulative Update 6

DocAve. Release Notes. Governance Automation Online. Service Pack 9, Cumulative Update 6 DocAve Governance Automation Online Release Notes Service Pack 9, Cumulative Update 6 Issued December 2017 New Features and Improvements In Settings > System > E-mail Templates, the E-mail Template Language

More information

Polycom RealPresence Media Manager

Polycom RealPresence Media Manager RELEASE NOTES Software 6.0.5.1 February 2013 3725-75300-001 Rev C1 Polycom RealPresence Media Manager 6.0.5.1 About these Release Notes The newest release of Polycom RealPresence Media Manager software,

More information

Installing the IGS Mobile App Signing in Navigating the App Logging in to Schoolbox Navigating the Homepage Dashboard...

Installing the IGS Mobile App Signing in Navigating the App Logging in to Schoolbox Navigating the Homepage Dashboard... Table of Contents Installing the IGS Mobile App... 3 Signing in... 4 Navigating the App... 5 Logging in to Schoolbox... 6 Navigating the Homepage Dashboard... 7 Accessing Extra-Curricular Information...

More information

Distributed Systems. 25. Authentication Paul Krzyzanowski. Rutgers University. Fall 2018

Distributed Systems. 25. Authentication Paul Krzyzanowski. Rutgers University. Fall 2018 Distributed Systems 25. Authentication Paul Krzyzanowski Rutgers University Fall 2018 2018 Paul Krzyzanowski 1 Authentication For a user (or process): Establish & verify identity Then decide whether to

More information

CliniSys Website Privacy Policy

CliniSys Website Privacy Policy CliniSys Website Privacy Policy Version 1.0 Document Information Prepared for: Users of the CliniSys Website Prepared by: CliniSys Solutions Limited Date: 13 February 2018 Contact Details: Matthew Fouracre,

More information

ANDROID APPS DEVELOPMENT FOR MOBILE AND TABLET DEVICE (LEVEL II)

ANDROID APPS DEVELOPMENT FOR MOBILE AND TABLET DEVICE (LEVEL II) ANDROID APPS DEVELOPMENT FOR MOBILE AND TABLET DEVICE (LEVEL II) Lecture 6: Notification and Web Services Notification A notification is a user interface element that you display outside your app's normal

More information

AmpliFund Applicant User Guide

AmpliFund Applicant User Guide AmpliFund Applicant User Guide Published by: Copyright 2017,, FL All rights reserved., Florida 214 North Hogan Street Jacksonville, FL 32202 Portions of the software described in this document copyright

More information

VitalAxis Deployment Tracker User Manual

VitalAxis Deployment Tracker User Manual Last updated 5/5/17 Copyright 2017 VitalAxis. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of VitalAxis

More information

CANVAS BY INSTRUCTURE IOS GUIDE

CANVAS BY INSTRUCTURE IOS GUIDE CANVAS BY INSTRUCTURE IOS GUIDE This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike License Table of Contents All Users...5 What do Canvas text (SMS) message notifications

More information

MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS

MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS Introduction This document sets forth the terms and conditions ("Terms and Conditions") governing your use of the MeridianHealth.com Web site ("Web Site")

More information

Northern Arizona University. Project Requirements. Bit Tag. Temitope Alaga, John Dance, Josh Frampton, Jun Rao CS 476. Version 1.0

Northern Arizona University. Project Requirements. Bit Tag. Temitope Alaga, John Dance, Josh Frampton, Jun Rao CS 476. Version 1.0 Northern Arizona University Project Requirements Bit Tag Temitope Alaga, John Dance, Josh Frampton, Jun Rao CS 476 Version 1.0 Table of Contents Table of Contents Introduction Problem and Solution Statement

More information

KACE GO Mobile App 3.1. Release Notes

KACE GO Mobile App 3.1. Release Notes KACE GO Mobile App 3.1 Release Notes Table of Contents Quest KACE GO 3.1 Mobile App Release Notes...3 About the KACE GO Mobile App... 3 Capabilities for KACE Systems Management Appliance (K1000) administrators...

More information

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 1. License The MIT License (MIT) Copyright (c) 2018 gamedna Ltd Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),

More information

KACE GO Mobile App 5.0. Release Notes

KACE GO Mobile App 5.0. Release Notes KACE GO Mobile App 5.0 Release Notes Table of Contents Quest KACE GO 5.0 Mobile App Release Notes...3 About the KACE GO Mobile App... 3 Capabilities for KACE Systems Management Appliance administrators...

More information

Broadcaster Guide. Version 2.11

Broadcaster Guide. Version 2.11 Broadcaster Guide Version 2.11 Created March 2011 Document Version Number Adway 2.11 Broadcaster Guide Copyright 2011 Adstream Pty Ltd All rights reserved. Copyright in all content in this user guide is

More information

GAME Self-Service Portal

GAME Self-Service Portal GAME Self-Service Portal Google Employee Training Guide 1 Table of Contents Introduction... 3 GAME SSP Login ID is Optional for Google Sales Managers... 3 GAME SSP Login ID is Available for Google Administrative

More information

SAP Jam Communities What's New 1808 THE BEST RUN. PUBLIC Document Version: August

SAP Jam Communities What's New 1808 THE BEST RUN. PUBLIC Document Version: August PUBLIC Document Version: August 2018 2018-10-26 2018 SAP SE or an SAP affiliate company. All rights reserved. THE BEST RUN Content 1 Release Highlights....3 1.1 Anonymous access to public communities....4

More information

Supporting ios Devices

Supporting ios Devices Supporting ios Devices 2003-2018 BeyondTrust, Inc. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust, Inc. Other trademarks are the property of their respective owners.

More information

Gift, Loyalty, and Tracking Program Web Portal Operating Manual

Gift, Loyalty, and Tracking Program Web Portal Operating Manual Gift, Loyalty, and Tracking Program Web Portal Operating Manual (11/17) Need help? Web: moneris.com/support Toll-free: 1-866-319-7450 Record your Moneris merchant ID here: Contents Welcome to the Moneris

More information

Mobile ios Configuration Guide

Mobile ios Configuration Guide Mobile ios Configuration Guide Version 23 SP-WX-MBLIOS-CG-201807--R023.00 Sage 2018. All rights reserved. This document contains information proprietary to Sage and may not be reproduced, disclosed, or

More information

Mobile ios Configuration Guide

Mobile ios Configuration Guide Mobile ios Configuration Guide Version 21 SP-WX-MBLIOS-CG-201801--R021.00 Sage 2018. All rights reserved. This document contains information proprietary to Sage and may not be reproduced, disclosed, or

More information

Access auto, commercial, home, and life solutions from a single entry point.

Access auto, commercial, home, and life solutions from a single entry point. User Guide LexisNexis Insurance Solutions Interactive/Online Order Processing Access auto, commercial, home, and life solutions from a single entry point. INS0157 -- 14 March 2018 Insurance Solutions Support

More information

Dell EM+S Intune. Android Enrollment Guide. Version 1.5

Dell EM+S Intune. Android Enrollment Guide. Version 1.5 Dell EM+S Intune Android Enrollment Guide Version 1.5 Copyright 2017 Dell Inc. All rights reserved. This publication contains information that is confidential and proprietary to Dell and is subject to

More information

BUSINESS BILL PAY Quick Step User Guide

BUSINESS BILL PAY Quick Step User Guide BUSINESS BILL PAY Quick Step User Guide Business Bill Pay is an online tool for small businesses to easily and efficiently pay bills. This convenient service provides our business online banking users

More information

Integration Service. Admin Console User Guide. On-Premises

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

More information

Deltek Touch for Maconomy. Touch 2.2 Multitenancy Setup Guide

Deltek Touch for Maconomy. Touch 2.2 Multitenancy Setup Guide Deltek Touch for Maconomy Touch 2.2 Multitenancy Setup Guide July 2017 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical

More information

Supporting Apple ios Devices

Supporting Apple ios Devices Supporting Apple ios Devices 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective

More information

2017 WorkPlace Mobile Application

2017 WorkPlace Mobile Application 2017 WorkPlace Mobile Application User Guide Paramount WorkPlace 2017 and Greater Table of Contents OVERVIEW... 3 GETTING STARTED... 3 Communication Architecture... 3 Mobile Device Requirements... 4 Establish

More information

Oracle Argus Safety. Service Administrator s Guide Release E

Oracle Argus Safety. Service Administrator s Guide Release E Oracle Argus Safety Service Administrator s Guide Release 6.0.1 E15949-02 January 2011 Oracle Argus Safety Service Administrator's Guide Release 6.0.1 E15949-02 Copyright 2009, 2011 Oracle and/or its affiliates.

More information

Managed Security Services - Automated Analysis, Threat Analyst Monitoring and Notification

Managed Security Services - Automated Analysis, Threat Analyst Monitoring and Notification Service Description Managed Security Services - Automated Analysis, Threat Analyst Monitoring and Notification The services described herein are governed by the terms and conditions of the agreement specified

More information

ITP 342 Mobile App Development. APIs

ITP 342 Mobile App Development. APIs ITP 342 Mobile App Development APIs API Application Programming Interface (API) A specification intended to be used as an interface by software components to communicate with each other An API is usually

More information

HPE Intelligent Management Center v7.3

HPE Intelligent Management Center v7.3 HPE Intelligent Management Center v7.3 Service Operation Manager Administrator Guide Abstract This guide contains comprehensive conceptual information for network administrators and other personnel who

More information

One Identity Starling Identity Analytics & Risk Intelligence. User Guide

One Identity Starling Identity Analytics & Risk Intelligence. User Guide One Identity Starling Identity Analytics & Risk Intelligence User Guide Copyright 2019 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

CA Open Space. Release Notes. Release

CA Open Space. Release Notes. Release CA Open Space Release Notes Release 2.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your

More information

HP Roam - Business Deployment Guide

HP Roam - Business Deployment Guide HP Roam - Business Deployment Guide Copyright 2018 HP Development Company, L.P. January 2019 The information contained herein is subject to change without notice. The only warranties for HP products and

More information

Installation Guide for. nopmobile Connector Plugin & nopmobile App

Installation Guide for. nopmobile Connector Plugin & nopmobile App Installation Guide for nopmobile Connector Plugin & nopmobile App pg. 1 Table of Contents Introduction to nopmobile app 3 WHAT IS NOP MOBILE APP? 3 WHAT IS NOP MOBILE CONNECTOR PLUGIN? 3 Installation and

More information

Building Information Modeling and Digital Data Exhibit

Building Information Modeling and Digital Data Exhibit Document E203 2013 Building Information Modeling and Digital Data Exhibit This Exhibit dated the day of in the year is incorporated into the agreement (the Agreement ) between the Parties for the following

More information

Deltek Touch Expense for Ajera. Touch 1.0 Technical Installation Guide

Deltek Touch Expense for Ajera. Touch 1.0 Technical Installation Guide Deltek Touch Expense for Ajera Touch 1.0 Technical Installation Guide June 01, 2018 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical

More information

TIBCO Spotfire Automation Services Release Notes

TIBCO Spotfire Automation Services Release Notes TIBCO Spotfire Automation Services Release Notes Software Release 7.0 February 2015 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH

More information

Mobile App Help for Parents ios

Mobile App Help for Parents ios Mobile App Help for Parents ios Welcome to the Realtime Link for Parents Portal App This document is intended to assist student s contacts in the use of the Realtime Mobile app on devices running ios.

More information

Oracle Taleo Cloud for Midsize (Taleo Business Edition)

Oracle Taleo Cloud for Midsize (Taleo Business Edition) Oracle Taleo Cloud for Midsize (Taleo Business Edition) Release 18B What s New TABLE OF CONTENTS REVISION HISTORY... 3 OVERVIEW... 4 RELEASE FEATURE SUMMARY... 4 PLATFORM ENHANCEMENTS... 5 Password Settings...

More information

Copyright

Copyright P6 Team Member for iphone App User's Guide P6 EPPM Release 8.1 July 2011 Copyright Oracle Primavera P6 Team Member for iphone App User's Guide Copyright 2011, Oracle and/or its affiliates. All rights reserved.

More information

Deltek Touch CRM for Deltek CRM. User Guide

Deltek Touch CRM for Deltek CRM. User Guide Deltek Touch CRM for Deltek CRM User Guide February 2017 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical errors may

More information

Oracle. Field Service Cloud Using Android and ios Mobile Applications 18B

Oracle. Field Service Cloud Using Android and ios Mobile Applications 18B Oracle Field Service Cloud Using Android and ios Mobile Applications 18B Part Number: E94755-02 Copyright 2018, Oracle and/or its affiliates. All rights reserved Authors: The Field Service Cloud Information

More information

Administrator Guide. Find out how to set up and use MyKerio to centralize and unify your Kerio software administration.

Administrator Guide. Find out how to set up and use MyKerio to centralize and unify your Kerio software administration. Administrator Guide Find out how to set up and use MyKerio to centralize and unify your Kerio software administration. The information and content in this document is provided for informational purposes

More information

HP Project and Portfolio Management Center

HP Project and Portfolio Management Center HP Project and Portfolio Management Center Software Version: 9.30 HP Demand Management User s Guide Document Release Date: September 2014 Software Release Date: September 2014 Legal Notices Warranty The

More information

DocAve. Release Notes. Governance Automation Online. Service Pack 8

DocAve. Release Notes. Governance Automation Online. Service Pack 8 DocAve Governance Automation Online Release Notes Service Pack 8 Issued September 2016 New Features and Improvements Added support for the Group Report. This report displays information for all Office

More information

Picshare Party Privacy Policy

Picshare Party Privacy Policy The Picshare Party application and the associated Picshare Party website available at picshareparty.com ( Picshare Party ) are owned and operated by Picshare Party, also known as Jeremy Senn Web Application

More information

TIBCO Spotfire Web Player Release Notes. Software Release May 2012

TIBCO Spotfire Web Player Release Notes. Software Release May 2012 TIBCO Spotfire Web Player Release Notes Software Release 4.5.0 May 2012 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE

More information

Adobe Sign for MS Dynamics 365 CRM

Adobe Sign for MS Dynamics 365 CRM Adobe Sign for MS Dynamics 365 CRM User Guide v7 Last Updated: May 31, 2018 2018 Adobe Systems Incorporated. All rights reserved Contents Overview... 3 Gaining Access to Adobe Sign...4 Sending for Signature...

More information

Oracle Cloud E

Oracle Cloud E Oracle Cloud Using the Evernote Adapter Release 16.3 E69234-05 September 2016 This guide describes how to configure and add the Evernote Adapter to an Oracle Integration Cloud Service integration. Oracle

More information

WebADM and OpenOTP are trademarks of RCDevs. All further trademarks are the property of their respective owners.

WebADM and OpenOTP are trademarks of RCDevs. All further trademarks are the property of their respective owners. CONFIGURE PUSH LOGIN WITH OPENOTP The specifications and information in this document are subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise

More information

KACE GO Mobile App 4.0. Release Notes

KACE GO Mobile App 4.0. Release Notes KACE GO Mobile App 4.0 Release Notes Table of Contents Quest KACE GO 4.0 Mobile App Release Notes...3 About the KACE GO Mobile App... 3 Capabilities for KACE Systems Management Appliance administrators...

More information

New Features in Primavera Professional 15.2

New Features in Primavera Professional 15.2 New Features in Primavera Professional 15.2 COPYRIGHT & TRADEMARKS Copyright 2015, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates.

More information

Sophos Mobile Control Installation guide

Sophos Mobile Control Installation guide Sophos Mobile Control Installation guide Product version: 1.0 Document date: May 2011 Contents 1 Introduction... 3 2 The Sophos Mobile Control server... 4 3 Set up Sophos Mobile Control... 13 4 Apple Push

More information

Mobile Developer Account Setup Guide v11

Mobile Developer Account Setup Guide v11 Mobile Developer Account Setup Guide v11 1) Introduction During the summer of 2017, Apple changed its App Review Guidelines in a way that prevents ReCollect from releasing apps for third-parties under

More information

Xerox Mobile Link App

Xerox Mobile Link App Software Version 2.1.01 Version 1.0 Xerox Mobile Link App Information Assurance Disclosure 2017 Xerox Corporation. All rights reserved. Xerox, Xerox and Design, Xerox Extensible Interface Platform are

More information