bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
|
static helper functions to register a handler to handle dap services and add commands to the dap service More...
#include <BESDapService.h>
Static Public Member Functions | |
static void | add_to_dap_service (const std::string &cmd, const std::string &desc) |
static function to add commands to the dap service | |
static void | handle_dap_service (const std::string &handler) |
static function to register a handler to handle the dap services | |
static helper functions to register a handler to handle dap services and add commands to the dap service
To support the dap services a handler must provide the ability to handle the filling in of the OPeNDAP objects DAS, DDS, and DataDDS. The dap service provides additional commands that use these basic three commands. These additional commands are DDX and, provided by the (old) dap-server modules, the ascii, info_page, and html_form commands.
Definition at line 49 of file BESDapService.h.
|
static |
static function to add commands to the dap service
This helper function allows the caller to add commands to the dap service, such as dap-server adding the ascii, info_page and html_form commands.
cmd | the name of the command to add |
desc | a description of the command being added |
Definition at line 47 of file BESDapService.cc.
|
static |
static function to register a handler to handle the dap services
handler | the name of the handler, such as nc for netcdf_handler |
Definition at line 40 of file BESDapService.cc.