Conversion of Java Applets Animations to Java Midlets

Total Page:16

File Type:pdf, Size:1020Kb

Conversion of Java Applets Animations to Java Midlets Conversion of Java Applets Animations to Java MIDlets Kapil Kadam, Sameer Sahasrabudhe Abstract—Java applets are used in e-learning, mainly for It has two important APIs (Application Programming creating animations. Many leading educational and Interface) - The CLDC API (Connected Limited Device professional organizations have large repositories of Configuration) and the MIDP API (Mobile Information animations, created using Java applets which are mostly for Device Profile) [8]. desktops. Use of mobile phones is increasing especially amongst Only a subset of Core Java APIs java.lang, java.io and students, and creating new eLearning content for mobile java.util are supported by J2ME. For example, the java.lang phones is resource intensive. The Java applets available are not in J2ME (CLDC 1.1 version) has 17 classes and 1 interface, compatible with the mobile technology. It is desirable to have a methodology to adapt existing Java animations on mobile compared with the java.lang of Java SE (JDK 1.6 version), phones. This paper presents a methodology (APP2MID) which which has 35 classes and 8 interfaces. J2ME also possesses converts the Java applet into Java MIDlet that can run on many features which are specific and limited to J2ME itself. mobile phones. The conversion methodology is divided in three Table 1 shows the core Java APIs supported by CLDC 1.1 [8]. logical phases and will help the user to create MIDlets from the available Java applets maintaining the original programming TABLE I logic. We illustrate this methodology using a case study. CORE JAVA SE APIS SUPPORTED BY J2ME Package Classes I. INTRODUCTION java.lang Boolean, Byte, Character, Class, Integer, Long,Double, AVA applets have been a one of the popular content Float, Math, Object, Runnable, Runtime, Short, String, J creation format for eLearning. Many leading StringBuffer, System, Thread, Throwable organizations in educational and professional domains java.io ByteArrayInputStream, ByteArrayOutputStream, have created large repositories of educational animations DataInput, DataOutput, DataInputStream, created using JAVA [4]. DataOutputStream, InputStream, OutputStream, InputStreamReader, OutputStreamWriter, PrintStream, Concurrently, mobiles are becoming even more common Reader, Writer and have been having lesser dependencies. The portability java.util Calendar, Date, Enumeration, Hashtable, Random, Stack, and the reach of mobiles is quite more than that of the TimeZone, Vector computers and therefore it is not at all surprising that mobiles are preferred as a medium for educational content dissemination [1], [2]. From the earlier discussion following points are evident: Looking at the large number of Open Source JAVA 1. Available Java applets animations are huge in applets available for the desktops, it is desirable to have a number. methodology to convert those for mobiles in a seamless 2. J2ME does not support all the APIs that are used in manner. In this paper we present one such methodology: Java applet animations creation APP2MID. 3. Re-creation of same animations for mobiles would Java SE (Java standard edition) is used for creating applets be resource intensive. especially for desktops. These applets cannot run on mobile 4. Maintaining the original programming logic of the phones because the APIs used are not supported by mobile animation is critical. phones. For creating applications for mobile phones and Seamless conversion of applets to MIDlets is certainly other handheld devices J2ME (Java 2 Micro edition) desirable. In this paper we present one such methodology. A technology is used [6]. J2ME represents a simpler version of case study is used to illustrate the methodology in detail. Java SE, with a reduced feature set, for the devices with limited memory, small screen sizes, alternative input II. CONVERSION PROCESS: APP2MID methods, and slow processors [7]. The conversion process APP2MID has three logical phases. These phases convert the original Java applet into various Manuscript received August 20, 2009. This work was supported in part by the TTSL IIT Bombay Center of Excellence in Telecommunications formats in a cascading manner to achieve the final goal of (TICET) project of IIT Bombay. creating a MIDlet. The Java applet is not converted directly Kapil Kadam is M. Tech. from Walchand College of Engineering, into MIDlet, as it may create problems for code extraction. Sangli, India and is currently working as Project Engineer at the The first phase converts the Java applet to a XML file for Department of Computer Science and Engineering of IIT Bombay, India. Phone: +91-22-25764987; fax: +91-22-25720022; e-mail: better representation and mapping. The second phase [email protected] transforms this applet XML to a MIDlet XML. The third Sameer Sahasrabudhe is a graduate in Fine arts. He is currently working phase converts the MIDlet XML to a MIDlet. Finally testing as a Project Manager at the Department of Computer Science and Engineering of IIT Bombay, India. Phone: +91-22-25764913; fax: +91-22- is done, to check the quality of the converted MIDlet. Refer 25720022; e-mail: [email protected] Fig. 1. The produced representation allows easy extraction of the semantics of source code and its analysis for further Phase I Phase II Phase III Testing XML Phase transformation. The output of this phase is a valid of Java Applet Applet XML to MIDlet XML the desired MIDlet. Schematic representation of this phase is to Applet MIDlet XML to Java MIDlet shown in Fig. 3. XML Transformation MIDlet Testing C. Conversion Phase-III The third phase has the output of the Phase-II as the input. Fig. 1: Conversion Phases The motivation of this phase is to convert MIDlet XML into Java MIDlet which is the desired final output. In order to achieve this we wrote another class “Converter” A. Conversion Phase-I in the “APP2MIDconverter.java” program mentioned in This phase has Java applet as the input. This applet is Phase-II. This class “Converter” does the MIDlet XML to converted to XML using the available Java to XML converter (Java2XML) [9]. After conversion the applet XML is Input XML to Java Output validated by using a browser (Internet Explorer) [3]. MIDlet XML Converter Java MIDlet Java and XML both are platform independent and XML is Class fully compatible with Java. Standard Java class structure can Converter be well represented in the form of XML tags, so that Java classes, methods, interfaces, packages are processed easily by maintaining the Java programming standards [5]. Fig. 4: Conversion Phase-III Input Java to DTD Valid Java MIDlet conversion. The output of this phase is a desired Java Applet XML Validation Applet XML Converter Java MIDlet. Schematic representation of this phase is shown in Fig. 4. D. Testing Phase Fig. 2 Conversion Phase-I The produced representation allows easy extraction of the Testing is the most important way of assuring (or semantics of source code, its analysis and transformation. controlling) the quality of software or application developed. The third phase delivers the Java MIDlet as final output. The output of this phase is a valid XML of the applet. The resultant Java MIDlet is tested with Sun’s Wireless Schematic representation of this phase is shown in Fig. 2. toolkit emulator [10] by selecting MIDP2.0 & CLDC1.1 APIs, B. Conversion Phase-II that gives the desired output, the actual results are presented The second phase has the output of the Phase-I as in further sections. An error free result leads towards the the input. The motivation of this phase is to transform the actual device testing. Mobile phones like Nokia N72 [12] & applet XML into MIDlet XML. This enable mapping of applet Sony Ericsson W58i [13] were used for testing as they are XML into another XML to obtain the desired MIDlet supported by MIDP 2.0 & CLDC1.1 APIs. structure. III. CASE STUDY Output CONVERSION OF ANIMATIONS IN PROJECT OSCAR MIDlet XML Input XML to XML Project OSCAR stands for Open Source Courseware Applet XML Transformer Animations Repository [11]. This is a project of IIT Bombay Class and hosts over hundred animations, which covers different XMLTraverser DTD th th Validation subjects from standard 7 to standard 12 like Mathematics, Physics, Biology and Chemistry. It also covers Engineering subjects for Undergraduate and Post Graduate studies like Input Networking, Mechanical engineering, etc. Package.xml Valid MIDlet XML Most of the animations from the repository are Java applets, which is suitable for the conversion methodology presented in this paper. We have selected Basic Angles animation from Fig. 3: Conversion Phase-II Mathematics repository as a test case [11]. BasicAngles.java In order to address this we wrote a Java program is a Java applet program which contains the code for the (APP2MIDconverter.java), containing class “XML Traverser” basic angles animation. Fig. 5 shows the output of which does the XML to XML transformation. This created BasicAngles.java applet when executed in applet viewer and Package.xml file which contained XML representation of Fig. 6 shows the small portion of the code. basic MIDlet program structure. The transformed XML is validated in a similar way as mentioned in the Phase-I. portion of the XML applet. As mentioned in the conversion phase-I about standard Java class structure & XML tags, it can be seen from the Fig. 7 that the standard class structure of Java applet (refer Fig. 6) is well represented in the form of XML. For example class “BasicAngles” with visibility attribute “public” (Fig 6) is represented as a XML tag <class name=“BasicAngles” visibility=“public”> in Fig 7. Other code of Java applet was also converted in the form of XML tags. That leads to easy extraction of the semantics of source code, its analysis and transformation as said earlier. B. Phase-II Results Fig 5: Basic angles animation applet As said earlier the input of the second phase is the output of the Phase-I, which is the applet XML (Figure7).
Recommended publications
  • Incubating the Next Generation of Offshore Outsourcing Entrepreneurs
    Mobile Phone Programming Introduction Dr. Christelle Scharff Pace University, USA http://atlantis.seidenberg.pace.edu/wiki/mobile2008 Objectives Getting an overall view of the mobile phone market, its possibilities and weaknesses Providing an overview of the J2ME architecture and define the buzzwords that accompanies it Why mobile phones? Nowadays mobile phones outnumber desktop computers for Internet connections in the developer world A convenient and simpler alternative to the desktop/laptop for all (developed and developing countries) Mobile phones are computers! Some numbers and important facts: • Target of 10 million iphones sales by the end of 2008 (just one year after being launched) • Google phone to be launched in 2008 • 70% of the world’s mobile subscriptions are in developing countries, NY Times April 13, 2008 Global Handset Sales by Device Type http://linuxdevices.com/files/misc/StrategyAnalytics- mobilephone-segments.jpg Devices A wide variety of devices by the main vendors: • E.g, Nokia, Motoral, Sony Ericson A wide variety of operating systems • E.g., Blackberry, Palm OS, Windows CE/Mobile, Symbian, motomagx, linux A wide variety of development environments • E.g., Java ME, Qualcomm’s BREW, Google’ Android, Google App Engine (GAE) for mobile web applications, JavaFX Programming languages: • Java, Python, Flast-lith, Objective C Operating Systems http://mobiledevices.kom.aau.dk Mobile Web Access to wireless data services using a mobile device cHTML (Compact HTML) is a subset of HTML that excludes JPEG images,
    [Show full text]
  • Development of Mobile Phone Game Based on Java ME
    Yang Liu Development of Mobile Phone Game Based on Java ME Bachelor’s Thesis Information Technology May 2011 DESCRIPTION Date of the bachelor's thesis th 15 May, 2011 Author(s) Degree programme and option Yang Liu Information Technology Name of the bachelor's thesis Development of Mobile Phone Game Based on Java ME Abstract Recently, mobile phones have become more and more widespread in more than one aspect. Meanwhile, a large number of advanced features have also been applied into mobile devices. As we know, mobile phone game is one of them. In this final thesis, I develop a Chinese Chess game. Chinese Chess, also called Xiang Qi, is one of the most popular and oldest board games worldwide, which is more or less similar to Western Chess related to the appearance and regulations. In order to spread China culture and make individuals realize how fun and easy this game is, I introduce this Chinese Chess game as the topic in terms of my final thesis. In this final thesis, I use API (JSR 118) to build a user interface so as to set the board and pieces in the first place. Thereafter, some relevant basic rules are drawn up through logical control. This project is designated to be run on Java ME platform and Java SDK simulation software. Subject headings, (keywords) Java ME, JDK, Java SDK, MIDP, CLDC, API, Chinese Chess Pages Language URN 63 p.+app.28 English Remarks, notes on appendices Tutor Employer of the bachelor's thesis Matti Koivisto Mikkeli University of Applied Sciences ACKNOWLEDGEMENT In the first place, I would like to represent my greatest appreciation to my supervisor Mr.
    [Show full text]
  • JAVA User's Guide Siemens Cellular Engine
    s JAVA User's Guide Siemens Cellular Engine Version: 08 DocID: TC65_AC75_JAVA User's Guide_V08 Supported products: TC65, TC65 Terminal, AC75 JAVA™ Users Guide JAVA User's Guide s Confidential / Released Document Name: JAVA User's Guide Supported products: TC65, TC65 Terminal, AC75 Version: 08 Date: June 12, 2006 DocId: TC65_AC75_JAVA User's Guide_V08 Status: Confidential / Released General Notes Product is deemed accepted by recipient and is provided without interface to recipient’s products. The documentation and/or product are provided for testing, evaluation, integration and information purposes. The documentation and/or product are provided on an “as is” basis only and may contain deficiencies or inadequacies. The documentation and/or product are provided without warranty of any kind, express or implied. To the maximum extent permitted by applicable law, Siemens further disclaims all warranties, including without limitation any implied warranties of merchantability, completeness, fitness for a particular purpose and non-infringement of third-party rights. The entire risk arising out of the use or performance of the product and documentation remains with recipient. This product is not intended for use in life support appliances, devices or systems where a malfunction of the product can reasonably be expected to result in personal injury. Applications incorporating the described product must be designed to be in accordance with the technical specifications provided in these guidelines. Failure to comply with any of the required procedures can result in malfunctions or serious discrepancies in results. Furthermore, all safety instructions regarding the use of mobile technical systems, including GSM products, which also apply to cellular phones must be followed.
    [Show full text]
  • Web Services Edge East Conference & Expo Featuring FREE Tutorials, Training Sessions, Case Studies and Exposition
    JAVA & LINUX FOCUS ISSUE TM Java COM Conference: January 21-24, 2003 Expo: January 22-24, 2003 www.linuxworldexpo.com The Javits Center New York, NY see details on page 55 From the Editor Alan Williamson pg. 5 Java & Linux A Marriage Made in Heaven pg. 6 TCO for Linux Linux Fundamentals: Tools of the Trade Mike McCallister ...and J2EE Projects pg. 8 Programming Java in Linux – a basic tour $40010 60 Linux Vendors Life Is About Choices pg. 26 Feature: Managing HttpSession Objects2003 SAVEBrian A. Russell 8 PAGE CONFERENCE Create a well-designed session for a better Web appEAST INSERT PAGE18 63 Career Opportunities Bill Baloglu & Billy Palmieri DGE pg. 72 Integration: PackagingE Java Applications Ian McFarland for OS X Have great looking double-clickable applications 28 Java News ERVICES pg. 60 S EB Specifications: JCP Expert Group Jim Van Peursem JDJ-IN ExcerptsW Experiences – JSR-118 An inside look at the process 42 SPECIALpg. 61 INTERNATIONAL WEB SERVICES CONFERENCE & EXPO Letters to the Editor Feature: The New PDA Profile Jim Keogh OFFER!pg. 62 The right tool for J2ME developers 46 RETAILERS PLEASE DISPLAY UNTIL MARCH 31, 2003 Product Review: exe4j Jan Boesenberg by ej-technologies – a solid piece of software 56 Interview: JDJ Asks ...Sun on Java An exclusive chance to find out what’s going on at Sun 58 SYS -CON Blair Wyman MEDIA Cubist Threads: ‘(Frozen)’ A snow-packed Wyoming highway adventure 74 Everybody’s focused on exposing applications as Web services while letting someone else figure out how to connect them. We’re that someone else.
    [Show full text]
  • Oracle® Java ME Embedded Getting Started Guide for the Windows Platform Release 3.3 E35132-02
    Oracle® Java ME Embedded Getting Started Guide for the Windows Platform Release 3.3 E35132-02 June 2013 This book describes how to use Oracle Java ME SDK to develop embedded applications, using both the NetBeans and Eclipse Integrated Development Environments, on a Windows XP or Windows 7 platform. Oracle Java ME Embedded Getting Started Guide for the Windows Platform, Release 3.3 E35132-02 Copyright © 2012, 2013, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, the following notice is applicable: U.S. GOVERNMENT END USERS: Oracle programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, delivered to U.S. Government end users are "commercial computer software" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations.
    [Show full text]
  • J2ME: the Complete Reference
    Color profile: Generic CMYK printer profile Composite Default screen Complete Reference / J2ME: TCR / Keogh / 222710-9 Blind Folio i J2ME: The Complete Reference James Keogh McGraw-Hill/Osborne New York Chicago San Francisco Lisbon London Madrid Mexico City Milan New Delhi San Juan Seoul Singapore Sydney Toronto P:\010Comp\CompRef8\710-9\fm.vp Friday, February 07, 2003 1:49:46 PM Color profile: Generic CMYK printer profile Composite Default screen Complete Reference / J2ME: TCR / Keogh / 222710-9 / Front Matter Blind Folio FM:ii McGraw-Hill/Osborne 2600 Tenth Street Berkeley, California 94710 U.S.A. To arrange bulk purchase discounts for sales promotions, premiums, or fund-raisers, please contact McGraw-Hill/Osborne at the above address. For information on translations or book distributors outside the U.S.A., please see the International Contact Information page immediately following the index of this book. J2ME: The Complete Reference Copyright © 2003 by The McGraw-Hill Companies. All rights reserved. Printed in the United States of America. Except as permitted under the Copyright Act of 1976, no part of this publication may be reproduced or distributed in any form or by any means, or stored in a database or retrieval system, without the prior written permission of publisher, with the exception that the program listings may be entered, stored, and executed in a computer system, but they may not be reproduced for publication. 1234567890 CUS CUS 019876543 ISBN 0-07-222710-9 Publisher Copy Editor Brandon A. Nordin Judith Brown Vice President & Associate Publisher Proofreader Scott Rogers Claire Splan Editorial Director Indexer Wendy Rinaldi Jack Lewis Project Editor Computer Designers Mark Karmendy Apollo Publishing Services, Lucie Ericksen, Tara A.
    [Show full text]
  • OPEN SOURCE VERSUS the JAVA Platformpg. 6
    OPEN SOURCE VERSUS THE JAVA PLATFORM pg. 6 www.JavaDevelopersJournal.com Web Services Edge West 2003 Sept. 30–Oct. 2, 2003 Santa Clara, CA details on pg. 66 From the Editor Best Laid Plans... Alan Williamson pg. 5 Viewpoint In Medias Res Bill Roth pg. 6 Q&A: JDJ Asks... IBM-Rational J2EE Insight Interview with Grady Booch 10 We Need More Innovation Joseph Ottinger pg. 8 Feature: JSP 2.0 Technology Mark Roth J2SE Insight The community delivers a higher performing language 16 Sleeping Tigers Jason Bell pg. 28 Graphical API: Trimming the Fat from Swing Marcus S. Zarra Simple steps to improve the performance of Swing 30 J2ME Insight The MIDlet Marketplace Glen Cordrey pg. 46 Feature: Xlet: A Different Kind of Applet Xiaozhong Wang The life cycle of an Xlet 48 Industry News for J2ME pg. 68 Network Connectivity: java.net.NetworkInterface Duane Morin Letters to the Editor A road warrior’s friend – detecting network connections 58 pg. 70 RETAILERS PLEASE DISPLAY Labs: ExtenXLS Java/XLS Toolkit Peter Curran UNTIL SEPTEMBER 30, 2003 by Extentech Inc. – a pure Java API for Excel integration 62 JSR Watch: From Within the Java Community Onno Kluyt Process Program More mobility, less complexity 72 From the Inside: The Lights Are On, SYS -CON MEDIA but No One’s Home Flipping bits 74 WE’VE ELIMINATED THE NEED FOR MONOLITHIC BROKERS. THE NEED FOR CENTRALIZED PROCESS HUBS. THE NEED FOR PROPRIETARY TOOL SETS. Introducing the integration technology YOU WANT. Introducing the Sonic Business Integration Suite. Built on the Business Integration Suite world’s first enterprise service bus (ESB), a standards-based infrastructure that reliably and cost-effectively connects appli- cations and orchestrates business processes across the extended enterprise.
    [Show full text]
  • A Generic DRM Framework for J2ME Applications
    A Generic DRM Framework for J2ME Applications Nuno Santos, Pedro Pereira, Luís Moura e Silva WIT-Software Rua Pedro Nunes, IPN, 3030-Coimbra, Portugal Email: [email protected] Abstract Recently, a new generation of mobile phones with support for Java has been taking widespread acceptance by the market, creating a business potential for downloadable Java Games and enterprise applications. However, it is relatively easy to forward Java programs between two Java phones. This opens the door for illegal peer-to-peer forwarding, with the consequent loss of revenues for content providers and operators. Therefore, DRM solutions are essential in order to protect copyrighted Java applications. In this paper we present a generic DRM framework that supports different solutions for protecting the copyright of Java applications. This framework is mainly targeted to Mobile Operators, it is totally transparent to content providers and does not require any special support at the user’s handsetss. It also allows the development of new custom built DRM solutions, providing a flexible platform for Java oriented DRM techniques. Keywords: Java J2ME; DRM; copyright-protection; code instrumentation. 1. Introduction The first generation of Java [1] enabled phones were very limited in terms of functionality. They were only able of downloading MIDlet1 applications from the network and of executing them. They offered no simple way to copy a Java application to another terminal or PC. These limitations were a natural Digital Rights Management (DRM) [2] solution, since the only way to obtain a Java application was by downloading it from the network. However, the most recent mobile phones are much more feature-rich.
    [Show full text]
  • Series 60 MIDP SDK 2.1 for Symbian OS 60
    PLATFORM Series 60 MIDP SDK 2.1 for Symbian OS 60 Getting Started Guide Version 1.0 May 26, 2004 SERIES Series 60 MIDP SDK Getting Started Guide | 2 Legal Notice Copyright © 2004 Nokia Corporation. All rights reserved. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation. Java and all Java-based marks are trademarks or registered trademarks of Sun Microsystems, Inc. Other product and company names mentioned herein may be trademarks or trade names of their respective owners. Disclaimer The information in this document is provided “as is,” with no warranties whatsoever, including any warranty of merchantability, fitness for any particular purpose, or any warranty otherwise arising out of any proposal, specification, or sample. Furthermore, information provided in this document is preliminary, and may be changed substantially prior to final release. This document is provided for informational purposes only. Nokia Corporation disclaims all liability, including liability for infringement of any proprietary rights, relating to implementation of information presented in this document. Nokia Corporation does not warrant or represent that such use will not infringe such rights. Nokia Corporation retains the right to make changes to this specification at any time, without notice. License A license is hereby granted to download and print a copy of this specification for personal use only. No other license to any other intellectual property rights is granted herein. Version 1.0 | May 26, 2004 Series 60 MIDP SDK Getting
    [Show full text]
  • Signing Java ME Applications
    Signing Java ME Applications Contents 1. What is the purpose of this document? 3 2. What are the basics? 3 2.1 What is application signing? 3 2.2 What indicates that an application has been signed? 3 2.3 Where does the signature take the application? 4 2.3.1 Domains 4 2.3.2 Accessing different domains 4 2.3.3 Why do domains matter? 4 2.3.4 Which pop up options are given to which features? 5 3. How do I use Sun JavaTM Wireless Toolkit (WTK) for application signing? 6 3.1 Importing the keys to WTK 6 3.2 Signing with WTK 6 3.3 What about NetBeans? 6 4. What can go wrong? 7 4.1 MIDlet attributes 7 4.2 Permissions 7 4.3 The device and the certificate 8 4.4 The validity period 8 5. Glossary 9 2 1. WHAT IS THE PURPOSE OF THIS DOCUMENT? This document provides key information about application signing in Java ME. It starts from the basics so should be useful for anyone who is not familiar with Java ME application signing. 2. WHAT ARE THE BASICS? 2.1 What is application signing? Application signing means that an application is signed with a private key. For each private key, there is a corresponding public key, which is delivered jointly with the application in the form of a digital certificate.1 When a signed application file is installed on a device, the application installer verifies that the certificate in the application was created by a one of the certificate authorities embedded in the device.
    [Show full text]
  • IMP Specification Initial Draft
    ALL RIGHTS RESERVED UNDER JSPA (JAVA SPECIFICATION PARTICIPATION AGREEMENT) Information Module Profile (JSR-195) JCP Specification, version 1.0 Java 2 Platform, Microedition - Final Release – © 2003 Siemens Mobile and Nokia. Portions Copyright 2003 Sun Microsystems, Inc. and Motorola, Inc. ALL RIGHTS RESERVED UNDER JSPA (JAVA SPECIFICATION PARTICIPATION AGREEMENT) Content Preface ......................................................................................................................................................................................3 Revision History.......................................................................................................................................................................3 Who Should Use This Specification.........................................................................................................................................4 How This Specification Is Organized.......................................................................................................................................4 Related Literature .....................................................................................................................................................................5 Maintenance Note.....................................................................................................................................................................5 1 Introduction and Background..........................................................................................................................................6
    [Show full text]
  • Runtime Monitoring for Next Generation Java ME Platform Gabriele Costa, Fabio Martinelli, Paolo Mori, Christian Schaefer, Thomas Walter
    Runtime monitoring for next generation Java ME platform Gabriele Costa, Fabio Martinelli, Paolo Mori, Christian Schaefer, Thomas Walter To cite this version: Gabriele Costa, Fabio Martinelli, Paolo Mori, Christian Schaefer, Thomas Walter. Runtime monitoring for next generation Java ME platform. Computers and Security, Elsevier, 2010, 29 (1), pp.74-87. 10.1016/j.cose.2009.07.005. inria-00458909 HAL Id: inria-00458909 https://hal.inria.fr/inria-00458909 Submitted on 22 Feb 2010 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Runtime Monitoring for Next Generation Java ME Platform Gabriele Costaa, Fabio Martinellia, Paolo Moria, Christian Schaeferb, Thomas Walterb aIstituto di Informatica e Telematica, Consiglio Nazionale delle Ricerche, Pisa, Italy bDOCOMO Euro-Labs, Munich, Germany Abstract Many modern mobile devices, such as mobile phones or Personal Digital As- sistants (PDAs), are able to run Java applications, such as games, Internet browsers, chat tools and so on. These applications perform some operations on the mobile device, that are critical from the security point of view, such as connecting to the Internet, sending and receiving SMS messages, connecting to other devices through the Bluetooth interface, browsing the user's contact list, and so on.
    [Show full text]