A new Design Approach for Developing Electronic Health Record Application on Android

Size: px
Start display at page:

Download "A new Design Approach for Developing Electronic Health Record Application on Android"

Transcription

1 A new Design Approach for Developing Electronic Health Record Application on Android H. Sarojadevi 1,, Pallavi Munihanumaiah 2,B.A.Mohan 1,S.Ramya 1 and M. Sushma 1 1 Department of CSE, Nitte Meenakshi Institute of Technology, Yelahanka, Bangalore , India. 2 Project Scientist, Karnataka State Remote Sensing Application Centre, MS Building 4th phase 6th floor, Bangalore , India. hsarojadevi@gmail.com Abstract. Android is an operating system for mobile devices such as mobile phones, handheld computers and netbooks. Android is developed by Google and is based upon the Linux kernel and GNU software. The main advantage of Android is a rich library to enhance and ease communication as well as networking. PHP is compatible with almost all servers used today (Apache, IIS, etc.), easy to learn and it runs efficiently on the server side. In the development of any simple Android-client application, PHP is being used as the serverside scripting language. This paper presents details of design and development of Electronic Health Record application using Android mobile client and PHP application server, adopting service oriented architecture. Purpose of this kind of mobile deployment is to provide health services remotely for normal and emergency conditions. The developed application was tested for correct functionality and analyzed for performance using Android tracing and profiling feature. The methodology and the design presented find use in many other Android application developments, offering user convenience as well as flexibility for adding more features. Keywords: Electronic health record, Service-oriented architecture, Android, PHP, HTTP, Performance. 1. Introduction and Background Android is the most emerging open platform [2] today for mobile application development and its growth rate is high. It is based on Linux operating system [1] providing wide range of features and a lot of scope for high quality Android application development. PHP is considered perfect backend for client- server implementation, highly scalable and light weight. Over 35% of the web runs PHP today. Android allows service based deployment and development of mobile internet applications [3], which are of increased use. Developing Android based medical information services using Google Maps [6] is gaining increased importance. An Electronic Health Record (EHR) [5] is a computerized health record created in an organization that delivers health care, in an environment such as a hospital or physician s office. Electronic health record tends to be a part of a local stand-alone health information system that allows storage, retrieval and modification of records. The EHR provides the essential infrastructure required to enable the adoption and effective use of new healthcare modalities [7] and information management tools such as integrated care, evidence-based medicine, computer-based decision support, care planning and pathways, and outcome analysis. The EHR ensures quality of patient care and safety. Accessing and processing the EHR information through the mobile handheld devices provide increased flexibility and speed, besides enhancing the real-time support, which is critical for life in applications pertaining to health. Main purpose behind this kind of mobile deployment is to provide remote field operations like medical services for normal and medical emergency conditions. While such work on EHR can be found in literature [5], thrust for its wider deployment and optimized performance is increasing. Adding functionalities such as accessing and transferring of CT, MRI or ultrasound images instantly to/from the other handheld device or server has become the need of the hour, which was addressed in the project work presented in this paper. Corresponding author Elsevier Publications 2013.

2 H. Sarojadevi, et al. Figure 1. Software architecture for the EHR application. 2. Design Designing mobile based medical services over an interconnect network is challenging because of the daunting constraints of a mobile environment. Bandwidth, processor speed, screen size and resolution, memory consumption, battery life, and user interfaces are the major issues. Security for login and user authentication is also an important issue [4]. The electronic health record as proposed in this project is an approach to access and process patient related information from the database as and when required. Further, the information is made available across the network on mobile devices and vice-versa. Overall architecture designed for the proposed work is described below, with dataflow diagrams of Electronic Health Record (EHR) in figure 2. Security is ensured by providing login feature and patient bracelet ID based method of authentication. 2.1 Architecture The software architecture designed for the proposed EHR application is based on service oriented architecture as shown in figure 1, which is a multi-tier architecture comprising mobile client, app-server and database server. The database connectivity is from the server side. The app-server comprises the layer with application processing and interfaces (2nd layer) and the application management layer (3rd layer). The topmost (first) layer is Client-Side Android SDK based software, which is specific to certain roles for individual user, for instance, doctors and field operators (lab technicians, clinicians) in Electronic Health Record Application. In the second layer Android applications make the data transfer using XML (Extensible Mark-Up language) and Java; and get connected to PHP server through the HTTP services provided in the third layer. On the server side, PHP sends/receives data to/from MySQL database using the APIs in the database layer. 2.2 Data flow diagram Figure 2 is a data flow diagram of Electronic Health Record [EHR] application, wherein Doctor or Field Operators can view the patient details from their Android Mobiles, which is connected to centralised EHR system provided by hospital/clinic. Patient detail includes personal information and medical history, diagnostic images etc. This information can be accessed by just entering Patient ID or by showing bar-coded Patient s bracelet image. 3. Implementation Details 3.1 Software used Operating System (Windows 7) JDK & JRE 7 ANT Android SDK ADT Eclipse IDE 640 Elsevier Publications 2013.

