DOWNLOAD PDF J2ME COMPLETE CLASS LIBRARY

Size: px
Start display at page:

Download "DOWNLOAD PDF J2ME COMPLETE CLASS LIBRARY"

Transcription

1 Chapter 1 : J2ME: The Complete Reference The J2ME_CLASSPATH option controls the class library produced by the build. The default is cdc. Again, the CVM_JAVABIN option sets the path to your JDK bin directory, and the CVM_GNU_TOOLS_PATH sets the path to the GNU tools. Results for the format string yyyy. Results for the format string MMMM. For example, in Figure 7, the time zone is shown as CET, Central European Time, which we requested by specifying a time zone parameter of "zzz". However, if we change the time zone parameter to "zzzz" to get the full-text version of the time zone, the output may no longer be what you expect, as shown in Figure 9. Eye on the clock CET is used only during winter months in Austria. Notice the code for the client side consists only of setting the request method to GET. No header or body information is necessary for this MIDlet. Simply looking at how the servlet is invoked gives us a hint that we will be using a GET request method, because all parameters are passed as part of the URL rather than being sent in a separate stream. In Listing 12 you can see how we pass a parameter with the name format from the client to the server. The servlet will extract the value of this parameter to determine how to format the requested date. Passing a format parameter http: The bulk of what we are after is inside the method dopost. We first store the format requested by the client in the variable format. Next, we call SimpleDateFormat to create an instance of our preferred date formatting object and follow this with a call to create a new Date object. The servlet code package corej2me; import javax. There is no header information, so we move directly to reading the server data from an input stream, storing the results in the variable servermsg. After a successful call to callservlet we append the saved string returned from the server onto the Form our primary user interface component, which in turn displays the results on the device, as shown in Listing This was followed by a discussion of HTTP support, including how to package a client request, as well as interpret a server response. To demonstrate the concepts presented up to this point, we wrote a file-viewer MIDlet that downloaded and displayed a text file. In the final section of this article we wrote a comprehensive MIDlet to access a Java servlet. This included a broad range of network communication operations, such as passing parameters to the servlet, interpreting and processing the parameters on the server side and, finally, retrieving and displaying the server response on the client. With the completion of this comprehensive overview, you now have a baseline of information to begin exploring and developing your own J2ME applications! Part 1 provides an introduction to the MIDP high-level interface. Part 2 details MIDP s low-level interface. Part 3 goes inside the Record Management System. If you are new to the Wireless Toolkit, " MIDlet development with the Wireless Toolkit " developerworks, March provides an excellent starting point for learning to use it. The KVM mailing list is an excellent resource for J2ME developers, offering a searchable archive and an active discussion area. Muchow is a comprehensive guide to J2ME development. You can also visit the Core J2ME Web site for additional articles, tutorials and developer resources. The WebSphere Micro Environment provides an end-to-end solution connecting cellular phones, PDAs, and other pervasive devices to e-business. The alphaworks Web Services Toolkit for Mobile Devices provides tools and a runtime environments for developing applications that use Web services on small mobile devices, gateway devices, and intelligent controllers. The developerworks Wireless zone offers a wealth of technical content on pervasive computing. Also see the Java technology zone tutorials page for a complete listing of free tutorials from developerworks. Page 1

2 Chapter 2 : J2ME: Hello World Mobile Application - CodeProject This tutorial will show you how to create a J2ME MIDP RSS Reader application with NetBeans With RSS Reader you can read RSS feeds with your mobile device. This application is designed to work with MIDP so it is also compatible with older devices. Creating new mobile application project with. You can skip this step by manually modifying the J2ME stubs that you already have Do this if you made any manual modifications to the generated stubs. The usage policy defines the allowed permission associated with the content to the end user with additional temporal and monetary constraints if necessary. The common types of permission include: The right to invoke the application for example, a J2ME game. The right to display the content for example, an image. The optional constraints on the permission for providing fine-grained consumption control of content for example, preview rights. The number of times the permission rights are granted for example, the number of times you can run. The recurring period of time during which the permission rights are granted for example, the number of hours you can use. Start and End time: The pre-defined time range which the permission rights are granted. There are many standards on expressing the digital rights. The duration is specified in years, months, days, hours or minutes or all of these. A standard conversion is used to handle years days and months 30 days. The policy creation and the association of the policy with content is similar in both cases. The actual packaging of the policy with the content occurs at download time. The policy is enforced on the downloaded content after the user launches the downloaded application on the device. The custom implementation of Digital Rights Policy or Content Enhancement is a two-step development process. This implementation is also referred to as a Digital Rights Object. DRMPackager interface, which implements the packaging logic of content with the Rights object developed in Step 1. It defines a constructor with a single argument of type Javax. MIDlet to satisfy the general contract of DRMAgent, The implementation of onstartapp method displays a splash screen by calling the showsplash method that houses the business logic of the policy. Finally, the event handler of splash screen calls resumestartapp for the packaged application to resume normally. The compiled and pre-verified class file or JAR file which must also be pre-verified containing the class file can be packaged by defining a packager as explained in Section The following class Example describes the packaging logic of the Rights object. Example Packaging logic of the Rights object package devguide; import oracle. This class implements the general contract of DRMPackager by implementing the following method. To create a new Digital Rights Policy: From the browsing page Figure, click Create. Enter the name of the package. Enter the Name of the policy. For more information on creating a MIDlet application, see Section 4. The uploaded J2ME application can then be published as an application using the Content Manager to users groups for downloading. The association of the content with a DRM policy is done at the service creation time. All Content download transactions are recorded in an audit table. The content repository stores the deliverable contents information for any uploaded content. The information is accessible through public APIs. Table describes this information. Table Deliverable Content. Page 2

3 Chapter 3 : News, Tips, and Advice for Technology Professionals - TechRepublic J2me Edit TextArea class Extend the TextArea Component in the lwuit library of J2me. The extended TextArea must behave like the TextArea class but the only difference is that it must allow the user to type in text in the same way that the user would type text into a TextField. After browsing though other blog posts about how to publish an Android Library I still found that there were some missing details and that all the information was in different places. So I am going to go through this process and show what worked for me. For starters, I use Android Studio, which uses Gradle as the official build system, to set up all my Android projects. Make sure to download the latest version of Android Studio. Terminology Before we begin there is some terminology to get familiar with. Project â A project in Android Studio represents a complete Android app. Android Studio projects consist of one or more modules. A project in Android Studio is like a workspace in Eclipse. Module â A module is a component of your app that you can build, test, or debug independently. Modules contain the source code and resources for your app. Maven Central Repository â A repository provided by the Maven community. It contains a large number of commonly used libraries. Search Maven to browse the content of the central maven repository. Gradle, Please is another tool that allows you to search Maven Central. Gradle uses the jcenter repo if you included jcenter into your repositories section Notes about jcenter. It is a hosted deployment of Sonatype Nexus Professional with the Nexus Staging Suite used for the deployment process and validation, combined with a sync process to the Central Repository content delivery network. There are a few modifications you need to make to your project so that it is ready to be published as a library to Maven Central. Separate the code that is core to the library and code that shows sample usage of the library. In my projects, I separate these out into two separate modules library and sample. Checkout out the tips on setting up a library module. You may need to rename your modules. Page 3

