Apache2::ASP::HTTPContext - Contextual execution harness for ASP scripts.



NAME

Apache2::ASP::HTTPContext - Contextual execution harness for ASP scripts.


SYNOPSIS

  # Get the original mod_perl '$r' object:
  my Apache2::RequestRec $r = $context->r;
  
  # Get the other traditional ASP objects:
  my $Config      = $context->config;
  my $Request     = $context->request;
  my $Response    = $context->response;
  my $Server      = $context->server;
  my $Session     = $context->session;
  my $Application = $context->application;
  
  # Get the current context object from anywhere within your application:
  my $context = Apache2::ASP::HTTPContext->current;


DESCRIPTION


STATIC PROPERTIES

current

Returns the "current" HTTPContext instance.


PUBLIC PROPERTIES

r

Returns the current Apache2::RequestRec object.

NOTE: while in "API" or "Testing" mode, r returns the current the Apache2::ASP::Mock::RequestRec manpage object.

config

Returns the current the Apache2::ASP::Config manpage object.

request

Returns the current the Apache2::ASP::Request manpage object.

response

Returns the current the Apache2::ASP::Response manpage object.

server

Returns the current the Apache2::ASP::Server manpage object.

session

Returns the current the Apache2::ASP::Session manpage object.

application

Returns the current the Apache2::ASP::Application manpage object.


BUGS

It's possible that some bugs have found their way into this release.

Use RT http://rt.cpan.org/NoAuth/Bugs.html to submit bug reports.


HOMEPAGE

Please visit the Apache2::ASP homepage at http://www.devstack.com/ to see examples of Apache2::ASP in action.


AUTHOR

John Drago <jdrago_999@yahoo.com>


COPYRIGHT

Copyright 2008 John Drago. All rights reserved.


LICENSE

This software is Free software and is licensed under the same terms as perl itself.

 Apache2::ASP::HTTPContext - Contextual execution harness for ASP scripts.