3 A new Design Approach for Developing Electronic Health Record Application on Android Figure 2. Electronic health record application-data flow diagram. PHP: the implementation of scripts. MySQL DBMS Apache: a web server (Wamp Server). We have used Android SDK that supports Java 1.5 and translated the byte code to its own custom Dalvik byte code optimized for mobile devices and tested the output on emulator as well as by porting on to Samsung mobile device. 3.2 Steps followed in electronic health record application Connection from mobile app to the server is established. Login Verification for Doctor or Field Operators is done. On successful login, Patient bracelet barcode image is captured from the mobile camera and decoded. The obtained decoded data (Patient ID) is sent via the network to the server. After verification of Patient ID by the server, obtain the required information such as Patient personal details, diagnosis, prescription (available only for doctors) etc. Field operators are allowed to upload the patient details and images. Result or Ack is sent back to the Doctor or Field Operator Connection is terminated from the mobile app with the server 4. Results And Analysis Home page of EHR application navigates to the main page wherein desired designation i.e., Doctor or Field Operator can be selected. After selecting Doctor as designation, doctor s workflow and corresponding login page would be selected; IP Address of the system must be given. If the username and password match with the server s database, login authentication is given. Next, uploaded bar-coded Patient s bracelet image is decoded and Patient ID is fetched and displayed, provided the patient ID matches with that in the server database. On clicking the Proceed button, next page for Patient ID verification is displayed. The dynamic button Proceed will navigate the user to the next page in which patient details are available as shown in figure 3. A number of options are displayed in the patient details page, viz., Basic Patient Details, Diagnosis, Prescription etc. To view details about a patient, we need to click on a particular radio button, which displays desired contents, including the CT/MRI/Ultrasound kind of medical images. Figure 4 displays a medical image of a patient. Doctor can prescribe (provide treatment/management) for the patient based on the previous diagnosis page, as shown in figure 5. The presciption detail can be added to the patient database at this point, for which an acknowledgement will be generated. Performance of Android application is determined by using Android trace view profiling. The profiling panel includes time panel and profile panel. Time panel indicates time taken by each thread in a module such as Patient s bracelet decoding module, to execute. Profile panel shows inclusive time, which is the time spent in module/method Elsevier Publications

4 H. Sarojadevi, et al. Figure 3. Patient s Personal information. Figure 4. Patient s Diagnosis information. Figure 5. Doctor s prescription. and in any called function; and exclusive time, which is the time spent in each method, along with the percentage time taken, total number of calls and recursive calls, and lastly number of calls, out of total number of calls to this module. Figure 6 shows the performance of various workflows of the EHR application for which the profile information is given in table 1. The workflows are corresponding to Patient bracelet image decoding (workflow1), Patient ID verification (workflow2), Diagnostic image retrieval (workflow3), and Text information retrieval (workflow4). Time indicated along the vertical axis in the graph denotes the execution time taken by these modules. Timing performance depends on various parameters such as the network, event actions, data size, text and image. It can be observed from the graph in figure 6 that there is increased execution time whenever images are involved, which indicates potential 642 Elsevier Publications 2013.

5 A new Design Approach for Developing Electronic Health Record Application on Android Figure 6. Performance of typical workflows of the EHR application. Table 1. Application workflows and their execution time. Application workflow Time taken in milliseconds EHR Application Workflow1 610 EHR Application Workflow2 560 EHR Application Workflow3 630 EHR Application Workflow4 480 parts of the application for performance improvement. The performance analysis approach given in this work can be useful for other Android application development work as well. 5. Conclusion Android Mobile technologies represent convenient, fast and popular technology. Developing Consumer applications on Android with MySQL through PHP provides fast, high quality and innovative services, immediate access to information anytime and anywhere. Android is more realistic mobile device open-source software and enables quick application porting on to the device with interactive features and rich JAVA libraries. In this project an electronic health record application has been designed and developed on Android in a Client-Server mobile network environment. An Electronic Health Record application deals with the processing of patient information, which is communicated between remote field points and hospital environment using service oriented architecture. The application developed is tested for correct functionality and analyzed for timing performance using Android tracing and profiling feature. Performance measurement indicates that text or simple data processing consumes less time and resource, whereas images take more time and resource. The performance analysis carried out is useful for further performance optimization of the application. The methodology and the design presented can be adopted for many other Android developments as well, which offer user convenience and flexibility for implementing added features into mobile application. References [1] Abhyudai Shanker and Somya Lal, Android Porting Concepts, IEEE 3rd International Conference Electronics Computer Technology, 2011, pp [2] Yonghong Wu, Jianchao Luo and Lei Luo, Porting mobile web application engine to the Android platform, IEEE 10th International conference on Computer and Information Technology (CIT), June 29 July 1, 2010, pp [3] Hyun Jung La and Soo Dong Kim, Department of Computer Science Soongsil University, A Service-based Approach to Developing Android Mobile Internet Device (MID) Applications, IEEE International conference, Jan14 15, 2009, pp [4] William Enck, Machigar Ongtang and Patrick McDaniel, Pennsylvania State University, Understanding Android Security, Security and privacy by IEEE Computer Society, January/February 2009, pp Elsevier Publications

6 H. Sarojadevi, et al. [5] Dimitris Tychalas and Athanasios Kakarountas, Dept. of Computer Science and Biomedical Informatics, Planning and Development of an Electronic Health Record Client based on the Android Platform, 14th Panhellenic conference, Sept , 2010, pp [6] Chao-Tung Yang, Yen-Yu Chu and Shyh-Chang Tsaur, Implementation of a Medical Information Service on Android Mobile Devices, 4th International Conference on New Trends in Information Science and Service Science (NISS), May 11 13, 2010, pp [7] Rob Rimbold, Scott Wilson and Steve Wilson, Accessing Medical Records on Mobile Devices Part I, 2011 Pegasus Imaging Corporation, DBA Accusoft Pegasus. 644 Elsevier Publications 2013.

Remote Android Assistant with Global Positioning System Tracking

Remote Android Assistant with Global Positioning System Tracking IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661, p- ISSN: 2278-8727Volume 16, Issue 2, Ver. III (Mar-Apr. 2014), PP 95-99 Remote Android Assistant with Global Positioning System Tracking