4 Chapter 4 : J2ME MIDP RSS Reader Tutorial for NetBeans This book is dedicated to Anne, Sandy, Joanne, Amber-Leigh Christine, and Graaf, without whose help and support this book couldn t be written. Complete Reference / J2ME: TCR / Keogh / Automatic compilation and building of complex projects provides additional acceleration by giving immediate feedback on code changes and project status. All of these features depend on correct configuration of the projects in your workspace. We continue development of the product catalog and order processing application by configuring the project dependencies required to build and run that code. Part of the configuration consists of including a JAR file for the Apache log4j logging utility and a shared library of components from the Apache Axis Web Services toolkit. This chapter does not describe configuration and use of a source code version control repository. It is now time to expand our development to include the other projects set up in Chapter 3, "Managing Your Projects. Correct configuration is essential for error-free compilation, execution, and full use of Eclipse features such as Content Assist. The dialog shown in Figure is opened. The same property editor dialog may be opened using another approach. This is true for any resource, not only for projects. Projects with a Java nature have property pages as shown in Figure Open this dialog by right-clicking on the com. Figure Configuring source folders in your Java project build path. Each Java project has its own build path that specifies all dependencies required to compile the project. Those dependencies may come from other Java projects in the workspace, from Java archive. The Java Build Path properties page contains four tabs: The source and output folders. If you initially create a project without separate source and output folders, you can change it here. Multiple source folders can be used in one project; e. Check-off other projects in the workspace whose output folders should be added to this build path. Location of other archive files required by this project. Order in which projects and libraries appear in the build path and the default runtime classpath; e. Your source folder must contain subfolders for the complete package hierarchy as used by your Java source files. As described in Chapter 2, "Hello Eclipse," you can create these folder hierarchies easily using the New Java Package wizard. All non-java files from the source folder are copied unchanged to the corresponding folder hierarchy in the output folder. These non-java files are usually properties files and resource files. This sometimes creates confusion when Eclipse users store other configuration or documentation files within their source folder tree and then are surprised to see them copied into the output folder. These other non-source files should be saved in regular project folders that are not configured as source folders in the configuration. Figure shows the source folder tab in the Java project properties. This project was created with separate source and output folders named src and bin, respectively. This setup will suffice for most new projects created within Eclipse, but you can change that configuration here. Click the Add Folder If you create a test folder without adding it as a configured source folder, then Java source files within it will not be compiled. This is especially true if you are building applications using Java runtime libraries other than the J2SE libraries. The most common reason for using multiple source folders is to accommodate preexisting source code that was created outside of Eclipse. Developers can be very creative when organizing their projects! A test folder is sometime embedded within the application source folder, or several logically separate source trees may be included in the same folder. Eclipse provides other ways to split these sources into logically separate projects or source folders without changing the original structure, which might be required by other tools or Ant build files. You can add inclusion and exclusion filters on a source folder to explicitly select the files that are or are not used to build this project. There are many other possibilities for configuring preexisting code within an Eclipse project. Search for "project configuration tutorial" in the Eclipse help documentation where other detailed scenarios and suggestions are provided. These dependencies are shown as a UML package diagram in Figure These package names are shortened versions of the fully qualified project names used in our workspace. They represent the import dependencies between top-level packages in our application, but not necessarily the dependencies of all sub-packages and external utility libraries. Figure Order processing application package dependencies. Click on the Projects tab in the build path configuration, as shown in Figure All of the projects in your current workspace are listed except for the project we are now Page 4

5 configuring, which is com. Figure Configuring project dependencies for com. Referring to the package diagram, we see that orders depends on catalog and ubl. Configure the dependencies in your Eclipse project by selecting the checkboxes for those two projects. The end result is that the output folders from these other two projects are included in the build path of the current project, and their classes are available while compiling classes for com. An archive file may be in a project within your current workspace or elsewhere on your file system. The library configuration for com. Figure Configuring libraries for com. The Libraries tab contains five buttons for specifying the location of required library files: Select archive files located within any project from the current workspace; projects are not required to be Java projects. Select archive files anywhere on your file system external to the current workspace. Use a Java classpath variable as the base path for external archives. Select from a list of user libraries that define collections of related archive files. Select any folder from a project in the current workspace that contains Java. An important consideration when planning your project configuration is portability between different developer workstations in a team environment, which might include portability across operating systems such as Windows, Linux, and Macintosh. The first library option, Add JARs, is usually the most portable but not always possible or desirable when using libraries from other vendor products. Using external libraries with absolute file paths is the least portable. It is common practice to create a subfolder named lib within a Java project that contains other JAR files required to build the project. If you copy the file into your project using the operating system command line or file explorer, then your Eclipse Navigator view or Package Explorer view is updated automatically if you have automatic refresh enabled; otherwise, you must manually refresh the lib folder see Chapter 3. Now click the Add JARs Expand the project and lib folder containing log4j. It should appear as in Figure If you expand the log4j. The folder or JAR file containing Java source code for classes in this library. This source attachment location is the same kind of entry we configured in Chapter 5, "Rapid Development," to enable Javadoc hover and Content Assist for the Java runtime library. If you have source code for other libraries, such as log4j, then edit this library entry to get the same benefits when working with its classes. You can also configure the Javadoc location for the Java runtime libraries by expanding the JRE System Library in this same configuration dialog. This location is preset with the value http: However, this will work only while you are connected to the Internet. You can change this URL to a local file path if you want to enable this feature while working offline. This approach to project configuration is the easiest way to ensure that library locations are portable between different developer workstations and operating systems. All libraries are stored within the project folders, and locations except for Javadoc files are relative to the workspace home. If you zip your workspace and send it to another developer, he or she can simply unzip and open it in his or her Eclipse workbench. All project building and Content Assist will work without change. Another way to configure library locations that also has benefits of machine and platform portability is to use classpath variables. Click the Add Variable In Chapter 3, we reviewed the benefits of linked resource locations for gaining developer and platform portability of project files located outside of the workspace. Classpath variables are very similar to linked resource locations but require separate definitions. Figure Extending a Java classpath variable in project build path. Click the Configure Variables Back in the dialog shown in Figure, select this variable and click the Extend Expand the common and lib folders and then select servlet-api. The Servlet library is now part of your project configuration. You can easily share this workspace or project with other developers who use a different path or different version of the Tomcat server. All other aspects of this project configuration remain unchanged. Change the order of class path entries in situations where the same class name exists in more than one project or JAR location. Choose which project or JAR entries are contributed to other projects that have this project as one of their dependencies. Figure Configuring order and export of libraries for com. The same class name may exist in more than one class path entry when you have a project in your workspace that includes an updated version of some classes in one of the referenced libraries. If you want to compile and run an application using the updated version, then you must place the project above the older library version in the build path order. Another approach is for the client project to import the library itself, in addition to importing the required project. Refer to the package diagram in Figure that shows dependencies between the projects in our order processing application. When configuring the build path for orders. Page 5

