SYSTEMATIC WAY of PROCESSING and FETCHING DATA USING DATA MINING Dr.G.Komarasamy , N.Balaji , J.Gokulnath , R.Hariprasath

Total Page:16

File Type:pdf, Size:1020Kb

SYSTEMATIC WAY of PROCESSING and FETCHING DATA USING DATA MINING Dr.G.Komarasamy , N.Balaji , J.Gokulnath , R.Hariprasath International Journal on Applicationsin Information and Communication Engineering Volume 3:Issue 1: January 2017, pp 24 - 30 www.aetsjournal.com ISSN (Online) : 2394 - 6237 ----------------------------------------------------------------------------------------------------------------------------- ------------------------- SYSTEMATIC WAY OF PROCESSING AND FETCHING DATA USING DATA MINING Dr.G.Komarasamy , N.Balaji , J.Gokulnath , R.Hariprasath Regression is predicting real value for a given data Abstract— Big Data consists of huge modules, difficult, instance. Clustering is the process of grouping similar growing data sets with numerous and independent sources items together into some clusters. Java has been around with the fast development of networking, storage of data, and since 1991, developed by a small team of Sun the data gathering capacity. Here we are using Apriori theorem that states the characteristics data and proposes a data Microsystems developers in a project originally called processing model from the data mining view for extracting the Green project. The intent of the project was to useful information from these large datasets or streams of data develop a platform-independent software technology that to look for relevant or pertinent information. Here we analyze would be used in the consumer electronics industry. The several challenges at the data, model, and system levels and language that the team created was originally called Oak. using apriori theorem for clustered storage which combines Around the time the First Person project was multiple arrays to increase their performance, capacity and floundering in consumer electronics, a new craze was reliability. Clustering techniques is used to partition the file uploaded by the admin as a set of entities into different groups gaining momentum in America; the craze was called so that it will be easy for the user to download even large files "Web surfing." The World Wide Web, a name applied to efficiently. the Internet's millions of linked HTML documents was suddenly becoming popular for use by the masses. Keywords -- Big Data, Networking, Apriori, Clustering. The reason for this was the introduction of a graphical Web browser called Mosaic, developed by ncSA. The I. INTRODUCTION browser simplified Web browsing by combining text and ata production rate has been increased dramatically graphics into a single interface to eliminate the need for D and we are able store much more data than before users to learn many confusing UNIX and DOS like purchase data, social media data, mobile phone data. commands. Navigating around the Web was much easier Businesses and customers need useful or actionable using Mosaic. knowledge and gain insight from raw data for various It has only been since 1994 that Oak technology has purposes. It’s not just searching data or databases. Data been applied to the Web. In 1994, two Sun developers mining helps us to extract new information and uncover created the first version of Hot Java, and then called hidden patterns out of the stored and streaming data. The Web Runner, which is a graphical browser for the Web process of discovering hidden patterns in large data sets. that exists today. The browser was coded entirely in the It utilizes methods at the intersection of artificial Oak language, by this time called Java. Soon after, the intelligence, machine learning, statistics, and database Java compiler was rewritten in the Java language from systems. Extracting or mining knowledge from large its original C code, thus proving that Java could be used amounts of data, or big data. Data-driven discovery and effectively as an application language. Sun introduced modeling of hidden patterns in big data. Extracting Java in May 1995 at the Sun World 95 convention. implicit, previously unknown, unexpected, and Web surfing has become an enormously popular potentially useful information/knowledge from data. practice among millions of computer users. Until Java, Classification is assign data into predefined classes. however, the content of information on the Internet has been a bland series of HTML documents. Web users are Dr.G.Komarasamy , Department of Computer Science and hungry for applications that are interactive, that users Engineering ,Bannari Amman Institute of Technology, Sathyamangalam, India can execute no matter what hardware or software N.Balaji , Department of Computer Science and Engineering , platform they are using, and that travel across Bannari Amman Institute of Technology, Sathyamangalam, India heterogeneous networks and do not spread viruses to J.Gokulnath , Department of Computer Science and Engineering , their computers. Java can create such applications. Bannari Amman Institute of Technology, Sathyamangalam, India R.Hariprasath , Department of Computer Science and Engineering Java Server Pages or JSP for short is Sun's solution for , Bannari Amman Institute of Technology, Sathyamangalam, India developing dynamic web sites. JSP provide excellent server side scripting support for creating database driven 24 International Journal on Applicationsin Information and Communication Engineering Volume 3:Issue 1: January 2017, pp 24 - 30 www.aetsjournal.com ISSN (Online) : 2394 - 6237 ----------------------------------------------------------------------------------------------------------------------------- ------------------------- web applications. JSP enable the developers to directly Web server that interacts with the servlets. The Web insert java code into jsp file, this makes the development container is responsible for managing the lifecycle of process very simple and its maintenance also becomes servlets, mapping a URL to a particular servlet and very easy. JSP pages are efficient, it loads into the web ensuring that the URL requester has the correct access servers memory on receiving the request very first time rights. and the subsequent calls are served within a very short A Servlet is an object that receives a request and period of time. generates a response based on that request. The basic In today's environment most web sites servers servlet package defines Java objects to represent servlet dynamic pages based on user request. Database is very requests and responses, as well as objects to reflect the convenient way to store the data of users and other servlet's configuration things. JDBC provide excellent database connectivity in package javax.servlet.http defines HTTP-specific heterogeneous database environment. Using JSP and subclasses of the generic servlet elements, including JDBC its very easy to develop database driven web session management objects that track multiple requests application. Java is known for its characteristic of "write and responses between the Web server and a client. once, run anywhere." JSP pages are platform Servlets may be packaged in a WAR file as a Web independent. Your port your .jsp pages to any platform. application. A JSP page services requests as a servlet. Thus, the Servlets can be generated automatically from Java life cycle and many of the capabilities of JSP pages (in Server Pages (JSP) by the JavaServer Pages compiler. particular the dynamic aspects) are determined by Java The difference between Servlets and JSP is that Servlets Servlet technology and much of the discussion in this typically embed HTML inside Java code, while JSPs chapter refers to functions. embed Java code in HTML. When a request is mapped to a JSP page, it is handled The direct usage of Servlets to generate HTML (as by a special servlet that first checks whether the JSP shown in the example below) is relatively rare page's servlet is older than the JSP page. If it is, it nowadays, the higher level MVC web framework in Java translates the JSP page into a servlet class and compiles EE (JSF) still explicitly uses the Servlet technology for the class. During development, one of the advantages of the low level request/response handling via the JSP pages over servlets is that the build process is FacesServlet. A somewhat older usage is to use servlets performed automatically. in conjunction with JSPs in a pattern called Model 2, A servlet is a Java programming language class used which is a flavor of the model-view-controller pattern. to extend the capabilities of servers that host applications Servlets belong in WEB-INF/classes. On this accessed via a request-response programming model. machine, the source is in Java source. Web-Inf/classes is Although servlets can respond to any type of request, the standard location for servlets and other Java classes. they are commonly used to extend the applications Resin automatically reloads and recompiles servlets, hosted by Web servers. Thus, it can be thought of as beans, and classes placed in web-inf/classes. You should a Java Applet that runs on a server instead of a browser. make some changes and add errors to become familiar A Servlet is a Java class in Java EE that conforms to with Resin's recompilation and the error reporting. the Java Servlet API, a protocol by which a Java class MySQL ships with many command line tools, from may respond to requests. They are not tied to a specific which the main interface is 'mysql' client.Third-parties client-server protocol, but are most often used with have also developed tools to manage, optimize, monitor the HTTP protocol. Therefore, the word "Servlet" is and backup a MySQL server, some listed below. All often used in the meaning of "HTTP Servlet". these tools work on *NIX type operating systems, and Thus, a software developer
Recommended publications
  • Sun Ultra 45 and Ultra 25 Workstations Product Notes
    Sun™ Ultra™ 45 and Ultra 25 Workstations Product Notes Sun Microsystems, Inc. www.sun.com Part No. 819-1893-15 January 2008, Revision A Submit comments about this document at: http://www.sun.com/hwdocs/feedback Copyright 2008 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. All rights reserved. Sun Microsystems, Inc. has intellectual property rights relating to technology that is described in this document. In particular, and without limitation, these intellectual property rights may include one or more of the U.S. patents listed at http://www.sun.com/patents and one or more additional patents or pending patent applications in the U.S. and in other countries. This document and the product to which it pertains are distributed under licenses restricting their use, copying, distribution, and decompilation. No part of the product or of this document may be reproduced in any form by any means without prior written authorization of Sun and its licensors, if any. Third-party software, including font technology, is copyrighted and licensed from Sun suppliers. Parts of the product may be derived from Berkeley BSD systems, licensed from the University of California. UNIX is a registered trademark in the U.S. and in other countries, exclusively licensed through X/Open Company, Ltd. Sun, Sun Microsystems, the Sun logo, Java, docs.sun.com, Solaris, SunSolve, NetBeans, SunVTS, OpenBoot, and Ultra are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and in other countries. All SPARC trademarks are used under license and are trademarks or registered trademarks of SPARC International, Inc.
    [Show full text]
  • Sun Ultratm 25 Workstation & Sun Ultra 45 Workstation Just the Facts
    Sun UltraTM 25 Workstation & Sun Ultra 45 Workstation Just the Facts SunWIN Token# 473547 SunWIN Token# 460409 Copyrights © 2006 Sun Microsystems, Inc. All Rights Reserved. Sun, Sun Microsystems, the Sun logo, Ultra, Sun Blade, Java, Solaris, Java, NetBeans, Sun Fire, Sun StorEdge, SunLink, SunSpectrum, SunSpectrum Platinum, SunSpectrum Gold, SunSpectrum Silver, SunSpectrum Bronze, SunSolve, SunPCi, and SunVTS are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries. All SPARC trademarks are used under license and are trademarks or registered trademarks of SPARC International, Inc. in the United States and other countries. Products bearing SPARC trademarks are based upon an architecture developed by Sun Microsystems, Inc. UNIX is a registered trademark in the United States and other countries, exclusively licensed through X/Open Company, Ltd. Ultra 25/45 JTF - 12/10/07 Sun Confidential – Internal Use Only 2 Table of Contents Positioning.....................................................................................................................................................................4 Introduction...............................................................................................................................................................4 Product Family Placement .......................................................................................................................................5 Sun Ultra 45 vs Sun Ultra 25 Workstation...............................................................................................................5
    [Show full text]
  • Sun Fire X4170, X4270, and X4275 Server Architectures
    SUN FIRE™ X4170, X4270, AND X4275 SERVER ARCHITECTURE Optimizing Performance, Density, and Expandability to Maximize Datacenter Value White Paper April 2009 Abstract In compact 1U and 2U form factors, the Sun Fire X4170, X4270, and X4275 servers combine the power of a new generation of Intel Xeon processors with Sun’s system engineering expertise. Based on Sun’s Open Network System design approach, these servers offer the needed performance, density, and expandability to satisfy demanding datacenter applications, especially for virtualization and consolidation initiatives. This white paper describes the architecture of the Sun Fire X4170, X4270, and X4275 servers, including the processor technology, I/O subsystem, built-in system management features, and range of supported operating systems. Sun Microsystems, Inc. This Page Intentionally Left Blank Sun Microsystems, Inc. Table of Contents Executive Summary . 1 Managing Capacity and Complexity . 2 Introducing the Sun Fire™ X4170, X4270, and X4275 servers . 2 Comparing the Sun Fire X4170, X4270, and X4275 servers . 4 A choice of operating systems . 6 The Intel Advantage . 7 New Intel Core Microarchitecture. 7 Modular architecture . 10 Power management technologies . 10 Intel Xeon Processor 5500 platform . 11 Sun Fire X4170, X4270, and X4275 Server Architectures . 12 Sun Fire X4170 system-level architecture . 12 Sun Fire X4170 server overview. 13 Sun Fire X4170 server enclosure . 14 Sun Fire X4170 server front and rear perspectives . 14 Sun Fire X4270 system-level architecture . 16 Sun Fire X4270 server overview. 17 Sun Fire X4270 server enclosure . 17 Sun Fire X4270 server front and rear perspectives . 18 Sun Fire X4275 system-level architecture . 19 Sun Fire X4275 server overview.
    [Show full text]
  • Java Technologies for Web Applications
    1111//3300//22001100 JJaavvaa TTeecchhnnoollooggiieess ffoorr WWeebb AApppplliiccaattiioonnss http://java.sun.com/developer/technicalArticles/tools/w ebapps_1/ Nov 30,2 010 Article Java Technologies for Web Applications By Dana Nourie, November 2006 YYouou can find wwebeb applications eveveryerywherewhere on the IntInternet.ernet. MManyany of tthesehese web applapplicationsications are uusedsed to process online forms ,, tally vvotingoting pollspolls,, taktakee orders within online stores, allow users to book a flight for ttheirheir next busibusinessness trip, or simpsimplyly to display the user's lloginogin namname.e. Which JavJavaa technologies do yoyouu need to creatcreatee a web application and which papackagesckages do you need to import? The answer depends on what kind of appliapplicationcation yyou'reou're building and whawhatt it does. This article provides an overview of the Java technologies involved in creating various types of web applications, tells you when you might decide to ususee them, and provides linlinksks to get yyouou sstarttarted.ed. FutFutureure articles will covcoverer how to ususee these technologies in buibuildinglding web appapplications.lications. To use the technologies desdescribedcribed in thithiss article, download JavJavaa Development Kit (JDK) 5.0 Update 9 with Java Platform, Enterprise Edition (Java EE) or later and install it on your computer. BeforBeforee you begin coding, you need to understand wwhathat a wwebeb application isis,, what JavJavaa technologies are avaavailableilable for use, and what devdevelopmelopmentent ttoolsools can save yyouou time and make creating applications easeasier.ier. Contents What Is a Web Application? JavJavaa Technologies to Use in Web ApplicatApplicationsions OtOtherher Technologies to ConsConsider ider DevDevelopmelopmentent Tools What Is a Web Application? Web applications are by naturnaturee disdistributtributeded applications, mmeaningeaning that they are programs that rrunun on m ore than one computer and comcommunmunicateicate tthroughhrough a network or seservrver.er.
    [Show full text]
  • Uib – 1. April 04 [email protected] Sun Microsystems Agenda
    UiB – 1. april 04 [email protected] Sun Microsystems Agenda ● Java Desktop System (JDS) – StarOffice / OpenOffice – Videre utvikling ● Java Enterprise System (JES) ● Konsept for fremtidens desktop 2 JDS – Java Desktop System Java Desktop System ● Linux Operating system ● Familiar look and feel ● Office, email, messaging, browser and more ● Enterprise version to follow shortly ... 4 JES – Java Enterprise System Agenda Portal Services Security Services Availability Services Communications & Collaboration Services Network Application & Identity Web Services Services 6 Introduction Enterprise, Legacy & Business Intelligence Employee 3rd Party Data and Information Feeds Supplier Communication & Collaboration Web Pages & Links Partner Process Automation Servcies Authentication Mechanism Identity Identity Customer Attributes Functions 7 Key Features ● Common installation framework ● Common schema across all services 8 Committed to Standards Developer Security Mobile Access JSR 168 SSL2/3 J2ME J2EE TLS xHTML XML JSSE cHTML JCA Radius HDML JSP RSA HTML HTML SecureID WML RSS LDAP JSR 188 Java Servlets X.509 certificates voiceXML Web Services* CryptoCard WAP 2.0 *WSDL Java Card *WSRP SmartCard *SOAP RC4 *UDDI DES 3DES AES Liberty 9 OS Support Roadmap Roadmap for OS Release 1 Release 2 Release 3 Release 4 Release 5 Support SolarisTM SPARC(R) Processor ✔ ✔ ✔ ✔ ✔ SolarisTM X86 ✔ ✔ ✔ ✔ ✔ Trusted SolarisTM (SPARC(R)/X86) ✔ Linux ✔ ✔ ✔ ✔ 10 Old “Systematic” Approach Q1 Q2 Q3 Q4 App Server Web Server Directory Server Identity Server Portal Server Integration
    [Show full text]
  • BAB I PENDAHULUAN 1.1. Latar Belakang Pada Saat Ini
    BAB I PENDAHULUAN 1.1. Latar Belakang Pada saat ini perkembangan teknologi informasi begitu cepat. Dengan adanya teknologi informasi menyebabkan proses penyebaran dan pertukaran informasi dapat dilakukan dengan cepat secara global tanpa adanya batasan waktu. Tugas Akhir adalah sarana untuk mengetahui kemampuan mahasiwa/mahasiswi apakah sudah menguasai ilmu yang di berikan dan layak untuk mengabdi di masyarakat sesuai dengan kompetensi yang di ajarkan oleh kampus. Tugas Akhir atau yang sering di singkat T.A merupakan langkah awal untuk dapat belajar dalam menghadapi dunia kerja yang di hadapi, dengan adanya Tugas Akhir mahasiswa/mahasiswi dapat mempersiapkan diri untuk menyelesaikan proyek-proyek di masa kerja nanti. Pada saat ini kebanyakan Pengolahan pada PT. Wenang Cemerlang Press Manado Post masi secara manual, pengolahan data secara manual ini tentu saja masih memiliki kelemahan seperti membutuhkan waktu yang lama ketika menginputkan data, pencarian data, dan juga penyajian laporan sehingga tidak efisien dalam menggunakan waktu. Kesalahan yang sering terjadi ketika dalam mengolah data, dimana hal hal ini sangat sulit untuk di atasi. Sehingga mendorong penulis untuk menganalisa Aplikasi Monitoring, guna untuk meningkatkan kinerja dalam pemrosesan data agar lebih cepat dan akurat. Adapun yang dimaksud dengan menginputkan data, pencarian data, dan juga penyajian laporan, bertujuan untuk mengetahui hasil dari semua penginputan menjadi satu laporan yang akurat. Yang di mana proses kerja tersebut di lakukan melalui Microsoft Excel yang pastinya tidak terlalu efektif dalam hal waktu dikarenakan proses yang lumayan panjang, yakni mulai dari menginput data jatah Koran tiap agen, menginput data pelanggan, dan data barang baru yang masuk seperti, Printer baru, Ac baru dan barang-barang lain untuk menunjang kinerja para karyawan PT.
    [Show full text]
  • Oracle® Communications Unified Communications Suite Installation and Configuration Guide Release 6 Update 1
    Oracle® Communications Unified Communications Suite Installation and Configuration Guide Release 6 Update 1 July 2015 Oracle Communications Unified Communications Suite Installation and Configuration Guide, Release 6 Update 1 Copyright © 2007, 2015, 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, then 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. As such, use, duplication, disclosure, modification, and adaptation of the programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, shall be subject to license terms and license restrictions applicable to the programs.
    [Show full text]
  • 2007 Javaonesm Conference Word “BENEFIT” Is in Green Instead of Orange
    there are 3 cover versions: Prospect 1 (Java) It should say “... Save $200!” on the front and back cover. The first early bird pricing on the IFC and IBC should be “$2,495”, and the word “BENEFIT” is in orange. ADVANCE CONFERENCE GUIDE Prospect 2 (Non-Java) The front cover photo and text is different from Prospect 1. The text of the introduction Last Chance to Save $200! Register by April 4, 2007, at java.sun.com/javaone paragraphs on the IFC is also different, the 2007 JavaOneSM Conference word “BENEFIT” is in green instead of orange. Features Java Technology, Open Source, Web 2.0, Emerging Technologies, and More Don’t miss this year’s newly expanded content. Advance your development skills with hundreds of expert-led, in-depth technical sessions in nine tracks over four days: The back cover and the IBC are the same as Consumer Technologies | Java™ SE | Desktop | Java EE | Java ME Prospect 1. The Next-Generation Web | Open Source | Services and Integration | Tools and Languages How to navigate this brochure and easily find what you need... Alumni For other information for Home Conference Overview JavaOnePavilion this year’s Conference, visit java.sun.com/javaone. It should say “... Save $300!” on the front Registration Conference-at-a-Glance Special Programs and back cover. The first early bird pricing on Hyperlinks Bookmark Buttons Search Click on any of the underlined Use the bookmark tab to Click on the buttons at the top Pull down from the Edit menu and the IFC and IBC should be “$2,395”, and the links to visit specific web sites.
    [Show full text]
  • Sun Java Studio Creator Design-Time
    Sun Java™ Studio Creator 2 Design-Time API User Guide (for component authors) Joe Nuxoll Sun Microsystems Version: 2.0 August 15, 2005 Java Studio Creator Design-Time API User Guide Table of Contents 1 – Introduction 1.1 – Definitions 1.1.1 – Component 1.1.2 – Component Model 1.1.3 – JavaBean Component and JavaBeans Component Model 1.1.4 – Component Library 1.1.5 – Component Author 1.1.6 – IDE (Integrated Development Environment) 1.1.7 – IDE Vendor 1.1.8 – Application Developer 1.2 – JavaBeans 1.0 Extensions Provided by CDT 1.2.1 – Design-Time Context 1.2.2 – Generation of Persistence 1.2.3 – Manipulation of Hierarchy 1.2.4 – Rich Mouse Interaction 2 – The Java Studio Creator Design-Time API 2.1 – General Model and Hierarchy 2.1.1 – DesignProject 2.1.2 – DesignContext 2.1.2.1 – MarkupDesignContext 2.1.2.2 – FacesDesignContext 2.1.3 – DesignBean 2.1.3.1 – MarkupDesignBean 2.1.3.2 – FacesDesignBean 2.1.4 – DesignProperty 2.1.4.1 – FacesDesignProperty 2.1.5 – DesignEvent 2.2 – Access and Hook Points 2.2.1 – DesignInfo 2.2.1.1 – MarkupDesignInfo 2.2.1.1.1 – MarkupRenderContext 2.2.1.1.2 – MarkupMouseRegion 2.2.1.2 – MarkupTableDesignInfo 2.2.2 – PropertyEditor2 2.2.3 – Customizer2 2.2.4 – DisplayAction and DisplayActionSet 2.2.5 – Result 2.2.5.1 – ResultMessage 2.3 – Extended Metadata 2.3.1 – Additional BeanInfo Attributes 2.3.2 – Additional PropertyDescriptor Attributes 2.3.3 – Additional EventDescriptor Attributes 2.3.4 – Context Data Attributes 3 – Examples and Use Cases 3.1 - Example: Providing Extended BeanInfo Metadata 3.2 - Example:
    [Show full text]
  • Sun Ultra 24 Workstation Just the Facts Sun Confidential
    Sun Ultra 24 Workstation Just the Facts Sun Confidential Sun Ultra 24 Workstation Just the Facts SunWIN # 508686 Author: Brian Healy (Product Manager: Sun Ultra 24 Workstation) Version October 17, 2007: This version supercedes all previous versions. Please send all corrections to [email protected] Sun Proprietary/Confidential – Internal Use Only! © 2007 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, CA 95054 USA All rights reserved. Table of Contents - Ultra 24 Just The Facts ............................................................................................................................................................................................................3 ............................................................................................................................................................................................................3 Page 1 Oct 17, 2007 Sun Ultra 24 Workstation - Just the Facts Sun Proprietary/Confidential – Internal Use Only! Introduction..........................................................................................................................................................................................4 Target Workloads..................................................................................................................................................................................5 Software Development..........................................................................................................................................................................5
    [Show full text]
  • Sun Ultra 20 M2 Workstation Just the Facts Sun Confidential
    Sun Ultra 20 M2 Workstation Just the Facts Sun Confidential Sun Ultra 20 M2 Workstation Just the Facts SunWIN # 477754 Author: Brian Huynh (Product Manager: Sun Ultra 20 M2 Workstation) Reviewers: Kawa Chu (Engineering Lead: Sun Ultra 20 M2 Workstation ) Seth Kaplan (Technical Writer: Sun Ultra 20 M2 Workstation) Matthew Koehler (Director of Engineering: Global Design Group) Jonathan France (Technical Marketing Engineer: Sun Ultra 20 M2 Workstation) Tom Morton (Product Technical Support Engineer: Sun Ultra 20 M2 Workstation) Version August 11, 2006: This version supercedes all previous versions. Please send all corrections to [email protected] © 2006 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, CA 95054 USA All rights reserved. Sun Ultra 20 M2 Workstation - Just the Facts Sun Confidential Table of Contents - Sun Ultra 20 M2 Workstation Just the Facts Introduction...............................................................................................................................................................................................................................................................................4 Target Workloads.......................................................................................................................................................................................................................................................................5 Software Development........................................................................................................................................................................................................................................................5
    [Show full text]
  • Twelve Reasons to Use the Sun Java Studio Creator IDE, TS-4386
    Twelve Reasons to Use the Sun Java™ Studio Creator 2 IDE Inyoung Cho Technology Evangelist Charles Ditzel Technologist Octavian Tanase Group Engineering Manager Sun Microsystems, Inc. TS-4386 Copyright © 2006, Sun Microsystems, Inc., All rights reserved. 2006 JavaOneSM Conference | Session TS-4386 | Goal Understand the new benefits and features that the Sun Java™ Studio Creator 2 IDE offers developers. Learn how fast Java Studio Creator 2 software has been growing this past year and where it is going next. 2006 JavaOneSM Conference | Session TS-4386 | 2 Agenda What Is Java Studio Creator 2 Software? Twelve Reasons to Use the Java Studio Creator 2 Software Summary and More Information Q&A 2006 JavaOneSM Conference | Session TS-4386 | 3 What Is Java Studio Creator 2 Software? 2006 JavaOneSM Conference | Session TS-4386 | 4 What Is Java Studio Creator 2 Software? ● Based on the standard Java platform ™ ● Based on the extremely popular NetBeans development environment ● Provides a visual development environment to easily build web applications and portlets ● Enables development of Web 2.0 applications, with AJAX-enabled JSF components ● Allows exposure to source code as well; a developer can choose to change the source code—it will also be reflected in the visual view ● Freely available at: http://developers.sun.com/jscreator 2006 JavaOneSM Conference | Session TS-4386 | 5 12 Reasons to Use Java Studio Creator 2 Software 2006 JavaOneSM Conference | Session TS-4386 | 6 Reason 1:One-click Download, Rapid Web Application Visual Development Tool
    [Show full text]