More information

1. Introduction. 2. Mobile Healthcare Systems

1. Introduction. 2. Mobile Healthcare Systems 2011 International Conference on Signal, Image Processing and Applications With workshop of ICEEA 2011 IPCSIT vol.21 (2011) (2011) IACSIT Press, Singapore Medical Image Data Management System in Mobile

More information

VOL. 2, NO. 1, January 2012 ISSN 2225-7217 ARPN Journal of Science and Technology 2010-2012 ARPN Journals. All rights reserved

VOL. 2, NO. 1, January 2012 ISSN 2225-7217 ARPN Journal of Science and Technology 2010-2012 ARPN Journals. All rights reserved Mobile Application for News and Interactive Services L. Ashwin Kumar Department of Information Technology, JNTU, Hyderabad, India loka.ashwin@gmail.com ABSTRACT In this paper, we describe the design and

More information

Smart Shopping- An Android Based Shopping Application

Smart Shopping- An Android Based Shopping Application Smart Shopping- An Android Based Shopping Application 1 Adarsh Borkar, 2 Madhura Ansingkar, 3 Monali Khobragade, 4 Pooja Nashikkar, 5 Arti Raut 1,2,3,4 Department of Computer Science and Engineering, 5

More information

Student Attendance Through Mobile Devices

Student Attendance Through Mobile Devices Student Attendance Through Mobile Devices Anurag Rastogi Kirti Gupta Department of Computer Science and Engineering National Institute of Technology Rourkela Rourkela-769 008, Odisha, India Student Attendance

More information

TRACKING CANCER PATIENTS MEDICAL HISTORY USING WIRELESS EMERGING TECHNOLOGY : NEAR FIELD COMMUNICATION

TRACKING CANCER PATIENTS MEDICAL HISTORY USING WIRELESS EMERGING TECHNOLOGY : NEAR FIELD COMMUNICATION TRACKING CANCER PATIENTS MEDICAL HISTORY USING WIRELESS EMERGING TECHNOLOGY : NEAR FIELD COMMUNICATION ABSTRACT Shivang Bhagat, Darshana Upadhyay and Parita Oza Department of Computer Science and Engineering

More information

A Cost Effective GPS-GPRS Based Women Tracking System and Women Safety Application using Android Mobile

A Cost Effective GPS-GPRS Based Women Tracking System and Women Safety Application using Android Mobile A Cost Effective GPS-GPRS Based Women Tracking System and Women Safety Application using Android Mobile Devendra Thorat, Kalpesh Dhumal, Aniket Sadaphule, Vikas Arade B.E Computer Engineering, Navsahyadri

More information

An Android Enabled Mobile Cloud Framework for Development of Electronic Healthcare Monitoring System using VPN Connection

An Android Enabled Mobile Cloud Framework for Development of Electronic Healthcare Monitoring System using VPN Connection ISSN: 2321-7782 (Online) Volume 1, Issue 7, December 2013 International Journal of Advance Research in Computer Science and Management Studies Research Paper Available online at: www.ijarcsms.com An Android

More information

RoverPal - A Mobile Payment Application

RoverPal - A Mobile Payment Application White Paper RoverPal - A Mobile Payment Application Introduction Online shopping has been a favorable experience with most of us. Still, we come across instances where we are out on shopping and we run

More information

The deployment of OHMS TM. in private cloud

The deployment of OHMS TM. in private cloud Healthcare activities from anywhere anytime The deployment of OHMS TM in private cloud 1.0 Overview:.OHMS TM is software as a service (SaaS) platform that enables the multiple users to login from anywhere

More information

Sage Intergy 6.10 Architecture Guide

Sage Intergy 6.10 Architecture Guide Reference Confidential This document and the information it contains are the confidential information of Sage. Neither this document nor the information it contains may be disclosed to any third party

More information

Module Title: Software Development A: Mobile Application Development

Module Title: Software Development A: Mobile Application Development Module Title: Software Development A: Mobile Application Development Module Code: SDA SDA prerequisites: CT1, HS1, MS001, CA Award of BSc. In Information Technology The Bachelor of Science in Information

More information

Preamble: Remote Storage in Android Using SCTP

Preamble: Remote Storage in Android Using SCTP Preamble: Remote Storage in Android Using SCTP Mr. Nikhil Vijay Patil 1, Prof.Sandeep Khanna 2 1 M.E.Second Year Student, Padm.Dr.V.B.Kolte College of Engineering, Malkapur Dist.Buldhana (M.S.) India.

More information

Reminders. Lab opens from today. Many students want to use the extra I/O pins on

Reminders. Lab opens from today. Many students want to use the extra I/O pins on Reminders Lab opens from today Wednesday 4:00-5:30pm, Friday 1:00-2:30pm Location: MK228 Each student checks out one sensor mote for your Lab 1 The TA will be there to help your lab work Many students

More information

Implementing Mobile Thin client Architecture For Enterprise Application

Implementing Mobile Thin client Architecture For Enterprise Application Research Paper Implementing Mobile Thin client Architecture For Enterprise Paper ID IJIFR/ V2/ E1/ 037 Page No 131-136 Subject Area Information Technology Key Words JQuery Mobile, JQuery Ajax, REST, JSON

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

Final Year Project Interim Report

Final Year Project Interim Report 2013 Final Year Project Interim Report FYP12016 AirCrypt The Secure File Sharing Platform for Everyone Supervisors: Dr. L.C.K. Hui Dr. H.Y. Chung Students: Fong Chun Sing (2010170994) Leung Sui Lun (2010580058)

More information

