NAME Apache::ASP - Active Server Pages for Apache (all platforms) SYNOPSIS SetHandler perl-script PerlHandler Apache::ASP PerlSetVar Global /tmp # must be some writeable directory DESCRIPTION This module provides a Active Server Pages port to Apache. Active Server Pages is a web application platform that originated with Microsoft's IIS server. Under Apache for both Win32 and Unix, it allows a developer to create web applications with session management and perl embedded in static html files. This is a portable solution, similar to ActiveWare's PerlScript and MKS's PScript implementation of perl for IIS ASP. Theoretically, one should be able to take a solution that runs under Apache::ASP and run it without change under PerlScript or PScript for IIS. INSTALLATION Apache::ASP installs easily using the make or nmake commands as shown below. Otherwise, just copy ASP.pm to $PERLLIB/site/Apache > perl Makefile.PL > make > make install * use nmake for win32 CONFIG Use with Apache. Copy the /eg directory from the ASP installation to your Apache document tree and try it out! You have to put AllowOverride All in your config section to let the .htaccess file in the /eg installation directory do its work. If you want a STARTER config file, just look at the .htaccess file in the /eg directory. Here is a Location directive that you would put in a *.conf Apache configuration file. It describes the ASP variables that you can set. Don't set the optional ones if you don't want, the defaults are fine... ##ASP##PERL##APACHE##ASP##ASP##PERL##APACHE##ASP##ASP##PERL##APACHE##ASP ## INSERT INTO Apache *.conf file, probably access.conf ##ASP##PERL##APACHE##ASP##ASP##PERL##APACHE##ASP##ASP##PERL##APACHE##ASP ########################################################### ## mandatory ########################################################### # Generic apache directives to make asp start ticking. SetHandler perl-script PerlHandler Apache::ASP # Global # ------ # Must be some writeable directory. Session and Application # state files will be stored in this directory, and # as this directory is pushed onto @INC, you will be # able to "use" and "require" files in this directory. # PerlSetVar Global /tmp ########################################################### ## optional flags ########################################################### # CookiePath # ---------- # Url root that client responds to by sending the session cookie. # If your asp application falls under the server url "/ASP", # then you would set this variable to /ASP. This then allows # you to run different applications on the same server, with # different user sessions for each application. # PerlSetVar CookiePath / # AllowSessionState # ----------------- # Set to 0 for no session tracking, 1 by default # If Session tracking is turned off, performance improves, # but the $Session object is inaccessible. # PerlSetVar AllowSessionState 1 # SessionTimeout # -------------- # Session timeout in minutes (defaults to 20) # PerlSetVar SessionTimeout 20 # Debug # ----- # 1 for server log debugging, 2 for extra client html output # Use 1 for production debugging, use 2 for development. # Turn off if you are not debugging. # PerlSetVar Debug 2 # BufferingOn # ----------- # default 1, if true, buffers output through the response object. # $Response object will only send results to client browser if # a $Response->Flush() is called, or if the asp script ends. Lots of # output will need to be flushed incrementally. # # If false, 0, the output is immediately written to the client, # CGI style. # # I would only turn this off if you have a really robust site, # since error handling is poor, if your asp script errors # after sending only some text. # PerlSetVar BufferingOn 1 # StatINC # ------- # default 0, if true, reloads perl libraries that have changed # on disk automatically for ASP scripts. If false, the www server # must be restarted for library changes to take effect. # PerlSetVar StatINC 1 ##ASP##PERL##APACHE##ASP##ASP##PERL##APACHE##ASP##ASP##PERL##APACHE##ASP ## END INSERT ##ASP##PERL##APACHE##ASP##ASP##PERL##APACHE##ASP##ASP##PERL##APACHE##ASP You can use the same config in .htaccess files without the Location tag. I use the tag in the .htaccess file of the directory that I want to run my asp application. This allows me to mix other file types in my application, static or otherwise. ASP Syntax ASP embedding syntax allows one to embed code in html in 2 simple ways. The first is the <% xxx %> tag in which xxx is any valid perl code. The second is <%= xxx %> where xxx is some scalar value that will be inserted into the html directly. An easy print. A simple asp page would look like: For loop incrementing font size:

