The problem of portable data storage has been approached, attacked, and wrestled to the ground numerous times in the history of computing, but never totally subdued. With the advent of enormous computing efforts that are external to the scientific community, we believe it is time for a paradigm shift in the problem's approach.
Conventionally, specific data formats are designed and associated access mechanisms implemented. Extensions of these formats and porting efforts to other hardware and software platforms are an ongoing obligation of the supporting organization.
We believe that the actual data formats should be of concern only to the originator of the data and should not be specified in any manner; only an interface which allows access to the data. Portability, compression should be free.
Two months ago SUN released the Java Development Kit version 1.1, which had several new features used in our effort. These features can be used to provide a JAR file that contains not only the scientific data, but also the methods which provide access.
Only the Interface is standardised, the data itself can be stored in any format whatsoever, or may even be generated on the fly.
We have had access to the software for only a short time, but we have a very simple prototype running.
Co-Author: Joel Welling
This talk is online at http://www.psc.edu/~andrews

System-independent object-oriented programming language. Lots of support/interest/religious fervour. Java compiled code is meant to be shipped between machines and run on a local JVM. Possibility of supplying both data and access methods.
Specify only an interface, i.e. form of methods that can be used to deliver, convert or display data. Interfaces can be implemented (form of multiple inheritance) and extended.
To java, code can be data, so class methods can be specified:
The ClassLoader works fine from an application (as I showed at the meeting) or if the file protocol is used for loading.
Click on vortices.jar to download the test jar file to your local machine.
If you're not using a JDK 1.1 browser, nothing will appear below.
We'll check into the security conflicts of using an extended ClassLoader with a browser and look for a workaround.