6 Chapter 5 : J2ME Development and Provisioning In a J2SE environment you can arrange for multiple applications to share a third-party library (an XML parser for instance), in the form of a JAR file or class files, simply by adding them to the CLASSPATH. In the J2ME realm, class sharing isn't as easy. The MIDlet model bars access to external. Native methods were enabled. The JVM was forced to run in interpreted only mode. As can be seen from above, all the implementations took roughly the same amount of real time to execute, except when the JVM was run in interpreted mode in which case it took much longer. Therefore, the MD5 implementation that ships with the JDK will be adequate in a large number of cases. On November 19, I reran the most important of the tests using Java build 1. A speed advantage still existed. Now that the native method has been added, the remaining optimizations that could be made to this package are no longer as dramatic as they used to be. If you try my optimized implementation and decide that you still need something even faster, try the following: Using a JIT should make a huge difference over a plain interpreter. Make sure the native method is being used. This will make a massive difference if you are stuck using a plain interpreter. Performance on Windows could probably be optimized some more to the point that it approaches the native md5sum. The speed of an existing MD5 implementation can be achieved very easily by simply calling Runtime. This would also not be as flexible as the native method solution because you would be limited to a single checksum at the end of each data stream whereas with the native method solution the checksum of all the data seen thus far can be calculated an arbitrary number of times at an arbitrary number of points in time. If the use of native methods is not a viable option, there might be additional speed improvements that can be attained from the Java-only version of the code. The author of the MD5 implementation at www. I suspect that the speed difference may not be substantial, and it is unlikely that it would outperform the optional native method, but it could be worth a try. As of this writing, his implementation was in the public domain, so it is could probably be assimilated without a licensing conflict. The Code This implementation has been derived from code originally written by Santeri Paavolainen and was retrieved from his website at http: The initial changes that I Tim Macinta made were heavy optimization of the code, some bug fixes, and I replaced Mr. I also moved the code into a Java package because it was originally distributed without its own package. I attempted to contact Mr. Paavolainen to see if he was interested in incorporating my changes into his distribution, but after about a week I had not heard back from him so I decided to make my changes available on my own website. Highlights of the distribution contents: Please see the documentation for this file for instructions on where in your path to place the native library and instructions for how to disable the search for the native library if you are running the code from within an applet or within any other context with a restrictive SecurityManager. Also contains some test code for computing the MD5 hash of a file see the main method. This is not a requirement of the license, it is just a friendly request. This helps me because it helps spread the word about my contract software development services. It helps you because the more interest my MD5 library receives, the more it will be improved. Also, the more interest it receives, the more I will be encouraged to release other libraries I have sitting around. Linking to this page is a free, easy way to show your support. Page 6