Implementation of Android Application to Search nearby Places with GPS Navigation Technology

Implementation of Android Application to Search nearby Places with GPS Navigation Technology Implementation of Android Application to Search nearby Places with GPS Navigation Technology Priyank.S.Patil 1, Dr. S. K. Shah 2 PG Student [VLSI and Embedded Systems], Dept. of E and TC, Smt. Kashibai

More information

Best Practices: Extending Enterprise Applications to Mobile Devices

Best Practices: Extending Enterprise Applications to Mobile Devices Best Practices: Extending Enterprise Applications to Mobile Devices by Kulathumani Hariharan Summary: Extending enterprise applications to mobile devices is increasingly becoming a priority for organizations

More information

Implementing SAAS: Cloud Computing and Android Based Application Framework for C Programming

Implementing SAAS: Cloud Computing and Android Based Application Framework for C Programming IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661, p- ISSN: 2278-8727Volume 11, Issue 5 (May. - Jun. 2013), PP 74-78 Implementing SAAS: Cloud Computing and Android Based Application Framework

More information

Introduction to Android

Introduction to Android Introduction to Android Poll How many have an Android phone? How many have downloaded & installed the Android SDK? How many have developed an Android application? How many have deployed an Android application

More information

Thin@ System Architecture V3.2. Last Update: August 2015

Thin@ System Architecture V3.2. Last Update: August 2015 Thin@ System Architecture V3.2 Last Update: August 2015 Introduction http://www.thinetsolution.com Welcome to Thin@ System Architecture manual! Modern business applications are available to end users as

More information

Use Cases for Argonaut Project. Version 1.1

Use Cases for Argonaut Project. Version 1.1 Page 1 Use Cases for Argonaut Project Version 1.1 July 31, 2015 Page 2 Revision History Date Version Number Summary of Changes 7/31/15 V 1.1 Modifications to use case 5, responsive to needs for clarification

More information

AN INFORMATION AGENT SYSTEM FOR CLOUD COMPUTING BASED LOCATION TRACKING

AN INFORMATION AGENT SYSTEM FOR CLOUD COMPUTING BASED LOCATION TRACKING I J I T E ISSN: 2229-7367 3(1-2), 2012, pp. 63-68 AN INFORMATION AGENT SYSTEM FOR CLOUD COMPUTING BASED LOCATION TRACKING ANWAR BASHA H. 1, SAMUEL GEOFFREY LAWRENCE 2 AND INDUMATHI, K. 3 1 Department of

More information

High Level Design Distributed Network Traffic Controller

High Level Design Distributed Network Traffic Controller High Level Design Distributed Network Traffic Controller Revision Number: 1.0 Last date of revision: 2/2/05 22c:198 Johnson, Chadwick Hugh Change Record Revision Date Author Changes 1 Contents 1. Introduction

More information

DESIGN AND IMPLEMENTATION OF A WEB-BASED GIS FOR PUBLIC HEALTHCARE DECISION SUPPORT SYSTEM IN ZARIA METROPOLIS

DESIGN AND IMPLEMENTATION OF A WEB-BASED GIS FOR PUBLIC HEALTHCARE DECISION SUPPORT SYSTEM IN ZARIA METROPOLIS DESIGN AND IMPLEMENTATION OF A WEB-BASED GIS FOR PUBLIC HEALTHCARE DECISION SUPPORT SYSTEM IN ZARIA METROPOLIS F. B. Abdullahi 1, M.M Lawal 2 & J.O Agushaka 3 Department Of Mathematics, Ahmadu Bello University,

More information

Design Approaches of Web Application with Efficient Performance in JAVA

Design Approaches of Web Application with Efficient Performance in JAVA IJCSNS International Journal of Computer Science and Network Security, VOL.11 No.7, July 2011 141 Design Approaches of Web Application with Efficient Performance in JAVA OhSoo Kwon and HyeJa Bang Dept

More information

Islamic University of Gaza. Faculty of Engineering. Computer Engineering Department. Mobile Computing ECOM 5341. Eng. Wafaa Audah.

Islamic University of Gaza. Faculty of Engineering. Computer Engineering Department. Mobile Computing ECOM 5341. Eng. Wafaa Audah. Islamic University of Gaza Faculty of Engineering Computer Engineering Department Mobile Computing ECOM 5341 By Eng. Wafaa Audah June 2013 1 Setting Up the Development Environment and Emulator Part 1:

More information

ANDROID DEVELOPER RESUME USA

ANDROID DEVELOPER RESUME USA Android Developer resume usa 1 of 5 1/12/2015 2:28 PM ANDROID DEVELOPER RESUME USA.NET Developers/Architects Resumes Please note that this is a not a Job Board - We are an I.T Staffing Company and we provide

More information

Implementing SAAS: Cloud Computing and Android Based Application Framework for.net Programming

Implementing SAAS: Cloud Computing and Android Based Application Framework for.net Programming Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 4, Issue. 4, April 2015,

More information

CMR Journal of Engineering and Technology Vol.1 Issue.1 January 2016

CMR Journal of Engineering and Technology Vol.1 Issue.1 January 2016 VEHICLE TRACKING SYSTEM WITH ANDROID APP SUPPORT ABSTRACT M. Sudhakar Professor Dept of ECE CMR College of Engineering & Technology Kandlakoya, Medchal Rd, Hyderabad e-mail: vp@cmrcet.org K.Kalyani PG

More information

LIBRARY ACCESS SYSTEM SMARTPHONE APPLICATION USING ANDROID

LIBRARY ACCESS SYSTEM SMARTPHONE APPLICATION USING ANDROID Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 4, Issue. 3, March 2015,

