Difference between revisions of "Modules"

From AOLserver Wiki
Jump to navigation Jump to search
(imported from WiKit id 160)
 
(Undo revision 5721 by 3qdesigns123 (Talk))
 
(10 intermediate revisions by 6 users not shown)
Line 1: Line 1:
''See also [[Toolkits]] and [[Languages]]''
+
''See also: [[Toolkits]] and [[Languages]]''
  
 
''[[Jamie Rasmussen]] maintains a list of AOLserver modules tested against Windows[http://empoweringminds.spd.dcu.ie/openacs/aolserver_modules].  (Not recently updated - JR)''
 
''[[Jamie Rasmussen]] maintains a list of AOLserver modules tested against Windows[http://empoweringminds.spd.dcu.ie/openacs/aolserver_modules].  (Not recently updated - JR)''
  
----
+
== Standard Modules ==
  
'''Standard Modules'''
+
AOLserver ships with the following modules:
  
AOLserver ships with the following modules:
 
 
* [[nscgi]] -- Standard CGI support for running external C programs, perl scripts etc.
 
* [[nscgi]] -- Standard CGI support for running external C programs, perl scripts etc.
 
* [[nscp]] -- Admin/debug support via a telnet like interface into a running server.
 
* [[nscp]] -- Admin/debug support via a telnet like interface into a running server.
Line 14: Line 13:
 
* [[nslog]] -- Common log format or extended common log format access logging.
 
* [[nslog]] -- Common log format or extended common log format access logging.
 
* [[nsperm]] -- Access control lists for groups/users, supports basic auth.
 
* [[nsperm]] -- Access control lists for groups/users, supports basic auth.
 +
* [[nsproxy]] -- Execute Tcl scripts in an external process
 
* [[nssock]] -- Standard [[socket driver]], used for HTTP requests.
 
* [[nssock]] -- Standard [[socket driver]], used for HTTP requests.
 
* [[nsssl]] -- SSL [[socket driver]], links against proprietary RSA BSAFE library (not supplied).
 
* [[nsssl]] -- SSL [[socket driver]], links against proprietary RSA BSAFE library (not supplied).
  
 +
== Database Drivers ==
  
'''Database Drivers'''
+
AOLserver database drivers are either internal or external.  Internal drivers are shared libraries that are loaded in-process with the webserver -- they provide the best performance.  External drivers are shared libraries which are loaded by the AOLserver database proxy daemon [[nsext]], which communicates with the webserver process via sockets.  The advantage of running the database driver external to the webserver is that it isolates buggy, non-threadsafe database access libraries.  These days however this is largely unneccessary, and the external drivers are usually slower due to context switching overhead.
  
AOLserver database drivers are either internal or external.  Internal drivers are shared libraries that are loaded in-process with the webserver -- they provide the best performance.  External drivers are shared libraries which are loaded by the AOLserver database proxy daemon [[nsext]], which communicates with the webserver process via sockets.  The advantage of running the database driver external to the webserver is that it isolates buggy, non-threadsafe database access libraries.  These
+
* [[nsfb]] -- Internal '''Firebird|Interbase''' driver.
days however this is largely unneccessary, and the external drivers are usually slower due to context switching overhead.
 
 
* [[dqd_db2]] -- Internal '''IBM DB2''' driver (unmaintained).
 
* [[dqd_db2]] -- Internal '''IBM DB2''' driver (unmaintained).
 
* [[nsberkeleydb]] -- Internal '''BerkeleyDB''' driver.
 
* [[nsberkeleydb]] -- Internal '''BerkeleyDB''' driver.
Line 37: Line 37:
 
* [[nsunixodbc]] -- Internal ODBC driver which uses the '''unixODBC''' driver.
 
* [[nsunixodbc]] -- Internal ODBC driver which uses the '''unixODBC''' driver.
  
 +
== Encryption / Security ==
  
'''Encryption / Security'''
 
 
* [[nsblowfish]] -- Encrypt Tcl strings with Blowfish cypher and hex encode.
 
* [[nsblowfish]] -- Encrypt Tcl strings with Blowfish cypher and hex encode.
 
* [[nsencrypt]] -- Uses OpenSSL to encrypt using the AES, Blowfish, Cast5, IDEA and DES cyphers.
 
* [[nsencrypt]] -- Uses OpenSSL to encrypt using the AES, Blowfish, Cast5, IDEA and DES cyphers.
Line 47: Line 47:
 
* [[nspam]] -- Interface to Pluggable Authentication Modules (PAM).
 
* [[nspam]] -- Interface to Pluggable Authentication Modules (PAM).
 
* [[nsdigest]] -- Access control lists for groups/users (like [[nsperm]]), supports digest authentication.
 
* [[nsdigest]] -- Access control lists for groups/users (like [[nsperm]]), supports digest authentication.
 +
* [[nsmhash]] -- Implementation of mhash library interface to hash, hmac and keygen algorithms (MD5,SHA1, ...). Available shared with nsv_*.
 +
* [[nsmcrypt]] -- Implementation of mcrypt library interface to crypt,decrypt algorithms (blowfish, des, ...). Available shared with nsv_*.
  
 +
== Virtual Hosting ==
  
'''Virtual Hosting'''
+
AOLserver 2.x and 4.x have built-in support for software or name-based [[virtual hosting]], but AOLserver 3.x does not.  Hardware virtual hosting (each server on its own port or IP) is supported across all three versions.
  
AOLserver 2.x and 4.x have built-in support for software or name-based [[virtual hosting]], but AOLserver 3.x does not.  Hardware virtual hosting (each server on its own port or IP) is supported across all three versions.
 
 
* [[nsvhr]] -- Redirecting proxy, passes virtualy hosted requests back to standalone server.
 
* [[nsvhr]] -- Redirecting proxy, passes virtualy hosted requests back to standalone server.
 
* [[nsunix]] -- [[socket driver]] for unix domain sockets, complements '''nsvhr'''.
 
* [[nsunix]] -- [[socket driver]] for unix domain sockets, complements '''nsvhr'''.
Line 60: Line 62:
 
* [[nsvirthost]]
 
* [[nsvirthost]]
  
 +
== Charting ==
  
'''Charting'''
 
 
* [[nsgdchart]] -- Generate png/jpg charts using open source gd library.
 
* [[nsgdchart]] -- Generate png/jpg charts using open source gd library.
 
* [[nschartdir]] -- Generate charts using proprietary ChartDirector library.
 
* [[nschartdir]] -- Generate charts using proprietary ChartDirector library.
Line 68: Line 70:
 
* i-no graphing module using gd library (defunct: [http://www.i-no.com/art/inochart.html])
 
* i-no graphing module using gd library (defunct: [http://www.i-no.com/art/inochart.html])
  
 +
== XML ==
  
'''XML'''
 
 
* [[tDOM]] -- a Tcl extension which provides XML/XSLT functionality.
 
* [[tDOM]] -- a Tcl extension which provides XML/XSLT functionality.
 
* [[nsxml]] --  
 
* [[nsxml]] --  
 
* [[nsexpat]] -- Interface to Expat
 
* [[nsexpat]] -- Interface to Expat
  
 +
== Web Services ==
  
'''Web Services'''
 
 
* [[nssoap]] -- ''unfinnished, unsupported''
 
* [[nssoap]] -- ''unfinnished, unsupported''
 
* [[nsxmlrpc]] -- XML-RPC server and client API [http://openacs.org/sdm/one-package.tcl?package_id=12]
 
* [[nsxmlrpc]] -- XML-RPC server and client API [http://openacs.org/sdm/one-package.tcl?package_id=12]
  
 +
== WebDAV ==
  
'''WebDAV'''
 
 
* [[nsdav]] -- Port of Apache's WebDAV [http://www.webdav.org/mod_dav/] support for AOLserver.
 
* [[nsdav]] -- Port of Apache's WebDAV [http://www.webdav.org/mod_dav/] support for AOLserver.
 
* [[nswebdav]] --  
 
* [[nswebdav]] --  
 
* [[tDAV]] -- A WebDAV server module that uses [[tDOM]].
 
* [[tDAV]] -- A WebDAV server module that uses [[tDOM]].
  
 +
== Miscellaneous ==
  
'''Miscellaneous'''
 
 
* [[dqd_log]] -- Makes AOLserver log to a file descriptor.
 
* [[dqd_log]] -- Makes AOLserver log to a file descriptor.
 
* [[dqd_threadpool]] -- Job scheduling system with Tcl interface.
 
* [[dqd_threadpool]] -- Job scheduling system with Tcl interface.
Line 93: Line 95:
 
* [[nsaspell]] -- Aspell Module [http://www.crystalballinc.com/vlad/software/]
 
* [[nsaspell]] -- Aspell Module [http://www.crystalballinc.com/vlad/software/]
 
* [[nsbinarysupport]] -- Write 8bit strings to connection without translation.
 
* [[nsbinarysupport]] -- Write 8bit strings to connection without translation.
* [[nscache]] -- Tcl interface to AOLserver's caching API
+
* [[nscache]] -- Tcl interface to AOLserver's caching API ([[ns_cache]] is builtin in AOLserver 4.5.1 or newer)
 
* [[nsclamav]] -- ClamAV Anti-Virus Interface Module [http://www.crystalballinc.com/vlad/software/]
 
* [[nsclamav]] -- ClamAV Anti-Virus Interface Module [http://www.crystalballinc.com/vlad/software/]
 +
* [[nsdci]] -- AOL's Digital City extensions (distributed cache, among other goodies) (http://code.google.com/p/nsdci/)
 
* [[nsdns]] -- DNS Server/Proxy Module [http://www.crystalballinc.com/vlad/software/]
 
* [[nsdns]] -- DNS Server/Proxy Module [http://www.crystalballinc.com/vlad/software/]
 
* [[nsdqe]] -- Collection of utilities including caching, page counter, virtual hosting etc.
 
* [[nsdqe]] -- Collection of utilities including caching, page counter, virtual hosting etc.
Line 116: Line 119:
 
* [[nssavi]] -- SOPHOS Anti-Virus Interface Module [http://www.crystalballinc.com/vlad/software/]
 
* [[nssavi]] -- SOPHOS Anti-Virus Interface Module [http://www.crystalballinc.com/vlad/software/]
 
* [[nssession]] -- Session Management
 
* [[nssession]] -- Session Management
 +
* [[nssession (C module)]] -- Sessions implemented as a C module
 
* [[nssnmp]] -- SNMP Module [http://www.crystalballinc.com/vlad/software/]
 
* [[nssnmp]] -- SNMP Module [http://www.crystalballinc.com/vlad/software/]
 
* [[nssys]] - Unix system calls, including chmod, ioctl, fsstat, syslog, signal
 
* [[nssys]] - Unix system calls, including chmod, ioctl, fsstat, syslog, signal
Line 124: Line 128:
 
* [[nsperl]] -- Embedded Perl module (not production ready) [http://jam.sessionsnet.org/files/file?file_id=5477]
 
* [[nsperl]] -- Embedded Perl module (not production ready) [http://jam.sessionsnet.org/files/file?file_id=5477]
  
 +
== Additional Software ==
  
'''Aditional Software'''
 
 
* [[jk-voting]] -- Example DB based Voting Booth
 
* [[jk-voting]] -- Example DB based Voting Booth
* '''Cache Tools'''[http://bas.scheffers.net/aolserver/], by [[Bas Scheffers]] -- I haven't worked with this or tested it in years, would like to hear from users!
+
* [http://bas.scheffers.net/aolserver/ Cache Tools], by [[Bas Scheffers]] -- I haven't worked with this or tested it in years, would like to hear from users!
 
* Tcl AutoLoader for AOLServer by Hal Heisler [http://www.heisler.net/hal]
 
* Tcl AutoLoader for AOLServer by Hal Heisler [http://www.heisler.net/hal]
 
* AOLserver 3.x Remote Administration Modules [http://www.scriptkitties.com/]
 
* AOLserver 3.x Remote Administration Modules [http://www.scriptkitties.com/]
Line 136: Line 140:
 
* AM.net[http://aolserver.am.net] maintains a page of AOLserver resources which includes an [[ADP]] pareser module and a module which fetches web pages.
 
* AM.net[http://aolserver.am.net] maintains a page of AOLserver resources which includes an [[ADP]] pareser module and a module which fetches web pages.
  
----
+
[[Category:Documentation]]
 
+
[[Category:Modules]]
[[Category Documentation]]
 

Latest revision as of 18:58, 21 September 2010

See also: Toolkits and Languages

Jamie Rasmussen maintains a list of AOLserver modules tested against Windows[1]. (Not recently updated - JR)

Standard Modules

AOLserver ships with the following modules:

  • nscgi -- Standard CGI support for running external C programs, perl scripts etc.
  • nscp -- Admin/debug support via a telnet like interface into a running server.
  • nsdb -- The database interface, loads database specific drivers (below).
  • nsext -- Communicates with external database drivers via proxy daemon.
  • nslog -- Common log format or extended common log format access logging.
  • nsperm -- Access control lists for groups/users, supports basic auth.
  • nsproxy -- Execute Tcl scripts in an external process
  • nssock -- Standard socket driver, used for HTTP requests.
  • nsssl -- SSL socket driver, links against proprietary RSA BSAFE library (not supplied).

Database Drivers

AOLserver database drivers are either internal or external. Internal drivers are shared libraries that are loaded in-process with the webserver -- they provide the best performance. External drivers are shared libraries which are loaded by the AOLserver database proxy daemon nsext, which communicates with the webserver process via sockets. The advantage of running the database driver external to the webserver is that it isolates buggy, non-threadsafe database access libraries. These days however this is largely unneccessary, and the external drivers are usually slower due to context switching overhead.

  • nsfb -- Internal Firebird|Interbase driver.
  • dqd_db2 -- Internal IBM DB2 driver (unmaintained).
  • nsberkeleydb -- Internal BerkeleyDB driver.
  • nsfreetds -- Internal MS SQL Server/Sybase driver.
  • nsinformix -- Internal Informix driver.
  • nsingres -- Internal Ingres r3 driver.
  • nsibasepd -- External Interbase driver.
  • nsmysql -- Internal MySQL driver.
  • nsodbc -- Internal ODBC driver.
  • nsoracle -- Internal Oracle driver.
  • nspostgres -- Internal PostgreSQL driver.
  • nssolid -- Internal Solid driver.
  • nssqlite2 -- Internal SQLite v2 driver.
  • nssqlite3 -- Internal SQLite v3 driver.
  • nsunixodbc -- Internal ODBC driver which uses the unixODBC driver.

Encryption / Security

  • nsblowfish -- Encrypt Tcl strings with Blowfish cypher and hex encode.
  • nsencrypt -- Uses OpenSSL to encrypt using the AES, Blowfish, Cast5, IDEA and DES cyphers.
  • nsnss -- New SSL socket driver, links against Netscape's portable runtime (NSPR) and security services (NSS) libraries.
  • nsopenssl -- SSL socket driver links against OpenSSL, and also provides client connection capabilities.
  • nspasswd -- CRYPT, MD5, SMD5, SHA and SSHA hashing algorithms.
  • nssha1 -- AOLserver module to perform SHA1 hashes.
  • nspam -- Interface to Pluggable Authentication Modules (PAM).
  • nsdigest -- Access control lists for groups/users (like nsperm), supports digest authentication.
  • nsmhash -- Implementation of mhash library interface to hash, hmac and keygen algorithms (MD5,SHA1, ...). Available shared with nsv_*.
  • nsmcrypt -- Implementation of mcrypt library interface to crypt,decrypt algorithms (blowfish, des, ...). Available shared with nsv_*.

Virtual Hosting

AOLserver 2.x and 4.x have built-in support for software or name-based virtual hosting, but AOLserver 3.x does not. Hardware virtual hosting (each server on its own port or IP) is supported across all three versions.

Charting

  • nsgdchart -- Generate png/jpg charts using open source gd library.
  • nschartdir -- Generate charts using proprietary ChartDirector library.
  • nsgd -- Generate png,jpg,wbmp,gif,... images using open source gd library.
  • nsgraph --
  • i-no graphing module using gd library (defunct: [4])

XML

  • tDOM -- a Tcl extension which provides XML/XSLT functionality.
  • nsxml --
  • nsexpat -- Interface to Expat

Web Services

WebDAV

Miscellaneous

Additional Software

  • jk-voting -- Example DB based Voting Booth
  • Cache Tools, by Bas Scheffers -- I haven't worked with this or tested it in years, would like to hear from users!
  • Tcl AutoLoader for AOLServer by Hal Heisler [16]
  • AOLserver 3.x Remote Administration Modules [17]
  • HTTP Cookie Library [18]
  • Simple-Templating System [19]
  • nstest
  • William Webb has a list of some unmaintained AOLserver software he created which may still be useful to you.
  • AM.net[20] maintains a page of AOLserver resources which includes an ADP pareser module and a module which fetches web pages.