MVN

org.apache.oodt : web-grid

Maven & Gradle

Jun 21, 2016

OODT Web Grid · The OODT grid services (product and profile services) use CORBA or RMI as their underlying network transport. However, limitations of CORBA and RMI make them inappropriate for large-scale deployments. For one, both are procedural mechanisms, providing a remote interface that resembles a method call. This makes streaming of data from a service impossible, because there are limitations to the sizes of data structures that can be passed over a remote method call. Instead, repeated calls must be made to retrieve each block of a product, making transfer speeds horribly slow compared to HTTP or FTP. (Block-based retrieval of profiles was never implemented, resulting in out of memory conditions for large profile results, which is another problem.) Second, both CORBA and RMI rely on a central name registry. The registry makes an object independent of its network location, enabling a client to call it by name (looking up its last known location in the registry). However, this requires that server objects be able to make outbound network calls to the registry (through any outbound firewall), and that the registry accept those registrations (through any inbound firewall). This required administrative action at institutions hosting server objects and at the institution hosting the registry. Often, these firewall exceptions would change without notice as system adminstrators changed at each location (apparently firewall exceptions are poorly documented everywhere). Further, in the two major deployments of OODT (PDS and EDRN), server objects have almost never moved, nullifying any benefit of the registry. This project, OODT Web Grid Services, avoids the prolems of CORBA and RMI by using HTTP as the transport mechanism for products and profiles. Further, it provides a password-protected mechanism to add new sets of product and profile query handlers, enabling seamless activation of additional capabilities.

<dependency>
    <groupId>org.apache.oodt</groupId>
    <artifactId>web-grid</artifactId>
    <version>1.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.apache.oodt : web-grid to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0

All Versions

Choose a version of org.apache.oodt : web-grid to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0
web-grid-1.0
0.12
web-grid-0.12
0.11
web-grid-0.11
0.10
web-grid-0.10
0.9
web-grid-0.9
0.8.x
web-grid-0.8.1
0.8
web-grid-0.8
0.7
web-grid-0.7
0.6
web-grid-0.6
0.5
web-grid-0.5
0.4
web-grid-0.4
0.3
web-grid-0.3
0.2
web-grid-0.2

How to add a dependency to Maven

Add the following org.apache.oodt : web-grid maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.apache.oodt</groupId>
    <artifactId>web-grid</artifactId>
    <version>1.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.apache.oodt : web-grid gradle dependency to your build.gradle file:

implementation 'org.apache.oodt:web-grid:1.0'

Gradle Kotlin DSL: Add the following org.apache.oodt : web-grid gradle kotlin dependency to your build.gradle.kts file:

implementation("org.apache.oodt:web-grid:1.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.apache.oodt : web-grid sbt scala dependency to your build.sbt file:

libraryDependencies += "org.apache.oodt" % "web-grid" % "1.0"