More information

Introduction to Android Development. Jeff Avery CS349, Mar 2013

Introduction to Android Development. Jeff Avery CS349, Mar 2013 Introduction to Android Development Jeff Avery CS349, Mar 2013 Overview What is Android? Android Architecture Overview Application Components Activity Lifecycle Android Developer Tools Installing Android

More information

Intelligent Database Monitoring System using ARM9 with QR Code

Intelligent Database Monitoring System using ARM9 with QR Code Intelligent Database Monitoring System using ARM9 with QR Code Jyoshi Niklesh 1, Dhruva R. Rinku 2 Department of Electronics and Communication CVR College of Engineering, JNTU Hyderabad Hyderabad, India

More information

Lab 0 (Setting up your Development Environment) Week 1

Lab 0 (Setting up your Development Environment) Week 1 ECE155: Engineering Design with Embedded Systems Winter 2013 Lab 0 (Setting up your Development Environment) Week 1 Prepared by Kirill Morozov version 1.2 1 Objectives In this lab, you ll familiarize yourself

More information

Challenges in Android Application Development: A Case Study

Challenges in Android Application Development: A Case Study Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 4, Issue. 5, May 2015, pg.294

More information

T14 RUMatricula Phase II. Section 1 Metaphor and requirements

T14 RUMatricula Phase II. Section 1 Metaphor and requirements Section 1 Metaphor and requirements RUMatricula is a system that aims at replacing current UPRM terminal-based course selection software with a web-based and mobile-friendly alternative that is simple

More information

Running a Program on an AVD

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

More information

Cloud-based Identity and Access Control for Diagnostic Imaging Systems

Cloud-based Identity and Access Control for Diagnostic Imaging Systems Cloud-based Identity and Access Control for Diagnostic Imaging Systems Weina Ma and Kamran Sartipi Department of Electrical, Computer and Software Engineering University of Ontario Institute of Technology

More information

Mobile Field Service Engineer Application

Mobile Field Service Engineer Application International Journal of Computer Sciences and Engineering Open Access Technical Paper Volume-04, Issue-02 E-ISSN: 2347-2693 Mobile Field Service Engineer Application Akash Budholia 1, Rishit Mehta 2*,

More information

A Research Using Private Cloud with IP Camera and Smartphone Video Retrieval

A Research Using Private Cloud with IP Camera and Smartphone Video Retrieval , pp.175-186 http://dx.doi.org/10.14257/ijsh.2014.8.1.19 A Research Using Private Cloud with IP Camera and Smartphone Video Retrieval Kil-sung Park and Sun-Hyung Kim Department of Information & Communication

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

From Centralization to Distribution: A Comparison of File Sharing Protocols

From Centralization to Distribution: A Comparison of File Sharing Protocols From Centralization to Distribution: A Comparison of File Sharing Protocols Xu Wang, Teng Long and Alan Sussman Department of Computer Science, University of Maryland, College Park, MD, 20742 August, 2015

More information

Software Requirement Specification For Flea Market System

Software Requirement Specification For Flea Market System Software Requirement Specification For Flea Market System By Ilya Verlinsky, Alexander Sarkisyan, Ambartsum Keshishyan, Igor Gleyser, Andrey Ishuninov 1 INTRODUCTION 1.1 Purpose 1.1.1 Purpose of SRS document

More information

Remote Desktop Access through Android Mobiles and Android Mobiles Access through Web Browser

Remote Desktop Access through Android Mobiles and Android Mobiles Access through Web Browser Remote Desktop Access through Android Mobiles and Android Mobiles Access through Web Browser 1 Karan Sandeep Bhandari, 2 Vishnu Baliram Mandole, 3 Akash Dattatray Munde, 4 Sachin B. Takmare Bharati Vidyapeeth

More information

Online Student Attendance Management System using Android

Online Student Attendance Management System using Android Online Student Attendance Management System using Android ABSTRACT: We have seen over the years that the process of manual attendance has been carried outacross almost all educational institutions. The

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

Managing Healthcare Records via Mobile Applications

Managing Healthcare Records via Mobile Applications Managing Healthcare Records via Mobile Applications Eileen Y.P. Li, C.T. Lau and S. Chan Abstract In this paper, a mobile application that facilitates users in managing healthcare records is proposed.

More information

Testing and Deploying IBM Rational HATS 8.5 Applications on Apache Geronimo Server 3.1

Testing and Deploying IBM Rational HATS 8.5 Applications on Apache Geronimo Server 3.1 Testing and Deploying IBM Rational HATS 8.5 Applications on Apache Geronimo Server 3.1 Royal Cyber Inc. Modernized e-business solutions Overview This white paper explains how to run, test and deploy IBM

More information

Homework 9 Android App for Weather Forecast

Homework 9 Android App for Weather Forecast 1. Objectives Homework 9 Android App for Weather Forecast Become familiar with Android Studio, Android App development and Facebook SDK for Android. Build a good-looking Android app using the Android SDK.

More information

GV-iView HD V1 for ipad

GV-iView HD V1 for ipad GV-iView HD V1 for ipad Article ID: GV10-11-03-07 Release Date: 03/07/2011 GV-iView HD V1 function is introduced to support ipad for the mobile surveillance application. System Requirements Handheld Device

More information

HL7 and SOA Based Distributed Electronic Patient Record Architecture Using Open EMR

HL7 and SOA Based Distributed Electronic Patient Record Architecture Using Open EMR HL7 and SOA Based Distributed Electronic Patient Record Architecture Using Open EMR Priti Kalode 1, Dr Onkar S Kemkar 2, Dr P R Gundalwar 3 Research Student, Dept of Comp Sci &Elec, RTM Nagpur University

