AAUAv's HelpDesk Noddy's Friends Iteration 2: Initial Design and Project Plan

Size: px
Start display at page:

Download "AAUAv's HelpDesk Noddy's Friends Iteration 2: Initial Design and Project Plan"

Transcription

1 AAUAv's HelpDesk Iteration 2: Initial Design and Project Plan David Campos, Hugo Picado, Luis Ribeiro, Pedro Alves 1 Overview This project consists of developing a helpdesk system for AAUAv (Academic Association of University of Aveiro). A helpdesk is a troubleshoot platform which aims to provide information and assistance to its users. AAUAv (founded in June, 28 of 1978) is an association directed by students and exists for the institutional representation of students at University of Aveiro and for the promotion of their interests. AAUAv has been contributing to students education, promoting cultural, physical, sport and political/social activities. They act in three distinct fields (academic, political and social) and represent all the enlisted students at University of Aveiro. AAUAv has several affiliated groups related to courses and/or departments which aim to provide localized assistance to the students, as well as organize activities for their members (e.g. workshops, conferences). Also, every year, University of Aveiro has about twelve thousand students, the main concern of AAUAv. Both students and affiliated groups may require, at any time, help on clarify a given subject related to academic issues (e.g. university regulations, questions related to AAUAv activities). Since the board of AAUAv is also composed of students which may not have compatible schedules to help on clarify those issues, they need some other way to fulfill this responsibility which will minimize this inconvenience. A viable solution is a helpdesk system, which enables the members of AAUAv to deal with any questions on an online platform. The helpdesk system will allow students and members of affiliated groups to post any questions which may be answered at any time of day, instead of being restricted to a fixed schedule. For a first implementation, we are planning to focus on the following features: Login; Logout; Logout By Timeout; Encrypted Login information All tickets and respective comments are saved in a data base Four types of Stakeholders: CEO, Administrator, Assistants, User Tickets are only viewable by the user that created it and the help desk staff An administrator may assign a Ticket to a specific Assistant. No other Assistant may answer that ticket Assistants may propose FAQs, which Administrators later deem acceptable or not. Accounts may be edited, or terminated Iteration 2 Noddy's Friends, 2008 Page 1 of 11

2 The high level requirements required to achieve the above features are: Low performance computers (light web system) Internet connection with speed of 256 Kbps or more Data Base to save all information related to the system: Tickets and comments; Assignments; Web Browser Search Function for Users Search Function for Tickets List Function for Tickets List Function for Users The following actions require the date in which they occurred: Stakeholder creation; Ticket creation, and end; Ticket assignment; Comment added; All tickets must be associated with the assistant that answered them The system must be created with a CEO Only the CEO can add Administrator Only Administrators can create Assistants Only Administrators can assign Tickets to Assistants Only Assistants and Users can create comments to a Ticket Iteration 2 Noddy's Friends, 2008 Page 2 of 11

3 These features are the essential features to create a simple helpdesk as first implementation. Other features will be implemented later in future iterations to improve the performance and quality of service of the system, such as the statistics and FAQ. Some GUI sketches were included in the folder gui/ to provide an idea of how the application will appear to the user. 2 Architecture The following figure represents the deployment diagram which is a specification of how the communication between several components will take place. Users will communicate with application server through HTTP protocol and the application server will communicate with the Hypersonic SQL database to retrieve information or store new/updated information. Figure 1: AAUAv's HelpDesk: Deployment Diagram Iteration 2 Noddy's Friends, 2008 Page 3 of 11

4 3 Use cases The following UC (Use Case) diagram represents the account management package Now we present the UC diagram which represents the management of FAQ (Frequently Asked Questions). This UC will not be considered in a first implementation since it is not essential for a simple functional helpdesk. Iteration 2 Noddy's Friends, 2008 Page 4 of 11

5 The following UC diagram is perhaps the most important of the whole system since it covers the main requirements of a helpdesk system (Tickets management) Iteration 2 Noddy's Friends, 2008 Page 5 of 11