7 Chapter 6 : Fast MD5 Implementation in Java Whatever your experience level, J2ME: The Complete Reference is your essential one-stop resource for understanding and utilizing J2ME to build mobile applications and services. Understand the organization, configurations, and profiles of J2ME, including the new PIM API. This tutorial will cover these subjects: Creating new mobile application project with NetBeans 4. You can aquire source files here. You also need to download kxml mobile class library. The latest version of the library on time of writing was 2. You can download the latest kxml release here. Change the Project Location to any folder on your computer. Now the project node in Projects window should look like this: Repeat the previous actions and add icons package Now you have requred packages for the source code files and the application icons. Under Value, type your own name. Close the edit window by clicking OK button. Now we are going to add a reference to kxml library that you have downloaded on your computer. Browse to downloaded kxml2-min. Creating the source code files Now we are going to create the source code for this project. Now you should have downloaded the existing source code files, as mentioned in the requirements section. It could take a few second to refresh the packages content in the project window. Add an icon to your application Now we are going to add an icon to our Mobile application. The NetBeans IDE is smart enough to fill up all the fields as you only need to select the icon that you want your application to have. Close both windows by clicking the OK button. Press F11 to build your project. As the memory usage in smaller mobile devices is a critical issue, therefore the obfuscating is very important part of the mobile application development. The following screenshots have been taken from Sony Ericsson emulator. Chapter 7 : Configuring an Eclipse Java Project Java Build Path InformIT J2ME allows developers to use Java and the J2ME wireless toolkit to create applications and programs for wireless and mobile devices. This is the most comprehensive resource for Java developers seeking to understand and utilise J2ME when building mobile applications and services. Chapter 8 : McGraw-Hill Education Overview of J2ME. J2ME (Java 2, Micro Edition) is a technology for Java applications on small devices. As an application development platform, J2ME is standard-based and offers a rich UI, one that is comparable to browser-based solutions. Chapter 9 : J2ME, Part 4: The Generic Connection Framework Inc then launched the Java Community Program (JCP) that brought together corporate users, vendors, and technologists to develop a standard for enterprise Java APIs The result is the xv xvi J2ME: The Complete Reference Java 2 Platform Enterprise Edition, commonly referred to as Java 2 Enterprise Edition (J2EE), and the Java 2 Micro Edition (J2ME. Page 7

CHAPTER 6. Java Project Configuration

CHAPTER 6. Java Project Configuration CHAPTER 6 Java Project Configuration Eclipse includes features such as Content Assist and code templates that enhance rapid development and others that accelerate your navigation and learning of unfamiliar

More information

EUSurvey OSS Installation Guide

EUSurvey OSS Installation Guide Prerequisites... 2 Tools... 2 Java 7 SDK... 2 MySQL 5.6 DB and Client (Workbench)... 4 Tomcat 7... 8 Spring Tool Suite... 11 Knowledge... 12 Control System Services... 12 Prepare the Database... 14 Create

More information

Introduction to Eclipse

Introduction to Eclipse Introduction to Eclipse Ed Gehringer Using (with permission) slides developed by Dwight Deugo (dwight@espirity.com) Nesa Matic (nesa@espirity.com( nesa@espirity.com) Sreekanth Konireddygari (IBM Corp.)

More information

Series 40 6th Edition SDK, Feature Pack 1 Installation Guide

Series 40 6th Edition SDK, Feature Pack 1 Installation Guide F O R U M N O K I A Series 40 6th Edition SDK, Feature Pack 1 Installation Guide Version Final; December 2nd, 2010 Contents 1 Legal Notice...3 2 Series 40 6th Edition SDK, Feature Pack 1...4 3 About Series

More information

IBM. IBM WebSphere Application Server Migration Toolkit. WebSphere Application Server. Version 9.0 Release

IBM. IBM WebSphere Application Server Migration Toolkit. WebSphere Application Server. Version 9.0 Release WebSphere Application Server IBM IBM WebSphere Application Server Migration Toolkit Version 9.0 Release 18.0.0.3 Contents Chapter 1. Overview......... 1 Chapter 2. What's new........ 5 Chapter 3. Support..........

More information

In order to support developers, there needs to be a number of tools available which may be involved in the ultimate solution.

In order to support developers, there needs to be a number of tools available which may be involved in the ultimate solution. Problem Statement J2ME or Java ME is ripe with device fragmentation. Add to that the limited memory available for midlet suites, it is imperative that developer tools provide developers with the help necessary

More information

Purpose. Why use Java? Installing the Software. Java

Purpose. Why use Java? Installing the Software. Java Purpose I am providing instructions for those that want to follow along the progress and missteps of Project BrainyCode. Going forward we will just refer to the project a JGG for Java Game Generator (I

More information

AppDev StudioTM 3.2 SAS. Migration Guide

AppDev StudioTM 3.2 SAS. Migration Guide SAS Migration Guide AppDev StudioTM 3.2 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS AppDev TM Studio 3.2: Migration Guide. Cary, NC: SAS Institute Inc.

More information

EUSurvey Installation Guide

EUSurvey Installation Guide EUSurvey Installation Guide Guide to a successful installation of EUSurvey May 20 th, 2015 Version 1.2 (version family) 1 Content 1. Overview... 3 2. Prerequisites... 3 Tools... 4 Java SDK... 4 MySQL Database

More information

Setup and Getting Startedt Customized Java EE Training:

Setup and Getting Startedt Customized Java EE Training: 2011 Marty Hall Java a with Eclipse: Setup and Getting Startedt Customized Java EE Training: http://courses.coreservlets.com/ 2011 Marty Hall For live Java EE training, please see training courses at http://courses.coreservlets.com/.

More information

Index. Symbols. /**, symbol, 73 >> symbol, 21

Index. Symbols. /**, symbol, 73 >> symbol, 21 17_Carlson_Index_Ads.qxd 1/12/05 1:14 PM Page 281 Index Symbols /**, 73 @ symbol, 73 >> symbol, 21 A Add JARs option, 89 additem() method, 65 agile development, 14 team ownership, 225-226 Agile Manifesto,

More information

For live Java EE training, please see training courses at

For live Java EE training, please see training courses at Java with Eclipse: Setup & Getting Started Originals of Slides and Source Code for Examples: http://courses.coreservlets.com/course-materials/java.html For live Java EE training, please see training courses

More information

DAY 3 J2ME Aalborg University, Mobile Device Group. Mobile. Mobile Phone Programming

DAY 3 J2ME Aalborg University, Mobile Device Group. Mobile. Mobile Phone Programming DAY 3 J2ME Mobile Phone Programming Java 2 Micro Edition (J2ME) Overview Introduction J2ME architecture MIDlets Application development Introduction J2ME Key Factors Portability: Write once run anywhere

More information

Android Sdk Install Documentation Eclipse. Ubuntu >>>CLICK HERE<<<

Android Sdk Install Documentation Eclipse. Ubuntu >>>CLICK HERE<<< Android Sdk Install Documentation Eclipse Ubuntu 12.04 These are instructions to install the Android SDK onto Ubuntu. If you are only I'm skipping the Eclipse install, sorry if you wanted. Just trying

More information

DB2 Stored Procedure and UDF Support in Rational Application Developer V6.01

DB2 Stored Procedure and UDF Support in Rational Application Developer V6.01 Session F08 DB2 Stored Procedure and UDF Support in Rational Application Developer V6.01 Marichu Scanlon marichu@us.ibm.com Wed, May 10, 2006 08:30 a.m. 09:40 a.m. Platform: Cross Platform Audience: -DBAs

More information

Module Road Map. 7. Version Control with Subversion Introduction Terminology

Module Road Map. 7. Version Control with Subversion Introduction Terminology Module Road Map 1. Overview 2. Installing and Running 3. Building and Running Java Classes 4. Refactoring 5. Debugging 6. Testing with JUnit 7. Version Control with Subversion Introduction Terminology

More information

AutoVue Integration SDK & Sample Integration for Filesys DMS

AutoVue Integration SDK & Sample Integration for Filesys DMS AutoVue Integration SDK & Sample Integration for Filesys DMS Installation Guide AutoVue Integration SDK Contents INTRODUCTION...1 SYSTEM REQUIREMENTS...2 INSTALLATION PREREQUISITES...3 Download the Eclipse

More information

Homework 9: Stock Search Android App with Facebook Post A Mobile Phone Exercise

Homework 9: Stock Search Android App with Facebook Post A Mobile Phone Exercise Homework 9: Stock Search Android App with Facebook Post A Mobile Phone Exercise 1. Objectives Ø Become familiar with Android Studio, Android App development and Facebook SDK for Android. Ø Build a good-looking

More information

Setting up Java environment for Project Capuchin development with Sony Ericsson phones

Setting up Java environment for Project Capuchin development with Sony Ericsson phones Instructions October 2008 Setting up Java environment for Project Capuchin development with Sony Ericsson phones Preface About this document This document contains a step by step description of how to

More information

ewon Flexy JAVA J2SE Toolkit User Guide

ewon Flexy JAVA J2SE Toolkit User Guide Application User Guide ewon Flexy JAVA J2SE Toolkit User Guide AUG 072 / Rev. 1.0 This document describes how to install the JAVA development environment on your PC, how to create and how to debug a JAVA

More information

Setting Up the Development Environment

Setting Up the Development Environment CHAPTER 5 Setting Up the Development Environment This chapter tells you how to prepare your development environment for building a ZK Ajax web application. You should follow these steps to set up an environment

More information

Oracle Eloqua Campaigns

Oracle Eloqua Campaigns http://docs.oracle.com Oracle Eloqua Campaigns User Guide 2018 Oracle Corporation. All rights reserved 12-Apr-2018 Contents 1 Campaigns Overview 5 2 Creating multi-step campaigns 6 3 Creating simple email

More information

Oracle FLEXCUBE Direct Banking

Oracle FLEXCUBE Direct Banking Oracle FLEXCUBE Direct Banking Mobile J2ME Client Developer Guide Release 12.0.3.0.0 Part No. E52543-01 April 2014 Mobile J2ME Client Developer Guide April 2014 Oracle Financial Services Software Limited

More information

HPE Security Fortify Plugins for Eclipse

HPE Security Fortify Plugins for Eclipse HPE Security Fortify Plugins for Eclipse Software Version: 17.20 Installation and Usage Guide Document Release Date: November 2017 Software Release Date: November 2017 Legal Notices Warranty The only warranties

More information

Tutorial on Basic Android Setup

Tutorial on Basic Android Setup Tutorial on Basic Android Setup EE368/CS232 Digital Image Processing, Spring 2015 Linux Version Introduction In this tutorial, we will learn how to set up the Android software development environment and

More information

i2b2 Workbench Developer s Guide: Eclipse Neon & i2b2 Source Code

i2b2 Workbench Developer s Guide: Eclipse Neon & i2b2 Source Code i2b2 Workbench Developer s Guide: Eclipse Neon & i2b2 Source Code About this guide Informatics for Integrating Biology and the Bedside (i2b2) began as one of the sponsored initiatives of the NIH Roadmap

More information

User Guide Zend Studio for Eclipse V6.1

User Guide Zend Studio for Eclipse V6.1 User Guide Zend Studio for Eclipse V6.1 By Zend Technologies, Inc. www.zend.com Disclaimer The information in this help is subject to change without notice and does not represent a commitment on the part

More information

BASIC USER TRAINING PROGRAM Module 1: Installation and Licensing

BASIC USER TRAINING PROGRAM Module 1: Installation and Licensing BASIC USER TRAINING PROGRAM Module 1: Installation and Licensing Objective Student will be able to install itest and connect to an appropriate license source Outline Installation Windows Linux Setting

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.0 SP1.5 User Guide P/N 300 005 253 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All

More information

Mobile Application Development. Introduction. Dr. Christelle Scharff Pace University, USA

Mobile Application Development. Introduction. Dr. Christelle Scharff Pace University, USA Mobile Application Development Introduction Dr. Christelle Scharff cscharff@pace.edu Pace University, USA Objectives Getting an overview of the mobile phone market, its possibilities and weaknesses Providing

More information

Chapter 1 GETTING STARTED. SYS-ED/ Computer Education Techniques, Inc.

Chapter 1 GETTING STARTED. SYS-ED/ Computer Education Techniques, Inc. Chapter 1 GETTING STARTED SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: WSAD. J2EE business topologies. Workbench. Project. Workbench components. Java development tools. Java projects

More information

Who am I? Wireless Online Game Development for Mobile Device. What games can you make after this course? Are you take the right course?

Who am I? Wireless Online Game Development for Mobile Device. What games can you make after this course? Are you take the right course? Who am I? Wireless Online Game Development for Mobile Device Lo Chi Wing, Peter Lesson 1 Email: Peter@Peter-Lo.com I123-1-A@Peter Lo 2007 1 I123-1-A@Peter Lo 2007 2 Are you take the right course? This

More information

Java with Eclipse: Setup & Getting Started

Java with Eclipse: Setup & Getting Started Java with Eclipse: Setup & Getting Started Originals of slides and source code for examples: http://courses.coreservlets.com/course-materials/java.html Also see Java 8 tutorial: http://www.coreservlets.com/java-8-tutorial/

More information

Salesforce Classic Mobile Guide for iphone

Salesforce Classic Mobile Guide for iphone Salesforce Classic Mobile Guide for iphone Version 41.0, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

DAY 3 J2ME March 2007 Aalborg University, Mobile Device Group Mobile Phone Programming

DAY 3 J2ME March 2007 Aalborg University, Mobile Device Group Mobile Phone Programming DAY 3 J2ME Mobile Phone Programming Module 2 Micro (J2ME) Overview Introduction J2ME architecture Introduction 1 J2ME Key Factors Portability: Write once run anywhere Security: Code runs within the confines

More information

Software Development Kit

Software Development Kit Software Development Kit Informatica MDM - Product 360 Version: 8.1.1 07/04/2018 English 1 Table of Contents 1 Table of Contents...2 2 SDK Package...3 3 Prerequisites...3 3.1 Database...3 3.2 Java Development

More information

FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE VERSION 9. Setup Guide. This guide explains how to install and configure the Fusion Registry.

FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE VERSION 9. Setup Guide. This guide explains how to install and configure the Fusion Registry. FUSION REGISTRY COMMUNITY EDITION VERSION 9 Setup Guide This guide explains how to install and configure the Fusion Registry. FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE Fusion Registry: 9.2.x Document

More information

Android Development Tools = Eclipse + ADT + SDK

Android Development Tools = Eclipse + ADT + SDK Lesson 2 Android Development Tools = Eclipse + ADT + SDK Victor Matos Cleveland State University Portions of this page are reproduced from work created and shared by Google and used according to terms

More information

with TestComplete 12 Desktop, Web, and Mobile Testing Tutorials

with TestComplete 12 Desktop, Web, and Mobile Testing Tutorials with TestComplete 12 Desktop, Web, and Mobile Testing Tutorials 2 About the Tutorial With TestComplete, you can test applications of three major types: desktop, web and mobile: Desktop applications - these

More information

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version 1.1.0 and Eclipse Install, work with data perspectives, create connections, and create a project Skill Level: Intermediate

More information

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version 1.1.0 and Eclipse Install, work with data perspectives, create connections, and create a project Skill Level: Intermediate

More information

COPYRIGHTED MATERIAL

COPYRIGHTED MATERIAL Introduction xxiii Chapter 1: Apache Tomcat 1 Humble Beginnings: The Apache Project 2 The Apache Software Foundation 3 Tomcat 3 Distributing Tomcat: The Apache License 4 Comparison with Other Licenses

More information

This tutorial explains how you can use Gradle as a build automation tool for Java as well as Groovy projects.

This tutorial explains how you can use Gradle as a build automation tool for Java as well as Groovy projects. About the Tutorial Gradle is an open source, advanced general purpose build management system. It is built on ANT, Maven, and lvy repositories. It supports Groovy based Domain Specific Language (DSL) over

More information

BEAWebLogic. Portal. Tutorials Getting Started with WebLogic Portal

BEAWebLogic. Portal. Tutorials Getting Started with WebLogic Portal BEAWebLogic Portal Tutorials Getting Started with WebLogic Portal Version 10.2 February 2008 Contents 1. Introduction Introduction............................................................ 1-1 2. Setting

More information

Red Hat JBoss Enterprise Application Platform 6.4

Red Hat JBoss Enterprise Application Platform 6.4 Red Hat JBoss Enterprise Application Platform 6.4 Getting Started Guide For Use with Red Hat JBoss Enterprise Application Platform 6 Last Updated: 2017-12-12 Red Hat JBoss Enterprise Application Platform

More information

(Refer Slide Time: 0:48)

(Refer Slide Time: 0:48) Mobile Computing Professor Pushpendra Singh Indraprastha Institute of Information Technology Delhi Lecture 10 Android Studio Last week gave you a quick introduction to android program. You develop a simple

More information

Your password is: firstpw

Your password is: firstpw SHARE Session #9777: WebSphere and Rational Developer Hands-on-Labs Building Java application on System z with RDz Lab exercise (estimate duration) Part 1: Your first Java application on z/os (~35 min).

More information

Red Hat Developer Studio 12.0

Red Hat Developer Studio 12.0 Red Hat Developer Studio 12.0 Release Notes and Known Issues Highlighted features in 12.0 Last Updated: 2018-07-18 Red Hat Developer Studio 12.0 Release Notes and Known Issues Highlighted features in

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.5 SP2 User Guide P/N 300-009-462 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2008 2009 EMC Corporation. All

More information

02/03/15. Compile, execute, debugging THE ECLIPSE PLATFORM. Blanks'distribu.on' Ques+ons'with'no'answer' 10" 9" 8" No."of"students"vs."no.

02/03/15. Compile, execute, debugging THE ECLIPSE PLATFORM. Blanks'distribu.on' Ques+ons'with'no'answer' 10 9 8 No.ofstudentsvs.no. Compile, execute, debugging THE ECLIPSE PLATFORM 30" Ques+ons'with'no'answer' What"is"the"goal"of"compila5on?" 25" What"is"the"java"command"for" compiling"a"piece"of"code?" What"is"the"output"of"compila5on?"

More information

Beginner s Guide to ACD5

Beginner s Guide to ACD5 Beginner s Guide to ACD5 AIA Contract Documents Online Service for Single-Users A step-by-step guide to creating, editing, sharing and managing contract documents Beginner s Guide to ACD5 AIA Contract

More information

Introduction to Java. Lecture 1 COP 3252 Summer May 16, 2017

Introduction to Java. Lecture 1 COP 3252 Summer May 16, 2017 Introduction to Java Lecture 1 COP 3252 Summer 2017 May 16, 2017 The Java Language Java is a programming language that evolved from C++ Both are object-oriented They both have much of the same syntax Began

More information

How To Get Database Schema In Java Using >>>CLICK HERE<<<

How To Get Database Schema In Java Using >>>CLICK HERE<<< How To Get Database Schema In Java Using Netbeans 6.8 But it can help novice students to complete their database assignment and also get knolege about How to configure Oracle 1og express database with

More information

WebsitePanel User Guide

WebsitePanel User Guide WebsitePanel User Guide User role in WebsitePanel is the last security level in roles hierarchy. Users are created by reseller and they are consumers of hosting services. Users are able to create and manage

More information

Salesforce Classic Guide for iphone

Salesforce Classic Guide for iphone Salesforce Classic Guide for iphone Version 35.0, Winter 16 @salesforcedocs Last updated: October 27, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Tutorial on OpenCV for Android Setup

Tutorial on OpenCV for Android Setup Tutorial on OpenCV for Android Setup EE368/CS232 Digital Image Processing, Winter 2019 Introduction In this tutorial, we will learn how to install OpenCV for Android on your computer and how to build Android

More information

PART 1. Eclipse IDE Tutorial. 1. What is Eclipse? Eclipse Java IDE

PART 1. Eclipse IDE Tutorial. 1. What is Eclipse? Eclipse Java IDE PART 1 Eclipse IDE Tutorial Eclipse Java IDE This tutorial describes the usage of Eclipse as a Java IDE. It describes the installation of Eclipse, the creation of Java programs and tips for using Eclipse.

More information

JBoss Portal Quickstart User Guide. Release 2.6.6

JBoss Portal Quickstart User Guide. Release 2.6.6 JBoss Portal 2.6.6 Quickstart User Guide Release 2.6.6 Table of Contents JBoss Portal - Overview... iii 1. Tutorial Forward...1 2. Installation...2 2.1. Downloading and Installing...2 2.2. Starting JBoss

More information

Red Hat Application Migration Toolkit 4.2

Red Hat Application Migration Toolkit 4.2 Red Hat Application Migration Toolkit 4.2 Eclipse Plugin Guide Identify and resolve migration issues by running the Red Hat Application Migration Toolkit against your applications in Eclipse. Last Updated:

More information

JReport Enterprise Viewer for JREntServer Manual

JReport Enterprise Viewer for JREntServer Manual JReport Enterprise Viewer for JREntServer Manual Table of Contents Installing and Launching JReport Enterprise Viewer...1 Installing JReport Enterprise Viewer...1 Installing on Windows...1 Installing on

More information

JBoss SOAP Web Services User Guide. Version: M5

JBoss SOAP Web Services User Guide. Version: M5 JBoss SOAP Web Services User Guide Version: 3.3.0.M5 1. JBoss SOAP Web Services Runtime and Tools support Overview... 1 1.1. Key Features of JBossWS... 1 2. Creating a Simple Web Service... 3 2.1. Generation...

More information

Teiid Designer User Guide 7.5.0

Teiid Designer User Guide 7.5.0 Teiid Designer User Guide 1 7.5.0 1. Introduction... 1 1.1. What is Teiid Designer?... 1 1.2. Why Use Teiid Designer?... 2 1.3. Metadata Overview... 2 1.3.1. What is Metadata... 2 1.3.2. Editing Metadata

More information

DB2 for z/os Stored Procedure support in Data Server Manager

DB2 for z/os Stored Procedure support in Data Server Manager DB2 for z/os Stored Procedure support in Data Server Manager This short tutorial walks you step-by-step, through a scenario where a DB2 for z/os application developer creates a query, explains and tunes

More information

Just Enough Eclipse What is Eclipse(TM)? Why is it important? What is this tutorial about?

Just Enough Eclipse What is Eclipse(TM)? Why is it important? What is this tutorial about? Just Enough Eclipse What is Eclipse(TM)? Eclipse is a kind of universal tool platform that provides a feature-rich development environment. It is particularly useful for providing the developer with an

More information

Achieving Contentment with the AutoCAD Architecture Content Browser Douglas Bowers, AIA

Achieving Contentment with the AutoCAD Architecture Content Browser Douglas Bowers, AIA Achieving Contentment with the AutoCAD Architecture Content Browser Douglas Bowers, AIA AB110-3 If you have created AutoCAD Architecture (formerly ADT) object styles and want to know how to easily share

More information

Call: Hyperion Planning Course Content:35-40hours Course Outline Planning Overview

Call: Hyperion Planning Course Content:35-40hours Course Outline Planning Overview Hyperion Planning Course Content:35-40hours Course Outline Planning Overview Oracle's Enterprise Performance Management Planning Architecture Planning and Essbase Navigating Workspace Launching Workspace

More information

From: Sudarshan N Raghavan (770)

From: Sudarshan N Raghavan (770) Spectrum Software, Inc. 11445 Johns Creek Pkwy. Suite 300 Duluth, GA 30097 www.spectrumscm.com Subject: SpectrumSCM Plugin for the Eclipse Platform Original Issue Date: February 2 nd, 2005 Latest Update

More information

BEAWebLogic. Portal. Overview

BEAWebLogic. Portal. Overview BEAWebLogic Portal Overview Version 10.2 Revised: February 2008 Contents About the BEA WebLogic Portal Documentation Introduction to WebLogic Portal Portal Concepts.........................................................2-2

More information

Slide 1 CS 170 Java Programming 1 Duration: 00:00:49 Advance mode: Auto

Slide 1 CS 170 Java Programming 1 Duration: 00:00:49 Advance mode: Auto CS 170 Java Programming 1 Eclipse@Home Downloading, Installing and Customizing Eclipse at Home Slide 1 CS 170 Java Programming 1 Eclipse@Home Duration: 00:00:49 What is Eclipse? A full-featured professional

More information

Customized Enterprise Installation of IBM Rational ClearCase Using the IBM Rational ClearCase Remote Client plug-in and the Eclipse SDK

Customized Enterprise Installation of IBM Rational ClearCase Using the IBM Rational ClearCase Remote Client plug-in and the Eclipse SDK Customized Enterprise Installation of IBM Rational ClearCase Using the IBM Rational ClearCase Remote Client plug-in and the Eclipse SDK Fred Bickford IV Senior Advisory Software Engineer IBM Rational Customer

More information

System Installation Guide

System Installation Guide System Installation Guide Guide to a successful system installation on an open source application stack. October 25 th, 2016 Version 1.3.3 Contact: DIGIT-EUSURVEY-OSS@ec.europa.eu 1 Content 1. Overview...

More information

Application Servers - Installing SAP Web Application Server

Application Servers - Installing SAP Web Application Server Proven Practice Application Servers - Installing SAP Web Application Server Product(s): IBM Cognos 8.3, SAP Web Application Server Area of Interest: Infrastructure DOC ID: AS02 Version 8.3.0.0 Installing

More information

Assignment 1: Port & Starboard

Assignment 1: Port & Starboard Assignment 1: Port & Starboard Revisions: Jan 7: Added note on how to clean project for submission. Submit a ZIP file of all the deliverables to the CourSys: https://courses.cs.sfu.ca/ All submissions

More information

InfoSphere Data Architect Pluglets

InfoSphere Data Architect Pluglets InfoSphere Data Architect Pluglets Macros for Eclipse This article provides information on how to develop custom pluglets and use sample pluglets provided by InfoSphere Data Architect. InfoSphere Data

More information

AN INTRODUCTION TO OUTLOOK WEB ACCESS (OWA)

AN INTRODUCTION TO OUTLOOK WEB ACCESS (OWA) INFORMATION TECHNOLOGY SERVICES AN INTRODUCTION TO OUTLOOK WEB ACCESS (OWA) The Prince William County School Division does not discriminate in employment or in its educational programs and activities against

More information

ADOBE DRIVE 4.2 USER GUIDE

ADOBE DRIVE 4.2 USER GUIDE ADOBE DRIVE 4.2 USER GUIDE 2 2013 Adobe Systems Incorporated. All rights reserved. Adobe Drive 4.2 User Guide Adobe, the Adobe logo, Creative Suite, Illustrator, InCopy, InDesign, and Photoshop are either

More information

Source Management (Version Control) Installation and Configuration Guide. Version 8.0 and Higher

Source Management (Version Control) Installation and Configuration Guide. Version 8.0 and Higher Source Management (Version Control) Installation and Configuration Guide Version 8.0 and Higher July 05, 2018 Active Technologies, EDA, EDA/SQL, FIDEL, FOCUS, Information Builders, the Information Builders

More information

Introduction to creating mashups using IBM Mashup Center

Introduction to creating mashups using IBM Mashup Center Introduction to creating mashups using IBM Mashup Center ii Introduction to creating mashups using IBM Mashup Center Contents Chapter 1. Tutorial: Introduction to creating mashups using IBM Mashup Center...............

More information

CS 170 Java Tools. Step 1: Got Java?

CS 170 Java Tools. Step 1: Got Java? CS 170 Java Tools This semester in CS 170 we'll be using the DrJava Integrated Development Environment. You're free to use other tools but this is what you'll use on your programming exams, so you'll need

More information

This tutorial will teach you how to use Java Servlets to develop your web based applications in simple and easy steps.

This tutorial will teach you how to use Java Servlets to develop your web based applications in simple and easy steps. About the Tutorial Servlets provide a component-based, platform-independent method for building Webbased applications, without the performance limitations of CGI programs. Servlets have access to the entire

More information

Provisioning WPF based WP Composite Applications to Expeditor

Provisioning WPF based WP Composite Applications to Expeditor Provisioning WPF based WP Composite Applications to Expeditor Copyright International Business Machines Corporation 2007. All rights reserved. Sample walk through #2 in a series of articles describing

More information

Quick and Easy Solutions With Free Java Libraries

Quick and Easy Solutions With Free Java Libraries Quick and Easy Solutions With Free Java Libraries By Shaun Haney he BBj API is a toolkit full of solutions for everyday business T needs. Businesses of varying sizes may have the need to integrate charts

More information

Red Hat Application Migration Toolkit 4.0

Red Hat Application Migration Toolkit 4.0 Red Hat Application Migration Toolkit 4.0 Eclipse Plugin Guide Simplify Migration of Java Applications Last Updated: 2018-04-04 Red Hat Application Migration Toolkit 4.0 Eclipse Plugin Guide Simplify

More information

Code Check TM Software Requirements Specification

Code Check TM Software Requirements Specification Code Check TM Software Requirements Specification Author: Richard McKenna Debugging Enterprises TM Based on IEEE Std 830 TM -1998 (R2009) document format Copyright 2017 Debugging Enterprises No part of

More information

1. Go to the URL Click on JDK download option

1. Go to the URL   Click on JDK download option Download and installation of java 1. Go to the URL http://www.oracle.com/technetwork/java/javase/downloads/index.html Click on JDK download option 2. Select the java as per your system type (32 bit/ 64

More information

INTRODUCTION... 3 INSTALLATION GUIDE FOR ECLIPSE 3.1 AND INSTALLATION GUIDE FOR ECLIPSE 3.3 TO

INTRODUCTION... 3 INSTALLATION GUIDE FOR ECLIPSE 3.1 AND INSTALLATION GUIDE FOR ECLIPSE 3.3 TO INTRODUCTION... 3 INSTALLATION GUIDE FOR ECLIPSE 3.1 AND 3.2... 4 INSTALLATION GUIDE FOR ECLIPSE 3.3 TO 4.3... 23 INSTALLATION GUIDE FOR ECLIPSE 4.4 OR HIGHER... 37 ECLIPSE VIEWERS... 41 DEVICES... 41

More information

TransformixTools Axelor Demo Project

TransformixTools Axelor Demo Project TransformixTools Axelor Demo Project Introduction... 2 ADK for Rapid Application Development... 3 Developer High Productivity... 3 Web and Mobile User Interfaces... 3 ADK and Reverse Engineering of Existing

More information

Spring Web Services Tutorial With Example In

Spring Web Services Tutorial With Example In Spring Web Services Tutorial With Example In Eclipse Bottom Up In addition to creating a basic web service and client, the article goes a step further This article will be using the Eclipse IDE (Kepler),

More information

DB DAL BLL WS. Server. Click2Go Web Site. Mobile Phone. Click2Go Mobile Application. System's Architecture. System Overview

DB DAL BLL WS. Server. Click2Go Web Site. Mobile Phone. Click2Go Mobile Application. System's Architecture. System Overview System's Architecture System Overview Server Click2Go Web Site DB DAL BLL WS Mobile Internet Connection (GPRS, UMTS, WLAN, ) Mobile Phone Click2Go Mobile Application The system contains two environments:

More information

CHAPTER 7 WEB SERVERS AND WEB BROWSERS

CHAPTER 7 WEB SERVERS AND WEB BROWSERS CHAPTER 7 WEB SERVERS AND WEB BROWSERS Browser INTRODUCTION A web browser is a software application for retrieving, presenting, and traversing information resources on the World Wide Web. An information

More information

IBM Workplace Collaboration Services API Toolkit

IBM Workplace Collaboration Services API Toolkit IBM Workplace Collaboration Services API Toolkit Version 2.5 User s Guide G210-1958-00 IBM Workplace Collaboration Services API Toolkit Version 2.5 User s Guide G210-1958-00 Note Before using this information

More information

1. The Apache Derby database

1. The Apache Derby database 1. The Apache Derby database In these instructions the directory jdk_1.8.0_112 is named after the version 'number' of the distribution. Oracle tend to issue many new versions of the JDK/ JRE each year.

More information

Workplace Client Technology, Micro Edition. WCTME Enterprise Offering Application Developer s Guide

Workplace Client Technology, Micro Edition. WCTME Enterprise Offering Application Developer s Guide Workplace Client Technology, Micro Edition WCTME Enterprise Offering Application Developer s Guide Note Before using this information and the product it supports, read the information in Notices, on page

More information

A Guide to Automation Services 8.5.1

A Guide to Automation Services 8.5.1 A Guide to Automation Services 8.5.1 CONTENTS Contents Introduction...4 Where we're coming from...4 Conventions in this book...4 Understanding Automation Services...6 What is Automation Services?...6 Process

More information

Getting Started with Web Services

Getting Started with Web Services Getting Started with Web Services Getting Started with Web Services A web service is a set of functions packaged into a single entity that is available to other systems on a network. The network can be

More information

Getting Started with Web Services

Getting Started with Web Services Getting Started with Web Services Getting Started with Web Services A web service is a set of functions packaged into a single entity that is available to other systems on a network. The network can be

More information

NetBeans Primer v8.0

NetBeans Primer v8.0 Using an IDE for Web Development NetBeans Primer v8.0 Using a simple text editor to create source code and compiling from the command line enables the programmer to concentrate on the code and not be encumbered

More information

Database Explorer Quickstart

Database Explorer Quickstart Database Explorer Quickstart Last Revision: Outline 1. Preface 2. Requirements 3. Introduction 4. Creating a Database Connection 1. Configuring a JDBC Driver 2. Creating a Connection Profile 3. Opening

More information

CHAPTER 6. Organizing Your Development Project. All right, guys! It s time to clean up this town!

CHAPTER 6. Organizing Your Development Project. All right, guys! It s time to clean up this town! CHAPTER 6 Organizing Your Development Project All right, guys! It s time to clean up this town! Homer Simpson In this book we describe how to build applications that are defined by the J2EE specification.

More information

Vizit 6 Installation Guide

Vizit 6 Installation Guide Vizit 6 Installation Guide Contents Running the Solution Installer... 3 Installation Requirements... 3 The Solution Installer... 3 Activating your License... 7 Online Activation... 7 Offline Activation...

More information