More information

emedyx Emergeny Smart Card EMR System: Card Holder Module

emedyx Emergeny Smart Card EMR System: Card Holder Module CMSC 190 SPECIAL PROBLEM, INSTITUTE OF COMPUTER SCIENCE 1 emedyx Emergeny Smart Card EMR System: Card Holder Module Elizabeth D. Ruetas and Joseph Anthony C. Hermocilla Abstract The emedyx system is an

More information

Time Monitoring Tool Software Requirements Specifications. Version <1.0>

Time Monitoring Tool Software Requirements Specifications. Version <1.0> Time Monitoring Tool Software Requirements Specifications Version Revision History Date Version Description Author First version Martin Robillard Page 2 of 18 Table of Contents

More information

NAS 221 Remote Access Using Cloud Connect TM

NAS 221 Remote Access Using Cloud Connect TM NAS 221 Remote Access Using Cloud Connect TM Access the files on your NAS remotely with Cloud Connect TM A S U S T O R C O L L E G E COURSE OBJECTIVES Upon completion of this course you should be able

More information

Web Based Application Tool (WBAT) For SMS Implementation!

Web Based Application Tool (WBAT) For SMS Implementation! Web Based Application Tool (WBAT) For SMS Implementation! Non-Compliance could kill the Viability of your Business Aircraft Operations! FDTL (Fixed & Rotary Wing) Safety Data Management Hazard Identification

More information

International Journal of Advanced Engineering Research and Science (IJAERS) Vol-2, Issue-11, Nov- 2015] ISSN: 2349-6495

International Journal of Advanced Engineering Research and Science (IJAERS) Vol-2, Issue-11, Nov- 2015] ISSN: 2349-6495 International Journal of Advanced Engineering Research and Science (IJAERS) Vol-2, Issue-11, Nov- 2015] Survey on Automation Testing Tools for Mobile Applications Dr.S.Gunasekaran 1, V. Bargavi 2 1 Department

More information

1) SETUP ANDROID STUDIO

1) SETUP ANDROID STUDIO 1) SETUP ANDROID STUDIO This process takes approximately 15-20 Minutes dependent upon internet speed and computer power. We will only be covering the install on Windows. System Requirements Android Studio

More information

Development of Mobile Library Application Based on Android in Universitas Ahmad Dahlan

Development of Mobile Library Application Based on Android in Universitas Ahmad Dahlan Development of Mobile Library Application Based on Android in Universitas Ahmad Dahlan Yana Hendriana Lecturer, Department of Informatics, Faculty of Industrial Technology, Universitas Ahmad Dahlan Yogyakarta,

More information

CROSS PLATFORM FOR MOBILE COMPUTING

CROSS PLATFORM FOR MOBILE COMPUTING CROSS PLATFORM FOR MOBILE COMPUTING Richa Dhakan, Akshay Gujar, Pratik Mache Apurv Manjrekar First Author Affiliation Second Author Affiliation Third author Affiliation Fourth author affiliation Richa.dhakan@yahoo.com

More information

WLAN TRAFFIC GRAPHING APPLICATION USING SIMPLE NETWORK MANAGEMENT PROTOCOL *

WLAN TRAFFIC GRAPHING APPLICATION USING SIMPLE NETWORK MANAGEMENT PROTOCOL * WLAN TRAFFIC GRAPHING APPLICATION USING SIMPLE NETWORK MANAGEMENT PROTOCOL * Bhargavi Hiremagalur and Dulal C. Kar Department of Computing and Mathematical Sciences, Texas A&M University-Corpus Christi,

More information

Elastic Calculator : A Mobile Application for windows mobile using Mobile Cloud Services

Elastic Calculator : A Mobile Application for windows mobile using Mobile Cloud Services Elastic Calculator : A Mobile Application for windows mobile using Mobile Cloud Services K.Lakshmi Narayanan* & Nadesh R.K # School of Information Technology and Engineering, VIT University Vellore, India

More information

Medic-One Private Emergency Medical Service Study Case http://www.medic-one.org. 15 May 2009 Seagaia Meeting 2009, Okinawa.

Medic-One Private Emergency Medical Service Study Case http://www.medic-one.org. 15 May 2009 Seagaia Meeting 2009, Okinawa. Research on Electronic Medical/Health Record System suited for Developing Countries Environment (Indonesia) Medic-One Private Emergency Medical Service Study Case http://www.medic-one.org 15 May 2009 Seagaia

More information

COURSE CONTENT FOR WINTER TRAINING ON Web Development using PHP & MySql

COURSE CONTENT FOR WINTER TRAINING ON Web Development using PHP & MySql COURSE CONTENT FOR WINTER TRAINING ON Web Development using PHP & MySql 1 About WEB DEVELOPMENT Among web professionals, "web development" refers to the design aspects of building web sites. Web development

More information

Università Degli Studi di Parma. Distributed Systems Group. Android Development. Lecture 1 Android SDK & Development Environment. Marco Picone - 2012

Università Degli Studi di Parma. Distributed Systems Group. Android Development. Lecture 1 Android SDK & Development Environment. Marco Picone - 2012 Android Development Lecture 1 Android SDK & Development Environment Università Degli Studi di Parma Lecture Summary - 2 The Android Platform Android Environment Setup SDK Eclipse & ADT SDK Manager Android

More information

Android Application for Online Admission Process

Android Application for Online Admission Process International Journal of Emerging Engineering Research and Technology Volume 2, Issue 7, October 2014, PP 114-118 ISSN 2349-4395 (Print) & ISSN 2349-4409 (Online) Android Application for Online Admission

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