<% for(1..5) { %> Size = <%=$_%>
<% } %> Notice that your perl code blocks can span any html. The for loop above iterates over the html without any special syntax. The Object Model The beauty of the ASP Object Model is that it takes the burden of CGI and Session Management off the developer, and puts them in objects accessible from any ASP page. For the perl programmer, treat these objects as globals accesible from anywhere in your ASP application. Currently the Apache::ASP object model supports the following: Object -- Function ------ -------- $Session -- session state $Response -- output $Request -- input $Application -- application state $Server -- OLE support + misc These objects, and their methods are further defined in the following sections. $Session Object The $Session object keeps track of user + web client state, in a persistent manner, making it relatively easy to develop web applications. The $Session state is stored accross HTTP connections, in SDBM_Files in the Global directory, and will persist across server restarts. The user's session is referenced by a 32-byte md5-hashed cookie, and can be considered secure from session_id guessing, or session hijacking. When a hacker fails to guess a session, the system times out for a second, and with 2**128 (3.4e38) keys to guess, a hacker won't be guessing an id any time soon. Compare the 32-byte key with Miscrosoft ASP implementation which is only 16 bytes. If an incoming cookie matches a timed out or non-existent session, a new session is created with the incoming id. If the id matches a currently active session, the session is tied to it and returned. This is also similar to Microsoft's ASP implementation. The $Session ref is a hash ref, and can be used as such to store data as in: $Session->{count}++; # increment count by one %{$Session} = (); # clear $Session data The $Session object state is implemented through MLDBM & SDBM_File, and a user should be aware of MLDBM's limitations. Basically, you can read complex structures, but not write them, directly: $data = $Session->{complex}{data}; # Read ok. $Session->{complex}{data} = $data; # Write NOT ok. $Session->{complex} = {data => $data}; # Write ok, all at once. Please see MLDBM for more information on this topic. $Session can also be used for the following methods and properties: $Session->SessionID() SessionID property, returns the id number for the current session, which is exchanged between the client and the server as a cookie. $Session->Timeout($minutes) Timeout property, if minutes is defined, sets this session's default timeout, else returns the current session timeout. If a user session is inactive for the full timeout, the user's session is destroyed by the system. No one can access the session after it times out, and the system garbage collects it eventually. $Session->Abandon() The abandon method times out the session immediately. All Session data is cleared in the process, just as when any session times out. $Response Object This object manages the output from the ASP Application and the client's web browser. It does store state information like the $Session object but does have a wide array of methods to call. $Response->{Buffer} Default 1, when TRUE sends output from script to client only at the end of processing the script. When 0, response is not buffered, and client is sent output as output is generated by the script. $Response->{ContentType} = "text/html" Sets the MIME type for the current response being sent to the client. Sent as an HTTP header. $Response->{Expires} = $time Sends a response header to the client indicating the $time in SECONDS in which the document should expire. A time of 0 means immediate expiration. The header generated is a standard HTTP date like: "Wed, 09 Feb 1994 22:23:32 GMT". $Response->{ExpiresAbsolute} = $date Sends a response header to the client with $date being an absolute time to expire. Formats accepted are all those accepted by HTTP::Date::str2time(), e.g. "Wed, 09 Feb 1994 22:23:32 GMT" -- HTTP format "Tuesday, 08-Feb-94 14:15:29 GMT" -- old rfc850 HTTP format "08-Feb-94" -- old rfc850 HTTP format (no weekday, no time) "09 Feb 1994" -- proposed new HTTP format (no weekday, no time) "Feb 3 1994" -- Unix 'ls -l' format "Feb 3 17:03" -- Unix 'ls -l' format $Response->AddHeader($name, $value) Adds a custom header to a web page. Headers are sent only before any text from the main page is sent, so if you want to set a header after some text on a page, you must turn BufferingOn. $Response->AppendToLog($message) Adds $message to the server log. $Response->BinaryWrite($data) Writes binary data to a page for use by client objects. Could someone explain this to me? This currently does nothing more than a Write($data), since binary data can be in a scalar. $Response->Clear() Erases buffered ASP output. $Response->Cookies($name,$key,$value) (alpha) Sets the key or attribute of cookie with name $name to the value $value. If $key is not defined, then the Value of the cookie is assumed. ASP CookiePath is assumed to be / in these examples. $Response->Cookies("Test Name", "", "Test Value"); # script Set-Cookie: Test+Name=Test+Value path=/ # header output $Response->Cookies("Test", "Secure", 1); # script $Response->Cookies("Test", "data1", "test value"); # script $Response->Cookies("Test", "data2", "more test"); # script Set-Cookie: Test=data1=test+value&data2=more+test path=/ secure Because this is perl, you can (also not portable) reference the cookies directly through hash notation. The same 3 commands above could be compressed to: $Response->{Cookies}{Test} = {Secure => 1, data1 => 'test value', data2 => 'more test'}; and the first command would be: $Response->{Cookies}{'Test Name'} = {Value => 'Test Value'}; $Response->End() Sends result to client, and immediately exits script. Automatically called at end of script, if not already called. $Response->Flush() Sends buffered output to client and clears buffer. $Response->Redirect($url) Sends the client a command to go to a different url $url. Script immediately ends. $Response->{Status} = $status Sets the status code returned by the server. Can be used to set messages like 500, internal server error $Response->Write($data) Write output to the HTML page. <%=$data%> syntax is shorthand for a $Response->Write($data). All final output to the client must at some point go through this method. $Request Object The request object manages the input from the client brower, like posts, query strings, cookies, etc. Normal return results are values if an index is specified, or a collection / perl hash ref if no index is specified. WARNING, the latter property is not supported in Activeware's PerlScript, so if you use the hashes returned by such a technique, it will not be portable. # A normal use of this feature would be to iterate through the # form variables in the form hash... $form = $Request->Form(); for(keys %{$form}) { $Response->Write("$_: $form->{$_}
\n"); } # Please see the eg/server_variables.htm asp file for this # method in action. $Request->ClientCertificate() Not implemented. $Request->Cookies($name, $key) (alpha) Returns the value of the Cookie with name $name. If a $key is specified, then a lookup will be done on the cookie as if it were a query string. So, a cookie set by: Set-Cookie: test=data1=1&data2=2 would have a value of 2 returned by $Request->Cookies('test', 'data2') If no name is specified, a hash will be returned of cookie names as keys and cookie values as values. If the cookie value is a query string, it will automatically be parsed, and the value will be a hash reference to these values. $Request->Form($name) Returns the value of the input of name $name used in a form with POST method. If $name is not specified, returns a ref to a hash of all the form data. $Request->QueryString($name) Returns the value of the input of name $name used in a form with GET method, or passed by appending a query string to the end of a url as in http://someurl.com/?data=value. If $name is not specified, returns a ref to a hash of all the query string data. $Request->ServerVariables($name) Returns the value of the server variable / environment variable with name $name. If $name is not specified, returns a ref to a hash of all the server / environment variables data. The following would be a common use of this method: $env = $Request->ServerVariables(); # %{$env} here would be equivalent to the cgi %ENV in perl. $Application Object Like the $Session object, you may use the $Application object to store data across the entire life of the application. Every page in the ASP application always has access to this object. So if you wanted to keep track of how many visitors there where to the application during its lifetime, you might have a line like this: $Application->{num_users}++ The Lock and Unlock methods are used to prevent simultaneous access to the $Application object. $Application->Lock() Not implemented. $Application->UnLock() Not implemented. $Server Object The server object is that object that handles everything that the other objects don't. The best part of the server object for Win32 users is the CreateObject method which allows developers to create instances of ActiveX components, like the ADO component. $Server->ScriptTimeout($seconds) Not implemented $Server->CreateObject($program_id) Allows use of ActiveX objects on Win32. This routine returns a reference to an Win32::OLE object upon success, and nothing upon failure. It is through this mechanism that a developer can utilize ADO. The equivalent syntax in VBScript is Set object = Server.CreateObject(program_id) For further information, try 'perldoc Win32::OLE' from your favorite command line. $Server->HTMLEncode($string) Returns an HTML escapes version of $string. &, ", >, <, are each escapes with their HTML equivalents. Strings encoded in this nature should be raw text displayed to an end user, as HTML tags become escaped with this method. $Server->MapPath($virtual_directory); Not implemented $Server->URLEncode($string) Returns the URL-escaped version of the string $string. +'s are substituted in for spaces and special characters are escaped to the ascii equivalents. Strings encoded in this manner are safe to put in url's... they are especially useful for encoding data used in a query string as in: $data = $Server->URLEncode("test data"); $url = "http://localhost?data=$data"; $url evaluates to http://localhost?data=test+data, and is a valid URL for use in anchor tags and redirects, etc. EXAMPLES Use with Apache. Copy the /eg directory from the ASP installation to your Apache document tree and try it out! You have to put AllowOverride All in your config section to let the .htaccess file in the /eg installation directory do its work. SEE ALSO perl(1), mod_perl(3), Apache(3) NOTES Many thanks to those who helped me make this module a reality. Whoever said you couldn't do ASP on UNIX? Kudos go out to: :) Doug MacEachern, for moral support and of course mod_perl :) Ryan Whelan, for boldly testing on Unix in its ASP's early infancy :) Lupe Christoph, for his immaculate and stubborn testing skills :) Bryan Murphy, for being a PerlScript wiz. AUTHOR Please send any questions or comments to the Apache modperl mailing list at modperl@apache.org or to me at chamas@alumni.stanford.org. COPYRIGHT Copyright (c) 1998 Joshua Chamas. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.