Software Links
Getting Started
- Doc Structure
- A Globus Primer
- Globus Is Modular!
- Quickstart
- Installing GT
- Platform Notes
- GT Developer's Guide
- GT User's Guide (coming soon)
- Migrating from GT2
- Migrating from GT3
Reference
- Best Practices
- Coding Guidelines
- API docs
- Public Interfaces (coming soon)
- Resource Properties
- Samples
- Glossary
- Performance Studies (coming soon)
Manuals
Common Runtime
Security
- Non-WS (General) Security
- WS Java Security
- Message-level
- Authz Framework
- CAS
- Delegation Service
- MyProxy
- GSI-OpenSSH
- SimpleCA
- SGAS
Data Mgt
MDS4
Execution Mgt
Table of Contents
The DRS domain-specific interface defines the structure and expected contents of a request file used when creating a replication resource. When the client invokes the create operation of the DRS, it will be expected to submit a properly formatted request file. It is important to understand the structure of the request file and to ensure that the file is well-formed.
For the present release, the DRS request file format is fairly trivial. The request file is structured as a "Table" style of rows and columns of text.
Each row represent a requested replication item described in two columns. The first column contains the identifier of the data set which will be discovered and
replicated. The identifier must be resolvable by the Replica Location Index (see the JNDI configuration for defaultIndexUrl).
In most cases, it is expected that the identifier be a Logical Filename (LFN) per the Replica Location Service definition. The second column of the row contains
the URL of the "destination" for the replication item. The two columns must be delimited by a TAB character
and each row must be delimited by an EOL character.
![]() | Note |
|---|---|
The service will not accept |
The following example shows the output of a small request file.
% cat example.req
my-lfn-1 gsiftp://myhost:9001/sandbox/examples/files/my-pfn-1
my-lfn-2 gsiftp://myhost:9001/sandbox/examples/files/my-pfn-2
my-lfn-3 gsiftp://myhost:9001/sandbox/examples/files/my-pfn-3
my-lfn-4 gsiftp://myhost:9001/sandbox/examples/files/my-pfn-4
my-lfn-5 gsiftp://myhost:9001/sandbox/examples/files/my-pfn-5
![[Note]](/docbook-images/note.gif)