NetBeans IDE Field Guide

NetBeans IDE Field Guide NetBeans IDE Field Guide Copyright 2005 Sun Microsystems, Inc. All rights reserved. Table of Contents Introduction to J2EE Development in NetBeans IDE...1 Configuring the IDE for J2EE Development...2 Getting

More information

APPLICATION OF CLOUD COMPUTING IN ACADEMIC INSTITUTION

APPLICATION OF CLOUD COMPUTING IN ACADEMIC INSTITUTION APPLICATION OF CLOUD COMPUTING IN ACADEMIC INSTITUTION 1 PRIYANKA DUKLE, 2 TRISHALA PAWAR, 3 SNEH BHAT 1,2,3 Computer, Amrutvahini College of Engineering, Sangamner Email: bhatsneh@gmail.com 1, pawar.trishala@gmail.com

More information

Smart Home Security System Based on Microcontroller Using Internet and Android Smartphone

Smart Home Security System Based on Microcontroller Using Internet and Android Smartphone International Conference on Materials, Electronics & Information Engineering, ICMEIE-205 05-06 June, 205, Faculty of Engineering, University of Rajshahi, Bangladesh www.ru.ac.bd/icmeie205/proceedings/

More information

i2b2 Installation Guide

i2b2 Installation Guide Informatics for Integrating Biology and the Bedside i2b2 Installation Guide i2b2 Server and Clients Document Version: 1.7.00-003 Document Management Revision Number Date Author Comment 1.7.00-001 03/06/2014

More information

Using DeployR to Solve the R Integration Problem

Using DeployR to Solve the R Integration Problem DEPLOYR WHITE PAPER Using DeployR to olve the R Integration Problem By the Revolution Analytics DeployR Team March 2015 Introduction Organizations use analytics to empower decision making, often in real

More information

Distributed Healthcare System Framework for Dynamic Medical Data Integration

Distributed Healthcare System Framework for Dynamic Medical Data Integration Distributed Healthcare System Framework for Dynamic Medical Data Integration Nasser N. Khamiss 1, Muhammed Aziz Muhammed 2 1 Professor Dr., Information & Communication Engineering Dept. 2 Information &

More information

Android Based Mobile Gaming Based on Web Page Content Imagery

Android Based Mobile Gaming Based on Web Page Content Imagery Spring 2011 CSIT691 Independent Project Android Based Mobile Gaming Based on Web Page Content Imagery TU Qiang qiangtu@ust.hk Contents 1. Introduction... 2 2. General ideas... 2 3. Puzzle Game... 4 3.1

More information

1 Introduction: Network Applications

1 Introduction: Network Applications 1 Introduction: Network Applications Some Network Apps E-mail Web Instant messaging Remote login P2P file sharing Multi-user network games Streaming stored video clips Internet telephone Real-time video

More information

l What is Android? l Getting Started l The Emulator l Hello World l ADB l Text to Speech l Other APIs (camera, bitmap, etc)

l What is Android? l Getting Started l The Emulator l Hello World l ADB l Text to Speech l Other APIs (camera, bitmap, etc) today l What is Android? l Getting Started l The Emulator l Hello World l ADB l Text to Speech l Other APIs (camera, bitmap, etc) l Other: Signing Apps, SVN l Discussion and Questions introduction to android

More information

A Practical Approach to Process Streaming Data using Graph Database

A Practical Approach to Process Streaming Data using Graph Database A Practical Approach to Process Streaming Data using Graph Database Mukul Sharma Research Scholar Department of Computer Science & Engineering SBCET, Jaipur, Rajasthan, India ABSTRACT In today s information

More information

A Novel Approach Of Mobile Based Student Attendance Tracking System Using Android Application

A Novel Approach Of Mobile Based Student Attendance Tracking System Using Android Application A Novel Approach Of Mobile Based Student Attendance Tracking System Using Android Application K. Akhila 1 B. Prathyusha 2 M. PavanKumar 3 M. Amrutha 4 Research Scholar Research Scholar Research Scholar

More information

COPYRIGHT RESERVED TEAM MYSTERIOUS MANIACS http://www.mysteriousmaniacs.tk/ HOME AUTOMATION via BLUETOOTH (Using ANDROID PLATFORM)

COPYRIGHT RESERVED TEAM MYSTERIOUS MANIACS http://www.mysteriousmaniacs.tk/ HOME AUTOMATION via BLUETOOTH (Using ANDROID PLATFORM) COPYRIGHT RESERVED TEAM MYSTERIOUS MANIACS http://www.mysteriousmaniacs.tk/ HOME AUTOMATION via BLUETOOTH (Using ANDROID PLATFORM) 0 TEAM MEMBERS SYED HUSSAIN RAZA NAQVI SYED MUHAMMAD TAHIR RAZA MUHAMMAD

More information

CS378 -Mobile Computing. Android Overview and Android Development Environment

CS378 -Mobile Computing. Android Overview and Android Development Environment CS378 -Mobile Computing Android Overview and Android Development Environment What is Android? A software stack for mobile devices that includes An operating system Middleware Key Applications Uses Linux

More information

End User Guide The guide for email/ftp account owner

End User Guide The guide for email/ftp account owner End User Guide The guide for email/ftp account owner ServerDirector Version 3.7 Table Of Contents Introduction...1 Logging In...1 Logging Out...3 Installing SSL License...3 System Requirements...4 Navigating...4

More information

http://ubiqmobile.com

http://ubiqmobile.com Mobile Development Made Easy! http://ubiqmobile.com Ubiq Mobile Serves Businesses, Developers and Wireless Service Providers Businesses Be among the first to enter the mobile market! - Low development

