Server application programming interface: Difference between revisions
Undid revision 1252849035 by 189.248.84.39 (talk) |
Rescuing 2 sources and tagging 0 as dead.) #IABot (v2.0.9.5) (Whoop whoop pull up - 21816 |
||
Line 6: | Line 6: | ||
| url = http://searchsoa.techtarget.com/definition/Netscape-Server-Application-Programming-Interface |
| url = http://searchsoa.techtarget.com/definition/Netscape-Server-Application-Programming-Interface |
||
| title = Netscape Server Application Programming Interface (NSAPI) |
| title = Netscape Server Application Programming Interface (NSAPI) |
||
| date = September 2005 |
| date = September 2005 |
||
| accessdate = 2013-09-22 |
|||
| website = techtarget.com |
| website = techtarget.com |
||
| archive-date = 2016-11-16 |
|||
⚫ | |||
| archive-url = https://web.archive.org/web/20161116123047/http://searchsoa.techtarget.com/definition/Netscape-Server-Application-Programming-Interface |
|||
| url-status = dead |
|||
⚫ | |||
As an example, [[PHP]] has a direct module interface called SAPI for different web servers;<ref name="php-installation">{{cite web |
As an example, [[PHP]] has a direct module interface called SAPI for different web servers;<ref name="php-installation">{{cite web |
||
Line 25: | Line 29: | ||
}}</ref> which is a module that, among other functions, provides an interface between PHP and the web server, implemented in a form that the server understands. This form is what is known as a SAPI. |
}}</ref> which is a module that, among other functions, provides an interface between PHP and the web server, implemented in a form that the server understands. This form is what is known as a SAPI. |
||
Different kinds of SAPIs exist for various web-server extensions. For example, in addition to those listed above, other SAPIs for the PHP language include the [[Common Gateway Interface]] (CGI) and [[command-line interface]] (CLI).<ref name="php-installation" /><ref> |
Different kinds of SAPIs exist for various web-server extensions. For example, in addition to those listed above, other SAPIs for the PHP language include the [[Common Gateway Interface]] (CGI) and [[command-line interface]] (CLI).<ref name="php-installation" /><ref>{{cite web |
||
{{cite web |
|||
| url = http://www.php.net/manual/en/features.commandline.introduction.php |
| url = http://www.php.net/manual/en/features.commandline.introduction.php |
||
| title = Command line usage: Introduction |
| title = Command line usage: Introduction |
||
| accessdate = 2013-09-22 |
| accessdate = 2013-09-22 |
||
| website = php.net |
| website = php.net |
||
| archive-date = 2021-03-21 |
|||
}} |
|||
| archive-url = https://web.archive.org/web/20210321035330/https://www.php.net/manual/en/features.commandline.introduction.php |
|||
⚫ | |||
| url-status = dead |
|||
⚫ | |||
== See also == |
== See also == |
Latest revision as of 22:57, 18 November 2024
In computing, server application programming interface (SAPI) is the direct module interface to web servers such as the Apache HTTP Server, Microsoft IIS, and Oracle iPlanet Web Server. In other words, SAPI is an application programming interface (API) provided by the web server to help other developers in extending the web server capabilities.
Microsoft uses the term Internet Server Application Programming Interface (ISAPI), and the defunct Netscape web server used the term Netscape Server Application Programming Interface (NSAPI) for the same purpose.[1]
As an example, PHP has a direct module interface called SAPI for different web servers;[2] in the case of PHP 5 and Apache 2.0 on Windows, it is provided in the form of a DLL file called php5apache2.dll,[3] which is a module that, among other functions, provides an interface between PHP and the web server, implemented in a form that the server understands. This form is what is known as a SAPI.
Different kinds of SAPIs exist for various web-server extensions. For example, in addition to those listed above, other SAPIs for the PHP language include the Common Gateway Interface (CGI) and command-line interface (CLI).[2][4]
See also
[edit]- FastCGI (a variation of the CGI)
References
[edit]- ^ "Netscape Server Application Programming Interface (NSAPI)". techtarget.com. September 2005. Archived from the original on 2016-11-16. Retrieved 2013-09-22.
- ^ a b "General Installation Considerations". php.net. Retrieved 2013-09-22.
- ^ "PHP: Apache 2.x on Microsoft Windows". php.net. Archived from the original on 2013-09-26. Retrieved 2013-09-22.
- ^ "Command line usage: Introduction". php.net. Archived from the original on 2021-03-21. Retrieved 2013-09-22.
External links
[edit]