The Wayback Machine - https://web.archive.org/web/20100612215813/http://java.net/projects/archive/O
The Source for Java Technology Collaboration
User: Password:
Register | Login help    

Search

Online Books:
java.net on MarkMail:


java.net Archived Projects

There are so many different ways to arrive at the home page for an interesting project here on java.net. To help you find the project you are looking for or to retrace your steps to rediscover a project that piqued your interest, you can list the projects alphabetically, by community, by topic, or by downloadable executables. You can pull out only those that are hosted here on java.net or look for the special "linked" symbol to identify those projects that are hosted on other sites. We are particularly proud of those projects that began in our incubator and have matured into successful projects and are listed as incubator graduates.

 | 0 | 1 | 2 | 3 | 6 | 7 | 8 | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z |  |
Weirdoglyph renders text to image. The text on the generated image should be readable by a human, but it should be hard to recognize the text via OCR tools. The renderer can be used in a captcha (Completely Automated Public Turing test to tell Computers and Humans Apart), e.g. to prevent automatic registration on web sites.
Content management entirely written in WebWork2, Velocity and Hibernate
The Open Knowledge Initiative™ is a collaboration among leading universities and specification and standards organizations to support innovative learning technology in higher education.
OpenPart will be a knowlege based tool to generate software architectures. You define reference architectures consisting of elements like artifacts, components or products. Rules may be associated with each of these elements. By exploring that knowledge and asking for requirements high level architectures can be generated.
This project will provide an open source RosettaNet implementation in Java language.
OctLight is a Java game engine that will provide all the tools necessary to create 3D massively multi player online games. It can be used for single player games as well, although that's the not the main focus. OctLight includes a scene graph API which is rendered using OpenGL. Built on top of this is a map and object framework which includes collision detection and visibility checking. In addition to this modules for networking, AI, GUI and persistence will be created
OpenPsf is a portal framework to build enterprise portals
This project will manage the school timesheet.
One$DB is Open Source version of Daffodil DB, a commercial Java Database. It is standards based, platform independent RDBMS that can be embedded into any application with minimal administration.
One$DB is Open Source version of Daffodil DB, a commercial Java Database. It is standards based, platform independent RDBMS that can be embedded into any application with minimal administration.
Provide a Odette File Transfer Protocol library implementation for Java, based on the RFC 2204. It's an older communication standard used for exchanging business data. When created the aim of Odette FTP was to facilitate the transmission of a file between one or more locations in a way that is independent of the data communication network, system hardware and software environment.
Extensions of the OSS/J Core Business Entities (CBEs) to address the TeleManagement Forum (TMF) Multi-Technology Network Management (MTNM) standard.
This project aims at developing a Brokerage System to allow the search and exchange of digital resources in Federated repositories. It includes DRM mechanisms It also includes a connector part that can be used by repositories and front-ends to join the federation
This project aims at developing a brokerage system that supports searching and accessing digital resources in a federated environment of digital repositories and front-ends. Access to resources is controlled through DRM mechanisms. A connector is included, to allow repositories and front-end to easily connect to the Federation
It is a Open Source Factory. It means, software is not only developed! it is produced following methodologies and standards. We will create software like others build buildings.
A easy to use, non-intrusive grading system for teachers and parents.
A easy to use, non-intrusive grading system for teachers and parents.
A easy to use, non-intrusive open source grading system for teachers. Parents and students will be able to login to the system and see progress as well.
A easy to use, non-intrusive grading system for teachers, parents and students.
ODENetworking API implements the JavaGameNetworking API to provide an easy way for games utilizing the OdeJava Physics API to provide server synchronization for gaming clients.
Open Regulatory Annotation database
Open Regulatory Annotation database
A school curriculum based on five categories of competences, rather than on traditional subjects: initiated by the RSA in London in 1999 and currently being developed in a range of schools in the UK.
Object Collaboration Platform is Java middleware for multiplayer online games, consisting of a framework for lightweight distributed object interaction as well as a platform upon which to build server side and client side functionality. This J2EE based platform will include a server side component which naturally balances computing power, connections, and resources. The client side middleware, based on JDK 1.5, will also include a scripting engine.
A collection of free as beer and free as speech, royalty-free 3D models, music, sound effects, drawings, fonts to be used either in small games or engines demos : if the project grows a lone programmer can make a game borrowing art from the open-game-art project.
OurGateway is software for educational institutions that provides an easy way to establish a website and Community Portal. It serves these purposes; 1) Provides information about a school for the General public who visit. 2) Enables the creation of an online Community with services exclusive to community members who log on 3) Lowers school administration costs by providing group email, Calendars, Forms Processing and other services.
Yellow Team
Red Team
Black Team
White Team
Orange Team
oac
Academic Orientation at Distance
Ontoquery is SPARQL protocol compliant querying tool which is capable of querying semantic web ontologies based on RDF and OWL.
Open source solution to manage (maintain, harmonize, distribute and approve) business object representations of master data, transaction data and customising data in distributed landscapes of an enterprise.
The Optimized Sparse Kernel Interface (OSKI) Library is a collection of low-level C primitives that provide automatically tuned computational kernels on sparse matrices, for use in solver libraries and applications. OSKI has a BLAS-style interface, providing basic kernels like sparse matrix-vector multiply and sparse triangular solve, among others.
The Open System for Earthquake Engineering Simulation (OpenSees) is a software framework for simulating the seismic response of structural and geotechnical systems.
Library aiming to simplify the development of io-related code.
Library aiming to simplify the use of certain data structures.
Library providing some useful classes.
orgecc-db is a small Java library aimed at simplifying the interaction with database servers. It spares developers from having to deal with the JDBC api altogether; Instead, knowing a bit of the Collections API will suffice, since data coming from the database is returned as lists, iterators, maps, Object arrays, or your own bean instances.
Provides transparent random access to compressed data.
Starting from a class created by Ross Judson, I've created a small Java tool named XPack, similar to UPX. XPack takes a set of jar files and creates one special jar file (*.xpack.jar), which is typically 65% - 76% smaller than the sum of the input jar files, and can be executed as a normal executable jar (the user doesn't have to unpack it first). Ross' original class has been split in some source files, and now it has these additional features: - support for multiple pack files at runtime. Take this example: Suppose you create one xpack file for the main application classes (let's call it 'main.xpack.jar'), and another xpack file containing all library jars that the application depends on (SWT, log4j, etc) named 'lib.xpack.jar'. When you update your application (but not the libraries it depends on), you will spare your users from downloading the (possibly bigger) 'lib.xpack.jar' file. To launch your application, simply double-click the file 'main.xpack.jar' or type: java -jar main.xpack.jar As you see, there's NO need to specify classpath information like 'java -cp log4j.jar:swt.jar:blah.jar org.package.MyClass', since all this will be stored in the file 'main.xpack.jar'. - enhanced command-line interface using commons-cli - support for custom loaders To use it, go to the 'bin' directory and type ./xpack.sh (or xpack.bat), which will print a brief usage message. For more details, feel free to contact me: elifarley (at) gmail.com The original version of the class 'PackLoader' was created by Ross Judson and kindly put in the public domain. You can find it at http://scala.sygneca.com/code/compressed-executable-jar
Object-Oriented Software Development of Enterprise Systems
A set of data mining algorithms, which includes clustering, association and classification algorithms.
Alfresco integration with OpenOffice.org
To conduct online written test to the candidate
Mission of the project: Online monitoring system enables users to manage all their High end gadgets (iPods, mobile phone, pen drive etc) through a single interface by establishing a direct bridge between product and manufacturer via the implemented remote server. Main idea involved here is to make use of online service (monitoring tool) that can automatically scan electronic gadgets for any hardware or software defect as the product is brought online. It will then make a log of errors, report it to the manufacturer and provide feasible solution back to customer. It can also be used as a platform where users can find solutions to all other problems pertaining to their gadgets and manufacturer may showcase their various products and provide service in better way. Technologies and Tools used: 1. MySQL database 2. Netbeans development platform 3. Glassfish application server 4. Java –J2EE Users of the System: 1. Service Providers and Manufacturers of high end gadgets 2. Customers Targeted functionalities: Creating user account for customer to monitor product functionality Scanning of product for defects Reporting of defects to manufacturers Providing the solution back to customer through auto-generated email Maintains database of all information pertaining to the gadget for further analysis on the product. Provides users a single interface to monitor his/her different gadgets. Makes it very easy for service providers to be in contact with users and provide them all the necessary details User can get all the relevant updates for his different products through single interface.
must the room number and customer details. Whenever enter the id num ,the customer detail must display automatically.




 

  
Morty Proxy This is a proxified and sanitized view of the page, visit original site.