More information

Keywords web based medical management, patient database on cloud, patient management and customized applications on tablets, android programming.

Keywords web based medical management, patient database on cloud, patient management and customized applications on tablets, android programming. Functional Description of Online Medical Management System Using Modern Technology Priyanka Patil, Sruthi Kunhiraman, Rohini Temkar VES Institute of Technology, Chembur, Mumbai Abstract Today s web based

More information

An Android-based Instant Message Application

An Android-based Instant Message Application An Android-based Instant Message Application Qi Lai, Mao Zheng and Tom Gendreau Department of Computer Science University of Wisconsin - La Crosse La Crosse, WI 54601 mzheng@uwlax.edu Abstract One of the

More information

CloudFTP: A free Storage Cloud

CloudFTP: A free Storage Cloud CloudFTP: A free Storage Cloud ABSTRACT: The cloud computing is growing rapidly for it offers on-demand computing power and capacity. The power of cloud enables dynamic scalability of applications facing

More information

An Introduction to Android. Huang Xuguang Database Lab. Inha University 2009.11.2 Email: xuguanghuang@yahoo.cn

An Introduction to Android. Huang Xuguang Database Lab. Inha University 2009.11.2 Email: xuguanghuang@yahoo.cn An Introduction to Android Huang Xuguang Database Lab. Inha University 2009.11.2 Email: xuguanghuang@yahoo.cn Outline Background What is Android? Development for Android Background Internet users and Mobile

More information

An Impact of Digital Technologies Transforming In Healthcare Using Cloud Computing

An Impact of Digital Technologies Transforming In Healthcare Using Cloud Computing An Impact of Digital Technologies Transforming In Healthcare Using Cloud Computing M.Gnanavel 1,Dr.E.R.Naganathan 2, R.Saravanakumar 3, R.J.Poovaraghan 4, P.Sasikala 5 Research Scholar, SCSVMV University,

More information

An Introduction to Android

An Introduction to Android An Introduction to Android Michalis Katsarakis M.Sc. Student katsarakis@csd.uoc.gr Tutorial: hy439 & hy539 16 October 2012 http://www.csd.uoc.gr/~hy439/ Outline Background What is Android Android as a

More information

INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING & TECHNOLOGY (IJCET)

INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING & TECHNOLOGY (IJCET) INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING & TECHNOLOGY (IJCET) International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 6367(Print) ISSN 0976 6375(Online)

More information

Study on Architecture and Implementation of Port Logistics Information Service Platform Based on Cloud Computing 1

Study on Architecture and Implementation of Port Logistics Information Service Platform Based on Cloud Computing 1 , pp. 331-342 http://dx.doi.org/10.14257/ijfgcn.2015.8.2.27 Study on Architecture and Implementation of Port Logistics Information Service Platform Based on Cloud Computing 1 Changming Li, Jie Shen and

More information

WIDAM - WEB INTERACTION DISPLAY AND MONITORING

WIDAM - WEB INTERACTION DISPLAY AND MONITORING WIDAM - WEB INTERACTION DISPLAY AND MONITORING Hugo Gamboa and Vasco Ferreira Escola Superior de Tecnologia de Setúbal Campo do IPS, Estefanilha, 2914-508 Setúbal, Portugal Email: {hgamboa, vferreira}@est.ips.pt

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

ITG Software Engineering

ITG Software Engineering Basic Android Development Course ID: Page 1 Last Updated 12/15/2014 Basic Android Development ITG Software Engineering Course Overview: This 5 day course gives students the fundamental basics of Android

More information

Remote Desktop Access Through Android Mobile Phones and Reverse

Remote Desktop Access Through Android Mobile Phones and Reverse Reviewed Paper Volume 2 Issue 8 April 2015 Paper International Journal of Informative & Futuristic Research ISSN (Online): 2347-1697 Remote Desktop Access Through Android Mobile Phones and Reverse Paper

More information

Software Requirements Specification For Real Estate Web Site

Software Requirements Specification For Real Estate Web Site Software Requirements Specification For Real Estate Web Site Brent Cross 7 February 2011 Page 1 Table of Contents 1. Introduction...3 1.1. Purpose...3 1.2. Scope...3 1.3. Definitions, Acronyms, and Abbreviations...3

More information

Scalable Web and Mobile Solution for Healthcare Software Provider

Scalable Web and Mobile Solution for Healthcare Software Provider Scalable Web and Mobile Solution for Healthcare Software Provider The Client Overview Our client is a leading healthcare software vendor, providing solutions catering to a niche area of radiology diagnostics,

More information

Research and Design of Universal and Open Software Development Platform for Digital Home

Research and Design of Universal and Open Software Development Platform for Digital Home Research and Design of Universal and Open Software Development Platform for Digital Home CaiFeng Cao School of Computer Wuyi University, Jiangmen 529020, China cfcao@126.com Abstract. With the development

More information

Android Mobile App Building Tutorial

Android Mobile App Building Tutorial Android Mobile App Building Tutorial Seidenberg-CSIS, Pace University This mobile app building tutorial is for high school and college students to participate in Mobile App Development Contest Workshop.

More information

Performance Analysis and Design of a Mobile Web Services on Cloud Servers

Performance Analysis and Design of a Mobile Web Services on Cloud Servers Performance Analysis and Design of a Mobile Web Services on Cloud Servers Rushi Raval 1, Dr. Atul Gonsai 2 1 Research Scholar, 2 Associate Professor, Department of Computer Sci., Saurashtra University,

More information