***********************************************************************
Handles incoming requests from clients. Parses the request and determines
what kind of OPeNDAP response the cleint is requesting. If the request is
understood, then the appropriate handler method is called, otherwise
an error is returned to the client.
This method is the entry point for
OLFS
. It uses
the methods
processOpendapURL
to extract the OPeNDAP URL
information from the incoming client request. This OPeNDAP URL information
is cached and made accessible through get and set methods.
After
processOpendapURL
is called
loadIniFile()
is called to load configuration information from a .ini file,
If the standard behaviour of the servlet (extracting the OPeNDAP URL
information from the client request, or loading the .ini file) then
you should overload
processOpendapURL
and
loadIniFile()
.
We don't recommend overloading doGet()
beacuse
the logic contained there may change in our core and cause your server
to behave unpredictably when future releases are installed.