6 Now we present the UC package which represents the management of stakeholders. In other words, this allows for stakeholders to add/remove stakeholders of a lower patent (e.g. administrators can only add/remove assistants or users and CEO can only add/remove administrators with a low level of administration. Both CEO and administrators can search/view other stakeholders. The system must be secure so we need the UC necessary to perform secure login/logout. These UC are present in the following package. Iteration 2 Noddy's Friends, 2008 Page 6 of 11

7 The following UC package represent what the CEO can do to check the performance of the helpdesk. This allows CEO to see for example, if an assistant is better than the other in some issue and then assign similar issues to him/her when needed. The following figure represents the sequence diagram of the Assign Ticket Use case: Iteration 2 Noddy's Friends, 2008 Page 7 of 11

8 4 Class Design Proposal Class Design Proposal in the format of JavaDoc documentation is attached in this deliver in the folder src/doc. 5 Class Diagram Figure 2: AAUAv's HelpDesk: Class Diagram We decide not to introduce methods inside classes because the diagram could become too much complex and reader could loose the general notion of the system. The methods are represented in the JavaDoc documentation included in the folder src/doc. The following points briefly describe the class diagram represented above. X Person Person class is responsible to save stakeholder personal data, like name, username, password, , date of admission and if he/she is active in the system. Iteration 2 Noddy's Friends, 2008 Page 8 of 11

9 p User User class extends person class. It is needed to keep information related to the user, like user s activation code and validation flag. Activation code is a keyword automatically generated by the system when a user submits his/hers registration cheat. The activation code is associated to the user and sent to his/hers e mail. User shall confirm the registration intent by clicking in the link sent by system to his/hers e mail. After this action the validation flag is set to true and the user is validated in the system. Assistant Assistant class extends person class, its intention is just to mask a person into an assistant and there are no extra fields in this class. X Administrator Administrator class extends person class. Has a field named level that is needed to save the administrator access level and to distinguish a common administrator from the CEO: level 0: Chief Executive Administrator (CEO) level 1: common administrator; X FAQ FAQ class is responsible to save the frequently asked questions (FAQ) by the users; to achieve this purpose FAQ class shall keep FAQ s question, answer and admission date, for management purposes, FAQ class shall also keep an accepted flag and an active flag. When an assistant proposes a FAQ accepted flag is set with false value, then the administrator can accept it or refuse it. The active flag is use to activate or deactivate a FAQ. p Ticket Ticket class is responsible to keep all information related to the ticket, like ticket title, ticket question, admission date, resolution date (when the assistant closes the ticket), ticket status (pending, solving, closed) and an active flag for removal purposes. Comment Comment class is responsible to keep all ticket comments, for that purpose comment class shall keep the comment and the admission date. Assignment Assignment class is responsible to keep the information related to the ticket assignment. An administrator can assign a pending ticket to an assistant, after this action ticket is associated to that assistant and he/she is responsible to answer it. Assignment class shall save these associations and the date of the ticket assignment. 6 Resources We will use Google Web Toolkit (GTW) and Hypersonic Structured Query Language (HSQL) Database Engine (DB) for the implementation. GWT is an open source Java software development framework that makes writing AJAX applications. GTW allows for writing a dynamic web application without spending all the time working around subtle incompatibilities Iteration 2 Noddy's Friends, 2008 Page 9 of 11

10 between browsers and platforms. This facilitates the reuse of AJAX components and solves the drawback of JavaScript's lack of modularity. HSQLDB is a relational database engine written in Java, with a JDBC driver, supporting a large subset of ANSI 92 SQL. A small, fast engine with both in memory and disk based tables. This product is the continuation of HypersonicSQL. Active since Project Plan This section briefly describes how the AAUAv's project will be organized. This includes how responsibilities are assigned to team members, which are the recommendations used during the project lifecycle. Project organization Team Member Team leader User interface Modeling Application core David Campos X X X Hugo Picado X X X Luis Ribeiro X X Pedro Alves X X Development process and measurements OpenUP specifications will be used to model and implement the system. OpenUP is a lean Unified Process which is based on iterations and increments within a structured lifecycle. OpenUP is focused on the collaborative nature of software development and aims to provide standards that help project teams to communicate during the project lifecycle. Five project iterations are specified to be required for the success of the project. Every week the team has a meeting to talk about the evolution of the project. Project milestones and objectives Phase Iteratio Primary objectives Scheduled start or n milestone Requirements and Use Cases I1 Find the requirements that the project should meet and an idea of how implementation will grow Until April 2, 2008 Initial design I2 Provide an initial design of the project, architecture modeling and resources to Until April 2, 2008 Iteration 2 Noddy's Friends, 2008 Page 10 of 11

11 use Initial implement and Test I3 Develop of some base code of the application and test units to allow test that code Until April 23, 2008 Ongoing implementation report I4 Have some code features working and some of the most important requirements implemented and tested Until May 24, 2008 Project completion I5 Demonstrate the application and submit the final version of the documentation Until June 9, 2008 Deployment The project will be accessible by the team members through a repository placed in a server at IEETA (Institute of Engineering, Electronics and Telematics of Aveiro). The collaboration is taking place with the help of CVS (Concurrent Versions System) which is a way of a team work in the same project without the need to be always in the same place. Lessons learned Team work was an important element during the development until the current phase. We should invest more time in meetings in order to reinforce team vision about the project and guarantee that that vision is common for all the team members. CVS plays an important role in our project since this is a four-element project and no one of us has too much opportunity to work together in the same place. Iteration 2 Noddy's Friends, 2008 Page 11 of 11

StreamServe Persuasion SP5 StreamStudio

StreamServe Persuasion SP5 StreamStudio StreamServe Persuasion SP5 StreamStudio Administrator s Guide Rev B StreamServe Persuasion SP5 StreamStudio Administrator s Guide Rev B OPEN TEXT CORPORATION ALL RIGHTS RESERVED United States and other

More information

1. Introduction 1.1 Methodology

1. Introduction 1.1 Methodology Table of Contents 1. Introduction 1.1 Methodology 3 1.2 Purpose 4 1.3 Scope 4 1.4 Definitions, Acronyms and Abbreviations 5 1.5 Tools Used 6 1.6 References 7 1.7 Technologies to be used 7 1.8 Overview

More information

System Requirement Specifications (SRS)

System Requirement Specifications (SRS) (SRS) Assignment 1 Sample Solution 1 Table of Contents 1 Table of Contents... 1 2 Problem Statement... 2 3 Overview... 2 3.1 Background... 2 3.2 Overall Description... 2 4 Investigation & Analysis Methodology...

More information

Software Architecture Document

Software Architecture Document Software Architecture Document Project Management Cell 1.0 1 of 16 Abstract: This is a software architecture document for Project Management(PM ) cell. It identifies and explains important architectural

More information

VIP Help Desk Web Application User Guide Version 3.0

VIP Help Desk Web Application User Guide Version 3.0 1 VIP Help Desk Web Application User Guide Version 3.0 2 Table of Contents-... New Features of VIP Help Desk 3.0 New features of Admin panel New features of Operator panel New features of User panel How

More information

Architecture Design Version1.0. Architecture Design CUSTOMER RELATION MANAGEMENT SYSTEM Version 1.0

Architecture Design Version1.0. Architecture Design CUSTOMER RELATION MANAGEMENT SYSTEM Version 1.0 Architecture Design CUSTOMER RELATION MANAGEMENT SYSTEM Version 1.0 Submitted in partial fulfillment of the requirements of the degree of Master of Software Engineering CIS 895 MSE Project Kansas State

More information

Automation for Customer Care System

Automation for Customer Care System Automation for Customer Care System Rajnish Kumar #1, Thakur Avinash Nagendra #2 1, 2# Department of Computer Engineering Sir Visvesvaraya Institute of Technology, Nasik Abstract This paper entitled Automation

More information

1. Introduction. 2. Web Application. 3. Components. 4. Common Vulnerabilities. 5. Improving security in Web applications

1. Introduction. 2. Web Application. 3. Components. 4. Common Vulnerabilities. 5. Improving security in Web applications 1. Introduction 2. Web Application 3. Components 4. Common Vulnerabilities 5. Improving security in Web applications 2 What does World Wide Web security mean? Webmasters=> confidence that their site won

More information

Software Design Specification

Software Design Specification GROUP 7 SEVEN SOFTWARE PROJECT: ONLINE SCHEDULING SYSTEM COMPANY: VIA MAGNA GOTHENBURG SWEDEN GROUP MEMBERS: IBRAHIM KRVAVAC ALI BAHALOO HORE SEYED SAMAD GHASEMI KUHAN LOH DANIEL ASOVIC Software Design

More information

Architecture and Mode of Operation

Architecture and Mode of Operation Open Source Scheduler Architecture and Mode of Operation http://jobscheduler.sourceforge.net Contents Components Platforms & Databases Architecture Configuration Deployment Distributed Processing Security

More information

Q: What browsers will be supported? A: Internet Explorer (from version 6), Firefox (from version 3.0), Safari, Chrome

Q: What browsers will be supported? A: Internet Explorer (from version 6), Firefox (from version 3.0), Safari, Chrome CCV Renewal FAQ General Q: Why is the CCV building a new application? A: The current application was built in 2002, using the latest web technology available at that time. Over the last ten years the number

More information

Budget Event Management Design Document

Budget Event Management Design Document Budget Event Management Design Document Team 4 Yifan Yin(TL), Jiangnan Shangguan, Yuan Xia, Di Xu, Xuan Xu, Long Zhen 1 Purpose Summary List of Functional Requirements General Priorities Usability Accessibility

More information

Vision Document CUSTOMER RELATION MANAGEMENT SYSTEM Version 1.0

Vision Document CUSTOMER RELATION MANAGEMENT SYSTEM Version 1.0 Vision Document CUSTOMER RELATION MANAGEMENT SYSTEM Version 1.0 Submitted in partial fulfillment of the requirements of the degree of Master of Software Engineering CIS 895 MSE Project Kansas State University

More information

EPSS Helpdesk - workdays from 08:00 to 20:00 - Phone: +32 2 23 33 760 E-mail: support@epss-fp7.org

EPSS Helpdesk - workdays from 08:00 to 20:00 - Phone: +32 2 23 33 760 E-mail: support@epss-fp7.org EPSS Frequently Asked Questions (FAQ) For support please contact: EPSS Helpdesk - workdays from 08:00 to 20:00 - Phone: +32 2 23 33 760 E-mail: support@epss-fp7.org A. General Questions: N.B.: For PIC-related

More information

CPS122 - OBJECT-ORIENTED SOFTWARE DEVELOPMENT. Team Project

CPS122 - OBJECT-ORIENTED SOFTWARE DEVELOPMENT. Team Project CPS122 - OBJECT-ORIENTED SOFTWARE DEVELOPMENT Team Project Due Dates: See syllabus for due dates for each milestone This project spans much of the semester, to be completed as a series of milestones, each

More information

Ad Hoc (Temporary) Accounts Instructions

Ad Hoc (Temporary) Accounts Instructions DLG/PDV SFTP Server Instructions 1. Ad Hoc (Temporary) Accounts. 2. LeadsGen (Permanent) Accounts. 3. Manually configuring SFTP Clients (WinSCP & FileZilla). 4. Uploading files into SFTP server. 5. Frequently

More information

UNIVERSITY OF ILLINOIS AT CHICAGO University of Illinois Ready

UNIVERSITY OF ILLINOIS AT CHICAGO University of Illinois Ready UNIVERSITY OF ILLINOIS AT CHICAGO University of Illinois Ready Kuali Ready & University of Illinois Ready Web-Based System adopted by all three campuses of the University of Illinois system Step by step

More information

Client/server is a network architecture that divides functions into client and server

Client/server is a network architecture that divides functions into client and server Page 1 A. Title Client/Server Technology B. Introduction Client/server is a network architecture that divides functions into client and server subsystems, with standard communication methods to facilitate

More information

MEGA Web Application Architecture Overview MEGA 2009 SP4

MEGA Web Application Architecture Overview MEGA 2009 SP4 Revised: September 2, 2010 Created: March 31, 2010 Author: Jérôme Horber CONTENTS Summary This document describes the system requirements and possible deployment architectures for MEGA Web Application.

More information

EPSS Helpdesk - workdays from 08:00 to 20:00 - Phone: +32 2 23 33 760 E-mail: support@epss-fp7.org

EPSS Helpdesk - workdays from 08:00 to 20:00 - Phone: +32 2 23 33 760 E-mail: support@epss-fp7.org EPSS Frequently Asked Questions (FAQ) For support please contact: EPSS Helpdesk - workdays from 08:00 to 20:00 - Phone: +32 2 23 33 760 E-mail: support@epss-fp7.org A. General Questions: N.B.: For PIC-related

More information

FPT UNIVERSITY. Capstone Project

FPT UNIVERSITY. Capstone Project MINISTRY OF EDUCATION AND TRAINING FPT UNIVERSITY Capstone Project Online Event Organizing Company Management System Group Group Members Đoàn Minh Thiện 60130 Nguyễn Thanh Thống 60561 Mai Hoàng Trí Anh

More information

The information contained in this document are subject to change without notice at any time.

The information contained in this document are subject to change without notice at any time. TCPOS.net 4.x.x.x Windows Service, Silverlight applications and the WebAccountManagement plugin 2009 TCPOS AG Page 1/53 The information contained in this document are subject to change without notice at

More information

Support System User Guide

Support System User Guide Support System User Guide The Virtual Office support system provides users with a useful way to submit and track issues and resolutions. This feature- rich system is one more way that VO provides customers

More information

LDAP Authentication Configuration Appendix

LDAP Authentication Configuration Appendix 1 Overview LDAP Authentication Configuration Appendix Blackboard s authentication technology is considered a focal point in the company s ability to provide true enterprise software. Natively, the Blackboard

More information

TARGETPROCESS INSTALLATION GUIDE

TARGETPROCESS INSTALLATION GUIDE TARGETPROCESS INSTALLATION GUIDE v.2.19 Installation Guide This document describes installation of TargetProcess application and common problems with resolutions. 1 PREREQUISITES... 3 SERVER REQUIREMENTS...

More information

CISCO SECURE MAIL. External User Guide. 1/15/15 Samson V.

CISCO SECURE MAIL. External User Guide. 1/15/15 Samson V. 1/15/15 Samson V. 1. These instructions are for users who reside outside the University of Colorado Denver that receive encrypted emails from faculty or staff of UC Denver. As a part of our HIPAA compliance

More information

Phire Architect Hardware and Software Requirements

Phire Architect Hardware and Software Requirements Phire Architect Hardware and Software Requirements Copyright 2014, Phire. All rights reserved. The Programs (which include both the software and documentation) contain proprietary information; they are

More information

Business Application Services Testing

Business Application Services Testing Business Application Services Testing Curriculum Structure Course name Duration(days) Express 2 Testing Concept and methodologies 3 Introduction to Performance Testing 3 Web Testing 2 QTP 5 SQL 5 Load

More information

DESIGN DOCUMETATION OPEN SOURCE TIME TRACKING SYSTEM. Supervisors. Prepared by: SA-G3

DESIGN DOCUMETATION OPEN SOURCE TIME TRACKING SYSTEM. Supervisors. Prepared by: SA-G3 DESIGN DOCUMETATION OPEN SOURCE TIME TRACKING SYSTEM Supervisors Mr. Shantha Fernando, Senior Lecturer Dept. of Computer Science & Engineering Mr. Indika Perera, Lecturer Dept. of Computer Science & Engineering

More information

Setup Corporate (Microsoft Exchange) Email. This tutorial will walk you through the steps of setting up your corporate email account.

Setup Corporate (Microsoft Exchange) Email. This tutorial will walk you through the steps of setting up your corporate email account. Setup Corporate (Microsoft Exchange) Email This tutorial will walk you through the steps of setting up your corporate email account. Microsoft Exchange Email Support Exchange Server Information You will

More information

Customer Bank Account Management System Technical Specification Document

Customer Bank Account Management System Technical Specification Document Customer Bank Account Management System Technical Specification Document Technical Specification Document Page 1 of 15 Table of Contents Contents 1 Introduction 3 2 Design Overview 4 3 Topology Diagram.6

More information

EASTPOINTE SECURE E MAIL SYSTEM SETUP INSTRUCTIONS

EASTPOINTE SECURE E MAIL SYSTEM SETUP INSTRUCTIONS EASTPOINTE SECURE E MAIL SYSTEM SETUP INSTRUCTIONS In order to send and receive protected health information (PHI) on consumers between Eastpointe and your provider agency you will need to do the following.

More information

SNAMP Data Server Tutorial

SNAMP Data Server Tutorial SNAMP Data Server Tutorial The server hosted by UC Merced is a data server that is used to share data among the science teams and with the public. To ensure the proper data disclosure, a sharing level

More information

WIRELESS TRAINING SOLUTIONS. by vlogic, Inc. L a b 0.2 Access to Content Management System

WIRELESS TRAINING SOLUTIONS. by vlogic, Inc. L a b 0.2 Access to Content Management System WIRELESS TRAINING SOLUTIONS by vlogic, Inc L a b 0.2 Access to Content Management System WIRELESS TRAINING SOLUTIONS Hands-on Workshop and Lab Guide Table of Contents Accessing the Wireless Training Solutions

More information

1. Component#2 File Management System

1. Component#2 File Management System 1. Component#2 File Management System 1.1 Part1: Use case diagram Figure 1 illustrates the use case diagram of File Management System. Figure 1:File Management user case diagram File Manager BackgroundAdmonistrator

More information

XTendTraders.com Trading room simulator

XTendTraders.com Trading room simulator 2011 2012 XTendTraders.com Trading room simulator BELGHITI ALAOUI Mohammed IMAFA BEN HAMOUDA Ahmed IMAFA EL FERACHI Anas AL EL HAJJI Khalil AL Polytech Nice Sophia Antipolis SI4 AL/IMAFA 2011 2012 1 CONTENTS

More information

for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later

for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later Copyright 2014, Lucid Innovations Limited. All Rights Reserved Lucid Research

More information

Sending an Encrypted/Unencrypted Message. Let's Begin: Log In and Set Up Security Questions. Create Additional ProMailSource Accounts:

Sending an Encrypted/Unencrypted Message. Let's Begin: Log In and Set Up Security Questions. Create Additional ProMailSource Accounts: Let's Begin: Log In and Set Up Security Questions To start, you can log in from the ProMailSource home page. Sending an Encrypted/Unencrypted Message Every message you send through ProMailSource is automatically

More information

Student ANGEL FAQs. General Issues: System Requirements:

Student ANGEL FAQs. General Issues: System Requirements: Student ANGEL FAQs General Issues: What is ANGEL? How do I log in? What is my username and password? How do I activate my account? I forgot my C number/password, what do I do? I registered after the first

More information

2 System Requirements and Authentication

2 System Requirements and Authentication 2 System Requirements and Authentication 2.1 System Requirements Getting started in BOCNET (Corp.) is quick and easy. We strongly recommend that the operating computers of BOCNET (Corp.) users should satisfy

More information

Guide to the Regional Business Partner Website for Businesses

Guide to the Regional Business Partner Website for Businesses Guide to the Regional Business Partner Website for Businesses CONTENTS SECTION 1 - INTRODUCTION Introduction About the Regional Business Partners Website Who will use the Regional Business Partners Website

More information

Introduction to UCONNECT Student Edition. 4/14/11 v.1.3

Introduction to UCONNECT Student Edition. 4/14/11 v.1.3 Introduction to UCONNECT Student Edition 4/14/11 v.1.3 Contents Accessing UCONNECT... 2 How do I get a username for UCONNECT?... 2 How do I log in?... 2 What should I see when I login?... 3 Channels...

More information

PROJECT MANAGEMENT SYSTEM

PROJECT MANAGEMENT SYSTEM Requirement Analysis Document v.2 14.12.2009 CENG-401 SOFTWARE ENGINEER PROJECT MANAGEMENT SYSTEM (Project Manager) Ahmet Edip SEÇKİN 07010555 (Developer) Erhan ŞEN 07010507 (Developer) Semih Serdar CENGİZOĞLU

More information

Introduction. Helpdesk System

Introduction. Helpdesk System Introduction The User Guide is intended for Perridot Customer (mentioned as Customer ) who has contractual maintenance license agreement signed with Perridot. It provides our customer with some insights

More information

TriCore Secure Web Email Gateway User Guide 1

TriCore Secure Web Email Gateway User Guide 1 TriCore Secure Web Email Gateway User Guide This document provides information about TriCore Secure Web Email Gateway. This document is for users who are authorized to send and receive encrypted email

More information

REST-based Offline e-mail System

REST-based Offline e-mail System Proceedings of the APAN Network Research Workshop 2012 REST-based Offline e-mail System Gihan Dias, Mithila Karunarathna, Madhuka Udantha, Ishara Gunathilake, Shalika Pathirathna and Tharidu Rathnayake

More information

1.0 Hardware Requirements:

1.0 Hardware Requirements: 01 - ServiceDesk Plus - Best Practices We appreciate you choosing ServiceDesk Plus for your organization to deliver world-class IT services. Before installing the product, take a few minutes to go through

More information

An Easy-to-Use Mobile App for Personal Buy and Sell Intermediate Project Report

An Easy-to-Use Mobile App for Personal Buy and Sell Intermediate Project Report An Easy-to-Use Mobile App for Personal Buy and Sell Intermediate Project Report Code: FYP14016 Group members: Chow Ka Hei, Cheung Chun Man Supervisor: Dr. Wu C Content P.1 Project Objective P.2-3 Project

More information

CSc 230 Software System Engineering FINAL REPORT. Project Management System. Prof.: Doan Nguyen. Submitted By: Parita Shah Ajinkya Ladkhedkar

CSc 230 Software System Engineering FINAL REPORT. Project Management System. Prof.: Doan Nguyen. Submitted By: Parita Shah Ajinkya Ladkhedkar CSc 230 Software System Engineering FINAL REPORT Project Management System Prof.: Doan Nguyen Submitted By: Parita Shah Ajinkya Ladkhedkar Spring 2015 1 Table of Content Title Page No 1. Customer Statement

More information

IBM Rational Asset Manager

IBM Rational Asset Manager Providing business intelligence for your software assets IBM Rational Asset Manager Highlights A collaborative software development asset management solution, IBM Enabling effective asset management Rational

More information

Online Helpdesk System

Online Helpdesk System Online Helpdesk System How to register: Please visit http://www.support.lonicera.com.au/cgi-bin/pdesk.cgi or access our Quick Links at http://www.lonicera.com.au, and click on the Register link, as shown

More information

Helpdesk manual. Version: 1.1

Helpdesk manual. Version: 1.1 Version: 1.1 Date: 06-May-2014 Introduction Once a new system has been delivered, or an update has taken place, issues could occur, questions raised and new functionality needed. You can register these

More information

Software Development Kit (SDK)

Software Development Kit (SDK) QUICK START GUIDE UC Software 5.3.0 May 2015 3725-49126-001A Software Development Kit (SDK) Polycom, Inc. 1 Copyright 2015, Polycom, Inc. All rights reserved. No part of this document may be reproduced,

More information

CSSEA Helpdesk User Guide

CSSEA Helpdesk User Guide CSSEA Helpdesk User Guide Contents I. Creating tickets... 3 1. Creating a New Ticket via Email... 3 a. Email format... 3 b. New ticket reply... 3 2. Creating a New ticket via the Website... 4 a. Browse

More information

Registrar Ramp Up Process. Prepared by Afilias

Registrar Ramp Up Process. Prepared by Afilias Registrar Ramp Up Process Prepared by Afilias December 2013 Contents Introduction... 2 Get Started By Having Someone Contact You... 2 Become a Registrar... 3 Step One Business and Legal Process... 3 Step

More information

TRC Handbook. Rev. A. June 06 2014. A division of ConneXon Telecom Inc.

TRC Handbook. Rev. A. June 06 2014. A division of ConneXon Telecom Inc. TRC Handbook Rev. A June 06 2014 A division of ConneXon Telecom Inc. TRC HANDBOOK... 1 1 INTRODUCTION... 3 1.1 Document Overview... 3 1.2 Key Stakeholders... 3 1.3 Revision History... 3 2 GETTING STARTED...

More information

BlueJ Teamwork Tutorial

BlueJ Teamwork Tutorial BlueJ Teamwork Tutorial Version 2.0 for BlueJ Version 2.5.0 (and 2.2.x) Bruce Quig, Davin McCall School of Engineering & IT, Deakin University Contents 1 OVERVIEW... 3 2 SETTING UP A REPOSITORY... 3 3

More information

MBARI Deep Sea Guide: Designing a web interface that represents information about the Monterey Bay deep-sea world.

MBARI Deep Sea Guide: Designing a web interface that represents information about the Monterey Bay deep-sea world. MBARI Deep Sea Guide: Designing a web interface that represents information about the Monterey Bay deep-sea world. Pierre Venuat, University of Poitiers Mentors: Brian Schlining and Nancy Jacobsen Stout

More information

Instructions For Opening UHA Encrypted Email

Instructions For Opening UHA Encrypted Email Receiving Encrypted Email You have received a secure, encrypted message from UHA. The message will contain the following notice and an attachment named SecureMessageAtt.hml. The attachment is shown circled

More information

Project Proposal Apparels Listing Website Development

Project Proposal Apparels Listing Website Development Project Proposal Apparels Listing Website Development Doc Version: 1.0 3/11/2015 Punit Garg punit.garg@fabletechnologies.com Business Development Manager Fable IT Solutions Pvt. Ltd. Table of Contents

More information

New Help Desk Ticketing System

New Help Desk Ticketing System New Help Desk Ticketing System Starting Monday, November 30, 2009 at 6 am the University will be going live with their new help desk ticketing system. The website to access the new ticketing system is

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 Citrix XenServer Integration Guide Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The only warranties

More information

International Journal of Engineering Technology, Management and Applied Sciences. www.ijetmas.com November 2014, Volume 2 Issue 6, ISSN 2349-4476

International Journal of Engineering Technology, Management and Applied Sciences. www.ijetmas.com November 2014, Volume 2 Issue 6, ISSN 2349-4476 ERP SYSYTEM Nitika Jain 1 Niriksha 2 1 Student, RKGITW 2 Student, RKGITW Uttar Pradesh Tech. University Uttar Pradesh Tech. University Ghaziabad, U.P., India Ghaziabad, U.P., India ABSTRACT Student ERP

More information

SECURE E-MAIL COMMUNICATIONS PLAN Updated August 25, 2011

SECURE E-MAIL COMMUNICATIONS PLAN Updated August 25, 2011 SECURE E-MAIL COMMUNICATIONS PLAN Updated August 25, 2011 Introduction In October, 2008, the Division of Welfare and Supportive Services (DWSS) announced the introduction of secure e-mail through ASM 17-08.

More information

A Monitored Student Testing Application Using Cloud Computing

A Monitored Student Testing Application Using Cloud Computing A Monitored Student Testing Application Using Cloud Computing R. Mullapudi and G. Hsieh Department of Computer Science, Norfolk State University, Norfolk, Virginia, USA r.mullapudi@spartans.nsu.edu, ghsieh@nsu.edu

More information

TDAQ Analytics Dashboard

TDAQ Analytics Dashboard 14 October 2010 ATL-DAQ-SLIDE-2010-397 TDAQ Analytics Dashboard A real time analytics web application Outline Messages in the ATLAS TDAQ infrastructure Importance of analysis A dashboard approach Architecture

More information

Online College Magazine

Online College Magazine Software Requirement Specification Chennai Campus Vandalur-Kelambakkam Road, Chennai 600048 Ciphers Online College Magazine IBM TGMC-2011 Version 1.0 Team Members : Mentor: Prof. B. Sathis Kumar 1. Aanchal

More information

How To Understand The Software Process

How To Understand The Software Process Ingegneria del Software Corso di Laurea in Informatica per il Management Software process model Davide Rossi Dipartimento di Informatica Università di Bologna The task of the software development team

More information

Use your UNNCNetID and password to log in. The first time you login to the system, you may receive the following screen:

Use your UNNCNetID and password to log in. The first time you login to the system, you may receive the following screen: (Secure FTP to/from Outside (non-unmc Parties) Information Technology Services July 2012 Contact the ITS Helpdesk at 402-559-7700 or helpdesk@unmc.edu with questions. Personnel at UNMC occasionally need

More information

GETTING STARTED WITH D2L

GETTING STARTED WITH D2L GETTING STARTED WITH D2L Quick Start Guide v.9.2.1 ecampus This guide provides tips for users new to using the D2L Learning Environment. It discusses how to navigate the main areas and how to change your

More information

WHITE PAPER. Domo Advanced Architecture

WHITE PAPER. Domo Advanced Architecture WHITE PAPER Domo Advanced Architecture Overview There are several questions that any architect or technology advisor may ask about a new system during the evaluation process: How will it fit into our organization

More information

Migrating helpdesk to a new server

Migrating helpdesk to a new server Migrating helpdesk to a new server Table of Contents 1. Helpdesk Migration... 2 Configure Virtual Web on IIS 6 Windows 2003 Server:... 2 Role Services required on IIS 7 Windows 2008 / 2012 Server:... 2

More information

Fahad H.Alshammari, Rami Alnaqeib, M.A.Zaidan, Ali K.Hmood, B.B.Zaidan, A.A.Zaidan

Fahad H.Alshammari, Rami Alnaqeib, M.A.Zaidan, Ali K.Hmood, B.B.Zaidan, A.A.Zaidan WWW.JOURNALOFCOMPUTING.ORG 85 New Quantitative Study for Dissertations Repository System Fahad H.Alshammari, Rami Alnaqeib, M.A.Zaidan, Ali K.Hmood, B.B.Zaidan, A.A.Zaidan Abstract In the age of technology,

More information

Safewhere*Identify 3.4. Release Notes

Safewhere*Identify 3.4. Release Notes Safewhere*Identify 3.4 Release Notes Safewhere*identify is a new kind of user identification and administration service providing for externalized and seamless authentication and authorization across organizations.

More information

Design and Functional Specification

Design and Functional Specification 2010 Design and Functional Specification Corpus eready Solutions pvt. Ltd. 3/17/2010 1. Introduction 1.1 Purpose This document records functional specifications for Science Technology English Math (STEM)

More information

SQL Databases Course. by Applied Technology Research Center. This course provides training for MySQL, Oracle, SQL Server and PostgreSQL databases.

SQL Databases Course. by Applied Technology Research Center. This course provides training for MySQL, Oracle, SQL Server and PostgreSQL databases. SQL Databases Course by Applied Technology Research Center. 23 September 2015 This course provides training for MySQL, Oracle, SQL Server and PostgreSQL databases. Oracle Topics This Oracle Database: SQL

More information

Connecting to a Database Using PHP. Prof. Jim Whitehead CMPS 183, Spring 2006 May 15, 2006

Connecting to a Database Using PHP. Prof. Jim Whitehead CMPS 183, Spring 2006 May 15, 2006 Connecting to a Database Using PHP Prof. Jim Whitehead CMPS 183, Spring 2006 May 15, 2006 Rationale Most Web applications: Retrieve information from a database to alter their on-screen display Store user

More information

Getting started with API testing

Getting started with API testing Technical white paper Getting started with API testing Test all layers of your composite applications, not just the GUI Table of contents Executive summary... 3 Introduction... 3 Who should read this document?...

More information

Background Information

Background Information User Guide 1 Background Information ********************************Disclaimer******************************************** This is a government system intended for official use only. Using this system

More information

Software Requirements Specification

Software Requirements Specification CSL740 Software Engineering Course, IIT Delhi Software Requirements Specification Submitted By Abhishek Srivastava (2011EEY7511) Anil Kumar (2009CS10180) Jagjeet Singh Dhaliwal (2008CS50212) Ierum Shanaya

More information

for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later

for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later Copyright 2014, Lucid Innovations Limited. All Rights Reserved Lucid Research

More information

Preface. Motivation for this Book

Preface. Motivation for this Book Preface Asynchronous JavaScript and XML (Ajax or AJAX) is a web technique to transfer XML data between a browser and a server asynchronously. Ajax is a web technique, not a technology. Ajax is based on

More information

ALM - Key benefits. t: +31(0) 88 1221 800 f: +31(0) 88 1221 899. Oude Oeverstraat 120-5 6811 JZ Arnhem The Netherlands. ALM Key benefits 01/01/2014 1

ALM - Key benefits. t: +31(0) 88 1221 800 f: +31(0) 88 1221 899. Oude Oeverstraat 120-5 6811 JZ Arnhem The Netherlands. ALM Key benefits 01/01/2014 1 ALM - Key benefits Oude Oeverstraat 120-5 6811 JZ Arnhem The Netherlands t: +31(0) 88 1221 800 f: +31(0) 88 1221 899 ALM Key benefits 01/01/2014 1 Key benefits What problems are we solving? Active Login

More information

Can I manually trigger secure e-mail to encrypt a message that does not contain PI or other sensitive information? Yes, by use of the word TID.

Can I manually trigger secure e-mail to encrypt a message that does not contain PI or other sensitive information? Yes, by use of the word TID. How does Secure E-mail work? When an e-mail is initiated or responded to the secure e-mail algorithm will determine if the e-mail needs to be encrypted based on predefined criteria. If it meets the predefined

More information

User Guide of edox Archiver, the Electronic Document Handling Gateway of

User Guide of edox Archiver, the Electronic Document Handling Gateway of User Guide of edox Archiver, the Electronic Document Handling Gateway of project v0.7 SCI-BUS is supported by the FP7 Capacities Programme under contract nr RI-283481 Table of Contents 1 INTRODUCTION...

More information

UC Irvine Health Secure Mail Message Center

UC Irvine Health Secure Mail Message Center UC Irvine Health Secure Mail Message Center UC Irvine Health is committed to protecting the privacy of its member s information, especially their protected health information (PHI). UC Irvine Health is

More information

Quick Installation Guide

Quick Installation Guide avast! Small Office Administration Quick Installation Guide avast! Reseller Technical Support reseller-support@avast.com Operating Systems Supported System Requirements Windows XP SP3 or higher, Windows

More information

Vendor User Accounts managing your NAP User Account

Vendor User Accounts managing your NAP User Account This guide explains how to request and manage your NAP User Account so that you may access Web Status. Topics include: Reactivating an existing NAP User Account Requesting a NAP User Account Managing your

More information

Requirement Management with the Rational Unified Process RUP practices to support Business Analyst s activities and links with BABoK

Requirement Management with the Rational Unified Process RUP practices to support Business Analyst s activities and links with BABoK IBM Software Group Requirement Management with the Rational Unified Process RUP practices to support Business Analyst s activities and links with BABoK Jean-Louis Maréchaux Software IT Specialist IBM Rational

More information

SCAS: AN IMPROVED SINGLE SIGN-ON MODEL BASE ON CAS

SCAS: AN IMPROVED SINGLE SIGN-ON MODEL BASE ON CAS SCAS: AN IMPROVED SINGLE SIGN-ON MODEL BASE ON CAS 1,2 XIANG LIYUN, 1 FANG ZHIYI, 1 SUN HONGYU 1 College of Computer Science and Technology, Jilin University, Changchun, China 2 Department of Computer

More information

Version 1.7. Inbound Email Integration (POP3 and IMAP) Installation, Configuration and User Guide. Last updated October 2011

Version 1.7. Inbound Email Integration (POP3 and IMAP) Installation, Configuration and User Guide. Last updated October 2011 Version 1.7 Inbound Email Integration (POP3 and IMAP) Installation, Configuration and User Guide Last updated October 2011 1 Introduction and Overview... 1 2 The Case for Email monitoring... 2 3 Installation

More information

NetClient CS GPP Client Portal User Guide

NetClient CS GPP Client Portal User Guide NetClient CS GPP Client Portal User Guide Version 11.x TL 28094 (06/20/14) Copyright Information Text copyright 2002-2014 by Thomson Reuters. All rights reserved. Video display images copyright 2002-2014

More information

CyberAds Studio. Ready to Deploy Intranets Small to mid-sized companies February 2003

CyberAds Studio. Ready to Deploy Intranets Small to mid-sized companies February 2003 CyberAds Studio Ready to Deploy Intranets Small to mid-sized companies February 2003 www.cyberadsstudio.com 190 Jill Lane, Suite 1 Laurel, MD 20724 Tel: (301) 776 1446 Sales@cyberadsstudio.com 1 Product

More information

Note: Password must be 7-16 characters and contain at least one uppercase letter and at least one number.

Note: Password must be 7-16 characters and contain at least one uppercase letter and at least one number. Krowd Technical FAQ TEAM MEMBERS If you need assistance with krowd, please call the TEAM MEMBER Help Desk at 800-832-7336. We want to hear your suggestions and feedback! Please join the krowd Source community

More information

Automate Your BI Administration to Save Millions with Command Manager and System Manager

Automate Your BI Administration to Save Millions with Command Manager and System Manager Automate Your BI Administration to Save Millions with Command Manager and System Manager Presented by: Dennis Liao Sr. Sales Engineer Date: 27 th January, 2015 Session 2 This Session is Part of MicroStrategy

More information

TROUBLESHOOTING RSA ACCESS MANAGER SINGLE SIGN-ON FOR WEB-BASED APPLICATIONS

TROUBLESHOOTING RSA ACCESS MANAGER SINGLE SIGN-ON FOR WEB-BASED APPLICATIONS White Paper TROUBLESHOOTING RSA ACCESS MANAGER SINGLE SIGN-ON FOR WEB-BASED APPLICATIONS Abstract This white paper explains how to diagnose and troubleshoot issues in the RSA Access Manager single sign-on

More information

Information Technology Services Classification Level Range C Reports to. Manager ITS Infrastructure Effective Date June 29 th, 2015 Position Summary

Information Technology Services Classification Level Range C Reports to. Manager ITS Infrastructure Effective Date June 29 th, 2015 Position Summary Athabasca University Professional Position Description Section I Position Update Only Information Position Title Senior System Administrator Position # 999716,999902 Department Information Technology Services

More information

How to Work with HEAT Self Service

How to Work with HEAT Self Service Division of Information Technology at UNCP How to Work with HEAT Self Service About This Document This document provides end-user instructions on using the HEAT Self Service (HSS) application to create,

More information

Training module 2 Installing VMware View

Training module 2 Installing VMware View Training module 2 Installing VMware View In this second module we ll install VMware View for an End User Computing environment. We ll install all necessary parts such as VMware View Connection Server and

More information