GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Servlet::UnavailableException(3) User Contributed Perl Documentation Servlet::UnavailableException(3)

Servlet::UnavailableException - servlet unavailability exception

  package My::Servlet;

  use base qw(Servlet::GenericServlet);
  use Servlet::UnavailableException ();

  sub service {

      # ...

      Servlet::UnavailableException->throw('db server inaccessible',
                                           seconds => 30);
  }

  package My::ServletContainer;

  # ...

  eval {
      $servlet->service($request, $response);
  };

  if ($@ && $@->isa('Servlet::UnavailableException')) {
      if ($@->isPermanent()) {
          $response->sendError(410) # SC_GONE;
          $servlet->destroy();
      } else {
          $response->sendError(503); # SC_SERVICE_UNAVAILABLE
      }
  };

  # ...

Defines an exception that a servlet throws to indicate that it is permanently or temporarily unavailable.

When a servlet is permanently unavailable, something is wrong with the servlet, and it cannot handle requests until some action is taken. For example, the servlet might be configured incorrectly, or its state may be corrupted. A servlet should log both the error and the corrective action that is needed.

A servlet is temporarily unavailable if it cannot handle requests momentarily due to some system-wide problem. For example, a third-tier server might not be accessible, or there may be insufficient memory or disk storage to handle requests. A system administrator may need to take corrective action.

Servlet containers can safely treat both types of unavailabile exceptions in the same way. However, treating termporary unavailability effectively makes the servlet container more robust. Specifically, the servlet container might block requests to the servlet for a period of time suggested by the servlet, rather than rejecting them until the servlet container restarts.

Extends Servlet::ServletException. See that class for a description of inherited methods.

new($msg, $seconds)
Constructs a new exception. Optional arguments include an error message, and an estimate of temporary unavailability in seconds. If seconds is not specified, the indication is that the servlet is permanently unavailable.

Parameters:

$msg
the error message
$seconds
the number of seconds that the servlet will be unavailable
getUnavailableSeconds()
Returns the number of seconds the servlet expects to be temporarily unavailable, or -1 if the servlet is permanently unavailable.
isPermanent()
Returns a boolean value indicating whether the servlet is permanently unavailable.

Servlet::ServletException

Brian Moseley, bcm@maz.org
2001-07-13 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.