PAPER ENTERPRISE MOBILE TRACKING AND REMINDER SYSTEM: MAE Enterprise Mobile Tracking and Reminder System: MAE http://dx.doi.org/10.3991/ijim.v6i3.2096 Yoong Cheah Huei, Thet Swe, Lee Zheng Xian, Neo Shou Yee, Ngee Ann Polytechnic, Singapore Abstract—Mobile phones have made significant im- provements from providing voice communications to advanced features such as camera, GPS, Wi-Fi, SMS, voice recognition, Internet surfing, and touch screen. This paper presents an enterprise mobile tracking and re- minder system (MAE) that enables the elderly to have a better elder-care experience. The high-level architecture and major software algorithms especially the tracking in Android phones and SMS functions in server are de- scribed. The analysis of data captured and performance study of the server are discussed. In order to show the effectiveness of MAE, a pilot test was carried out with a retirement village in Singapore and the feedback from the elderly was evaluated. Generally, most comments re- ceived from the elderly were positive. Index Terms—mobile tracking, architecture, software algorithms, server performance study, pilot test, elderly feedback I. INTRODUCTION Today mobile phones have advanced from providing voice calls to many built-in functions like touch screen, Wi-Fi capability, camera, speech to text and vice-versa, Gobal Positioning System (GPS), Accelerometer and other features. Mobile phones with the built-in func- tions are called smart phones. The prices of smart phones such as iPhone 4S, Android Galaxy, Windows Mobile 8, Blackberry 9900 and other older models are getting cheaper and more affordable. Hence, there is no surprise that the smart phones are replacing the older generation of voice communication mobile phones. In the area of tracking, the study of power consump- tion in smart phones was studied [1-2], GPS informa- tion was extracted in Nokia N95 [3], social networking applications were studied in [4-7], features of Android for location-based function was reported in [8], [9] investigated the human behavior for location-based services, using location-based services in city maps was published [10], and middleware development for loca- tion-aware was published in [11]. Moreover, many research work has been done in other areas of smart phone applications as well, for example electronic payment [12], consumer services [13-14], medical [15-19], education [20-21], logistics [22], fault reporting [23], military [24], security [25], motion detection [26], cloud computing [27], protocols [28-29], and quality-of-service [30]. In this paper, we propose the Mobile Assistance for Elderly (MAE) system with the aim to utilize the rapid growth of smart phones and technologies so that a better elderly experienced is achieved through mobile- based platform. This system leverages on some of the avail- able telecommunication technologies like GPS and Short Message Service (SMS) to help the elderly and their care- givers stay in constant engagement while allowing the elderly to lead a more independent and mobile life as they stay active socially. While the target caregiver is the nursing home, the system can be streamlined for eventual use for home caregivers to their elderly parents. Section II presents the overall system architecture of MAE. Section III describes the client. Section IV describes the server, in particular the SMS module. Section V high- lights the mobile-to-mobile tracking and server-to-mobiles tracking. Section VI discusses some results of our system performance study. Section VII evaluates the feedback from the elderly about the pilot test. Section VIII concludes this paper. II. OVERALL SYSTEM ARCHITECTURE Figure 1 shows the high-level overall architecture of MAE. The server consists of three major components: Database, ASP.Net web server, and MAE_SMS gateway. The smart phones with in-built SQLite database are the clients. The MAE_SMS gateway is responsible to manage the schedule messages, send and receive SMS messages via the modem, and interact with the database to retrieve and insert new records. It also provides a Graphical User Inter- face (GUI) for the system administrator to monitor the system performance. Currently, the clients are Android smart phones that communicate to the server via the Internet or any network such as 3G or Wi-Fi. The smart phones have the capabilities to store the data into its own SQLite Data- base which could serve as temporary storage. III. THE CLIENT (ANDROID SMART PHONE) For our case, the client is an Android smart phone which is carried by the elderly. The Android smart phone must be GPS or Wi-Fi enabled and access to Internet. The phone is installed with our software that uses the GPS or W-Fi to find the exact location using satellites when any triggered event is initiated from a tracking device which can be another smart phone (Section 5.1) like any Android smart phone, iPhone or a server (Section 5.2). Upon successfully locating the position, the data will be registered in the phone’s SQLite database for the caregiver to extract anytime from a server or another smart phone like iPhone or Android .The client can receive SMS reminder services from our server so that the elderly would not miss any important appointments or forget to take medications. In our project, the push service is implemented in the An- droid smart phone which is the client. The service runs at the background and is transparent to the elderly. In order to be tracked, prior consent must be obtained from the elderly. iJIM – Volume 6, Issue 3, July 2012 25 http://dx.doi.org/10.3991/ijim.v6i3.2096� PAPER ENTERPRISE MOBILE TRACKING AND REMINDER SYSTEM: MAE Figure 1. Overall system architecture There are two ways of triggering the software in the Android smart phone. The first method is an interval counter that acts as an own signal of the triggering point. The interval can be set according to the user’s preference. The second method of triggering would be the incoming messages like an SMS of preset command such as a special code. Both methods will trigger the software to activate the GPS or Wi-Fi function of the device. When the GPS or Wi-Fi program is activated by any of the above two events, it will begin to pull the location pa- rameters. The GPS technology is accurate in open areas but per- form poorly indoors or between tall buildings. The Wi-Fi technology is used inside a building and gives more accurate positioning when the elderly is inside a building compared with GPS. Our system is able to switch auto- matically from GPS to W-Fi or vice-versa. Manual over- rides are also implemented. IV. THE SERVER There are two main functional modules of the server – SMS module and tracking module. The tracking module is briefly described in Section 5.2. A. SMS Module This module is written in C# programming language. We wrote a Window Application GUI with threading to monitor the system status and manage SMS sending and receiving messages. Figure 2 depicts the three main threads that handle the interconnection and synchroniza- tion among SQL database, messaging queue and the modem. Figure 3 describes how the algorithm works of the three threads in Figure 2. When the system starts, the program will connect the SQL database, retrieving all the due tasks and push the tasks into to the Microsoft Message Queue Server (MSMQ) with its standard message format. MSMQ is a fast store and forward service from Microsoft server that enables applications running at different times to communicate across different systems. Application sends messages to MSMQ and MSMQ uses queues of messages to ensure that the messages eventually reach their destinations. The system uses the mechanism of pulling data from the database in every time interval that was set in the ‘scanning database delay’ time. The pro- gram will then use the current date and time information to extract tasks from the server to schedule for the outgo- ing messages. 26 http://www.i-jim.org PAPER ENTERPRISE MOBILE TRACKING AND REMINDER SYSTEM: MAE Figure 2. High level system flowchart of server BEGIN Create a process, Pmain Process Initialized On Start Button Execute send func- tion, fsend Send Delay On Stop Button Join Threads Create thread, Treceive END Create thread, Tsend Execute receive function, freceive Receive Delay Create thread, Tgui Render objects with new values Send Delay iJIM – Volume 6, Issue 3, July 2012 27 PAPER ENTERPRISE MOBILE TRACKING AND REMINDER SYSTEM: MAE Algorithm Step 1: Creation of Process (Pmain) Create a process, Pmain in the MAE Server in order to handle the SMS Schedul- ing, Sending & Receiving between Database, DB and the Message Queue Server (MSMQ). Step 2: Initialization (Pmain) Pmain is fully initialized with required components such as serial port, in- terfaces. It also loads config data from text file. Step 3: On Start Button Event (Eon-start) The process, Pmain will create 3 worker threads, Tgui, Tsend and Treceive in its process.  GUI Thread The GUI of the system is handled by the worker thread, Tgui. The reason of using thread for GUI is because of the control buttons in the GUI. The system needs to be responsive even when it is running other functions, such as sending messages or receiving messages  Sending Thread This worker thread, Tsend will perform the function (fsend) over the period of scanning database delay, t=1,2,...,10 where delay time, t is pre- defined by user & measureable in minute. Y = i = 1,2,3,… n (interval - measured in minutes) Whereas Y is the result of sending function (fsend) with the input of X (tasks due) over the scanning time interval, i. This function starts with t=1 and is repeating until the On Stop Button (Eon-stop) is invoked.  Receiving Thread The worker thread, Treceive will execute function (freceive) over the period of scanning SIM delay, t=1,2,...,10 where delay time, t is pre-defined by user & measurable in minute. Y = i = 1,2,3,… n (interval - measured in minutes) Whereas Y is the result of receiving function (freceive) with the input of X (incoming messages) over the scanning time interval, i. This function starts with t=1 and is repeating until the On Stop Button (Eon-stop) is in- voked. Step 4: On Stop Event (Eon-stop) On Stop event occurred when the stop button is clicked. Upon the event oc- currence, the program will attempt to join the threads to complete its task with the allowance of sending delay interval. Figure 3. High-level algorithm of the threads in Figure 2 28 http://www.i-jim.org PAPER ENTERPRISE MOBILE TRACKING AND REMINDER SYSTEM: MAE V. MOBILE TRACKING We employed two techniques to illustrate mobile track- ing. The first technique is mobile-to-mobile tracking. The second technique is server-to-mobiles tracking. A. Mobile-to-mobile tracking This tracking is based on one-to-one relationship of the communication pattern. For example, the caregiver iPhone can be used to track one elderly Android phone. The caregiver and the elderly are communicating with each other and the tracking is based on one elderly at one time. The one-to-one technique is suitable for the individual since the caregiver’s intention is to track only one elderly at a time. The algorithm of mobile-to-mobile tracking is similar to the algorithm presented in Figure 4 except the variation where the replying/monitoring takes place in a server. B. Mobiles to Server Tracking This type of tracking is used in organization or care- center where the number of elderly exceeds the number of caregivers. It is known as one-to-many relationship. For instance, a number of elderly Android phones will send their individual location coordinates to the server periodi- cally. In this relationship, the location data are stored and monitored in a server instead of a smart phone. Instead of relying on the device SQLite Database, the location data will be also stored in the server’s SQL database with higher capabilities. The server is set to track and present graphically the last 10 locations of each registered elderly. Figure 4 depicts the algorithm for mobile-to-server track- ing. VI. PERFORMANCE RESULTS A. Collect Location Data We have conducted the testing for a period of 10 work- ing days across Singapore with six Android smart phones with the following results in percentage of success rate of each working day. Working day 1: 70%, Working day 2: 10%, Working day 3: 18%, Working day 4: 16%, Working day 5: 42%, Working day 6: 78%, Working day 7: 99%, Working day 8: 99%, Working day 9: 75%, Working day 10: 79% In day one to five, the average percentages of locations collected is below 40%. The reason is due to the timeout error occurred at the mobile phone side because the public server, where the location coordinates are obtained, is physically located in United States (US). In order to solve this problem, we have relocated the server from US to Singapore. Thus in day six to 10, the average performance of location data collection has in- creased to an average 86% . In day seven and eight, the percentages of collectable data are close to 100%. B. Server SMS Performance Our performance measurement is based on two factors: (1) Message size in characters and (2) Delay timer for scanning database and SIM card. With the sending 20 messages, the performance is measured in ‘total sending time (sending)’ and ‘total receiving time (receiving)’ for all messages. The definition of ‘total sending time’ is the time taken from the sending of first message to the last message when the whole system is functioning well. The timestamp is taken only when the sending of message is successful. The ‘total receiving time’ is defined as the time taken from the receiving of first message to the last message when the whole system is functioning well. The timestamp is recorded when it is registered in the data- base. The matrix is the representation of timer set for scan- ning database (sending) delay and scanning SIM (receiv- ing) delay respectively. The settings for delay timing are 1 minute and 2 minutes. Four different ranges of randomly chosen messages were used, with the average of 16, 39, 77 and 134 characters. Figure 5 shows the results of average message size versus the total sending time and total re- ceiving time for 1x1, 1x2, 2x1, 2x2 matrixes. In Figure 5, as the average message size increases, the sending time also increases. The reason is that the system requires more times to push the characters into the net- work when the number of characters increases. Although the delay time of scanning database (sending time) is increased, the total sending time does not change much. The reason could be the schedule time of the messages. The messages are scheduled to send at one time and the system is very quick in sending out all messages. It results in little impact on total sending time. The change of scanning database delay is actually affected on the sched- ule time. For example, if the system is running at 5 min- utes interval and the last scanning were carried out at 00:00:00; the next scanning will carry out at 00:05:00. If the task were scheduled on 00:02:00, instead of carrying out in its schedule time, the task will be delayed to next schedule time. The receiving time (red line) is hugely affected by two factors – time taken for scanning SIM card and time taken in the 3rd party network like the public telecommunication network provider. When there is an increase in scanning time delay, the receiving time from 1st to last messages increases. With the increase in messages time, the two factors above were taking longer time to receive the messages, and it results in increase on receiving time. The 3rd party network delay has potential be more severe. Figure 6 depicts the sending and receiving time versus matrixes with average fixed message size. As shown in Figure 6, the sending time (blue line) does not vary much even the timing were changed. This is why the sending time has almost no impact, except for failure to send the message from the device. The receiving time (red line), on the other hand, has much impact on system performance. The measurements were taken in 4 points – 1x1, 1x2, 2x1 and 2x2. In gen- eral, when the delay time in scanning SIM card for receiv- ing is increased, the receiving time also has increased. This result is what we expect to happen because longer time is needed to register the received messages. iJIM – Volume 6, Issue 3, July 2012 29 PAPER ENTERPRISE MOBILE TRACKING AND REMINDER SYSTEM: MAE Collection: Creation of Gathering Data Process (Plocate) in Client Create a process, Plocate in the application in order to activate the loca- tion manager for the period of t, 60 seconds. With the valid t period, Plocate will collect the location data sets, X with the accuracy of z. For t=60, Yi Z f Xi for i 1 to ∞ where t is measurable in seconds, f is the location retrieving function with technologies (X) which is both GPS and cell triangulation. The func- tion will output location data set (Y) which contains longitude and lati- tude values along with the accuracy (Z). The function, f can be defined as Activate Global Positioning System (GPS) Receiver Retrieve Longitude(x1), Latitude(y1) & Accuracy(z1) using Satellite Retrieve Longitude(x2), Latitude(y2) & Accuracy(z2) using Wi-Fi Save Longitude(x), Latitude(y) based on best Accuracy (z) Storing: Save the location Data in SQL in Server After the collection of t=60, Plocate will choose the best accurate location data set Y based on Z value. Using data connection, It is then sent to in Web Service function (fwrite) that will insert into the SQL database (DB) in the Server. For New DB record in the server, rnew f write Yi The fwrite function will Do Establish a new connection to SQL Database Table “Location” Get result from set of Longitude(x), Latitude(y) and Accuracy(z) Select the best accuracy (minimum value of z) location data set Attempt to save into the SQL Database Close SQL Database connection Reply Attempt status to the Updating Device While (No of Attempt<3) & (Not Successful) Viewing: Monitoring the Locations in Server The viewing or monitoring is done in the server’s web interface. The loca- tion result will be plotted in the Google Map API in the browser. Response, R maxT records in DB where T = recorded time in milliseconds The response R is the result of following steps: Establish a new connection to SQLite Database “Location” Get latest result on the database (T is maximum) Save into the SQLite Database Close SQLite Database connection Render on Map Object on Browser Figure 4. Server-to-mobiles tracking algorithm 30 http://www.i-jim.org PAPER ENTERPRISE MOBILE TRACKING AND REMINDER SYSTEM: MAE Figure 5. Average message size versus send and receiving time for matrixes Figure 6. Sending and receiving time versus matrixes with average fixed message sizes VII. FEEDBACK OF PILOT TEST The pilot test for a period of two weeks with the real users was conducted with the elderly volunteers in Singa- pore. The MAE program was pre-installed in the testing mobile handsets that were later distributed to the volun- teers. This is the first time testing the system in the public. As the targeted audiences are retirees and elderly who are still active and healthy, they are still mobile and we aim to make the system to be user-friendly and useful to their daily activities. After the testing, we conducted one-to-one session feedback with the volunteers about the purpose of the system, user-friendliness, overall experience and expectations on future developments. The questions and results posted for the feedback is as follows: Question 1: The concept is to allow the caregiver to find out the location of elderly when required. It is also to support a reminder services for elderly, such as appoint- ment or medication. Do you think this concept is excel- lent, good, still okay, not useful, or poor? We have 40% of the respondent chose excellent and 60% chose good. The iJIM – Volume 6, Issue 3, July 2012 31 PAPER ENTERPRISE MOBILE TRACKING AND REMINDER SYSTEM: MAE first question is aimed as receiving the feedback on the idea of MAE system. Most volunteers agree that this idea of connecting caregivers to elderly while allowing the elderly to have their own freedom of movement is good for them. Question 2: While you are volunteering for this pilot- test, you feel that the test is very easy, easy, still okay, complicated or troublesome. 100% of the respondent chose easy. The second question is about user- friendliness. As The target audiences are either non- technology person or little knowledge about technology, making the test easy and no trouble is the top priority. We have achieved that since most volunteers felt the test was just to carry the mobile phone as usual and it was easy. Question 3: What is your overall experience (including technical and administrative support)? 20% of the respon- dent chose excellent. 40% of the respondent chose good. 40% of the respondent chose acceptable and 20% of the respondent chose need improvement. The third question is about overall experience. This experience differs since the expectations are found to be different among the volun- teers. Some volunteers felt that multiple incoming mes- sages are nuisance and they are very much bothered since there could be confusion between testing messages and meaningful messages. Question 4: Please suggest improvements of the test. Our respondents gave the suggestions below. More time required to get used to the capabilities of smart phone  The weight is a little heavy – should be lighter smart phone  Function to interact with other users  System should be more reliable.  Long battery consumption Some volunteers felt that they are new to smart phones and therefore, needs more times to get familiarize with the functions in the phones. Many applications are by default installed in the phones and that could create confusion for elderly audience. The weight of the smart phone is heavier compared to the small and compact conventional hand phones. VIII. CONCLUSION We presented the MAE system: Overall system archi- tecture, client, server, and performance results. User feedback has shown to some extent that the MAE system enhances the elderly experienced in a mobile platform. To our best of knowledge, there is no similar enterprise mobile tracking and reminder system for multi-users being deployed in nursing homes. The elderly are moving more independently and confidently while the caregivers are given authority to find their locations as and when neces- sary. The study consists of latest mobile and information technologies to fulfill the core function of this project. With the application installed on the mobile phone, the elderly can be monitored from either a computer terminal or another mobile phone. The location parameters were generated from the GPS that could trigger by a timer or SMS messages to the target mobile phones. During the real life testing for 14 days, we have found many unexpected issues such as the timeout or page reset due to slow connection, the unnecessary location updates, device switching off from the users and the network co- Figure 7. Functions of MAE server including social networks verage weakness. The interactive user interface will be required that make the application more attractive to users since some users prefer on the active side. Another factor that requires the mass deployment would be the applica- tion’s compatibility on different devices and operating systems such iPhone, Blackberry and Windows mobile. Currently, a small group of elderly are using smart phones, while some are still hanging on the older and simpler type mobile phones. More works from manufac- turers are required in order to suit the needs of the elderly. With technology advancement, applications will be more reliable since current situation is depending on many factors, such as data speed, network coverage and user- friendliness experience. IX. FUTURE WORK We are implementing the software tracking program in other smart phone platforms [31] like iPhone and Win- dows Mobile and the social networking capabilities in smart phones and MAE server (Figure 7) as well. REFERENCES [1] A. Anand, C. Manikopoulos, Q. Jones, C. Borcea, “A quantitative analysis of power consumption for location-aware applications on smart phones,” IEEE Industrial Electronics, 4-7 June 2007, pp. 1986-1991. http://dx.doi.org/10.1109/ISIE.2007.4374912 [2] S. J. Barbeau, et. al, “A location-aware framework for intelligent real-time mobile applications,” IEEE Pervasive Computing, Issue 3, March 2011, pp. 58-67. http://dx.doi.org/10.1109/ MPRV.2010.48 [3] J. Liu, W. Lan, “Retrieving the GPS information of telephone based on Symbian OS,” 3rd IEEE Conference on Computer Sci- ence and Information technology (ICCSIT), vol. 8, 2010, pp. 145- 147. [4] S. J. Fusco, “Exploring the social implications of location based social networking: an inquiry into the perceived positive and nega- tive impacts of using LBSN between friends,” 9th International Conference on Mobile Business and Global Mobility Roundtable (ICMB-GMR), 13-15 June 2010, pp. 230-237. http://dx.doi.org/10.1109/ICMB-GMR.2010.35 [5] A. Beach, et. al “WhozThat? Evolving an ecosystem for context- aware mobile social networks,” IEEE Network, vol. 22, July- August 2008, pp. 50-55. http://dx.doi.org/10.1109/ MNET.2008.4579771 [6] N. Li, G. Chen, “Sharing location in online social networks,” IEEE Network, vol. 24, September-October 2010, pp. 20-25. http://dx.doi.org/10.1109/MNET.2010.5578914 [7] R. Cheng, Z. Yang, F. Xia, “iZone: a location-based mobile social networking system,” 3rd International Symposium Parallel Archi- tectures, Algorithms and Programming (PAAP), 2010, pp. 33-38. http://dx.doi.org/10.1109/PAAP.2010.67 32 http://www.i-jim.org http://dx.doi.org/10.1109/ISIE.2007.4374912� http://dx.doi.org/10.1109/�MPRV.2010.48� http://dx.doi.org/10.1109/�MPRV.2010.48� http://dx.doi.org/10.1109/ICMB-GMR.2010.35� http://dx.doi.org/10.1109/�MNET.2008.4579771� http://dx.doi.org/10.1109/�MNET.2008.4579771� http://dx.doi.org/10.1109/MNET.2010.5578914� http://dx.doi.org/10.1109/PAAP.2010.67� PAPER ENTERPRISE MOBILE TRACKING AND REMINDER SYSTEM: MAE [8] X. Shu, Z. Du, R. Chen, “Research on mobile location service design based on Android,” 5th International Conference on Wire- less Communications Networking and Mobile Computing (WICOM), 24-26 Sept 2009, pp. 1-4. [9] C. Lehrer, I. Constantiou, T. Mess, “Exploring use patterns and perceived value of location-based services,” 9th International Con- ference on Mobile Business and 2010 Ninth Global Mobility Roundtable (ICMB-GMR), 13-15 June 2010, pp. 107-115. [10] K. Virrantaus, et. al “Developing GIS-supported location-based services,” 2nd International Conference on Web Information Sys- tems Engineering, 3-6 Dec 2001, vol. 2, pp. 66-75. [11] R. Meier and V. Cahill, “On event-based middleware for location- aware mobile applications,” IEEE Transactions on Software Engi- neering, Issue 3, May-June 2010, pp. 409-430. http://dx.doi.org/10.1109/TSE.2009.90 [12] F. Chang, “A trusted smart phone and its applications in electronic payment,” Information Technology and Applications (IFITA), 16- 18 July 2010, pp 405-408. [13] S. Shin, et. al, “Person wide web: active location based web service architecture using wireless infrastructure,” IEEE Tencon 2010, 21-24 Nov 2010, pp. 2024-2029. [14] B. Unhelkar, S. Murugesan, “The enterprise mobile applications development framework,” IT Professional, Issue 3, May-June 2010, pp. 33-39. http://dx.doi.org/10.1109/MITP.2010.45 [15] P. Leijdekkers, V. Gay, “Personal heart monitoring and rehabilita- tion system using smart phones,” International Conference on Mobile Business (ICMB), 26-27 June 2006. http://dx.doi.org/10.1109/ICMB.2006.39 [16] J. K. Zao, W. Mei-Ying, T. Peihsuan, J. W. S. Liu, “Smart phone based medicine in-take scheduler, reminder, and monitor,” IEEE International Conference on e-health Networking Applications and Services (Healthcom) 1-3 July 2010, pp 162-168. [17] O. Postolache, “Indoor monitoring of respiratory distress trigger- ing factors using a wireless sensing network and a smart phone,” IEEE Instrumentation and Measurement Technology Conference, 5-7 May 2009, pp. 451-456. [18] I. E. Ivanov, V. Gueorguiev, V. Bodurski, V. Trifonov, “Tele- medicine and smart phones as medical peripheral devices (compu- tational approaches),” Developments in e-systems engineering (DESE), 6-8 September 2010, pp. 3-6. [19] F. Hu, Y. Xiao, Q. Hao, “Congestion-aware, loss-resilient bio- monitoring sensor networking for mobile health applications, Is- sue 4, May 2009, pp. 450-465. [20] Y. Jaeyeol, et. al, “Android platform for English tutoring,” 5th FTRA International Multimedia and Ubiquitous Engineering (MUE), 28-30 June 2011, pp. 302-305. [21] A. P. Massey, V. Ramesh, V. Khatri, “Design, development, and assessment of mobile applications: the case for problem-based learning,” IEEE Transactions on Education, Issue 2, May 2006, pp. 183-192. http://dx.doi.org/10.1109/TE.2006.875700 [22] N. Yanrong, F. Feiya, Z. Yu, Y. Xiaozhou, “Smart phone for the perishable goods distribution management,” International Forum on Computer Science-Technology and Applications, 25-27 De- cember 2009, pp 131-134. [23] S. S. Hyong, Y. M. Geum, J. Jeong, “A study on the development of disaster information reporting and status transmission system based on smart phone,” International Conference on ICT Conver- gence (ICTC), 28-30 September 2011, pp. 722-726. [24] Y-W Moon, H-S Jung, C-S Jeong, “Context-awareness in battle- field using ubiquitous computing: network centric warfare,” 10th IEEE Conference on Computer and Information (CIT), 29 June-1 July 2010, pp. 2873-2877. [25] S. Murugaraj, T. Srinath, K. Assadarat, M. Ilias, “Enabling secure mobile access for electronic health care applications,” Pervasive Health Conference and Workshop 2006, 29 Nov – 1 Dec 2006, pp. 1-8. [26] S. Zhang, P. McCuullagh, C. Nugent, H. Zheng, “Activity moni- toring using a smart phone’s accelerometer with hierarchical clas- sification,” 6th International Conference on Intelligent Environ- ments (IE), 19-21 July 2010, pp. 158-163. http://dx.doi.org/10.1109/IE.2010.36 [27] J. Park, H. yu, K. Chung, E. Lee, “Markov chain based monitoring service for fault tolerance in mobile cloud computing,” IEEE Workshops of International Conference on Advanced Information Networking and Applications (WAINA), 22-25 March 2011, pp. 520-525. [28] K. Schelfhout, D. Weyns, T. Holvoet, “Middleware for protocol- based coordination in mobile applications,” IEEE Distributed Sys- tems Online, Issue 8, August 2006. [29] N. Kayastha, D. Niyato, P. Wang, E. Hossain, “Applications, architectures, and protocol design issues for mobile social net- works: a suvery, “IEEE of the Proceedings, Issue 12, Dec 2011, pp. 2130-2158. [30] Q. Han, N. Venkatasubramaniam, “Information collection services for QoS-aware mobile applications,” IEEE Transactions on Mo- bile Computing, Issue 5, May 2006, pp. 518-535. http://dx.doi.org/10.1109/TMC.2006.65 [31] D. Gavalas, D. Economou, “Development platforms for mobile applications: status and trends, Issue 1, IEEE Software, Jan-Feb 2011, pp. 77-86. http://dx.doi.org/10.1109/MS.2010.155 AUTHORS Yoong Cheah Huei, Thet Swe, Lee Zheng Xian, and Neo Shou Yee are with School of InfoComm Technology, Ngee Ann Polytechnic, Singapore 599489 (ych1@np.edu.sg, tsw6@np.edu.sg, s10068683@np.edu.sg, s10075235@np.edu.sg) Received 20 April 2012. Published as resubmitted by the authors 24 June 2012. iJIM – Volume 6, Issue 3, July 2012 33 http://dx.doi.org/10.1109/TSE.2009.90� http://dx.doi.org/10.1109/MITP.2010.45� http://dx.doi.org/10.1109/ICMB.2006.39� http://dx.doi.org/10.1109/TE.2006.875700� http://dx.doi.org/10.1109/IE.2010.36� http://dx.doi.org/10.1109/TMC.2006.65� http://dx.doi.org/10.1109/MS.2010.155� mailto:ych1@np.edu.sg� mailto:tsw6@np.edu.sg� mailto:s10068683@np.edu.sg� CfPart_ICL2012.pdf