Jump to content

Server application programming interface: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
m Asukite moved page Server Application Programming Interface to Server application programming interface without leaving a redirect: per discussion closed as "moved"
adjust lead title case
Line 1: Line 1:
<noinclude>{{User:RMCD bot/subject notice|1=Server application programming interface|2=Talk:Server Application Programming Interface#Requested move 16 August 2022}}
<noinclude>{{User:RMCD bot/subject notice|1=Server application programming interface|2=Talk:Server Application Programming Interface#Requested move 16 August 2022}}
</noinclude>In [[computing]], '''Server Application Programming Interface''' ('''SAPI''') is the direct module interface to [[web server]]s such as the [[Apache HTTP Server]], [[Microsoft Internet Information Server|Microsoft IIS]], and [[Oracle iPlanet Web Server]]. [[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.<ref>{{cite web
</noinclude>In [[computing]], '''server application programming interface''' ('''SAPI''') is the direct module interface to [[web server]]s such as the [[Apache HTTP Server]], [[Microsoft Internet Information Server|Microsoft IIS]], and [[Oracle iPlanet Web Server]]. [[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.<ref>{{cite web
| 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)

Revision as of 18:09, 30 August 2022

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. 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] 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.

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

References

  1. ^ "Netscape Server Application Programming Interface (NSAPI)". techtarget.com. September 2005. Retrieved 2013-09-22.
  2. ^ a b "General Installation Considerations". php.net. Retrieved 2013-09-22.
  3. ^ "PHP: Apache 2.x on Microsoft Windows". php.net. Archived from the original on 2013-09-26. Retrieved 2013-09-22.
  4. ^ "Command line usage: Introduction". php.net. Retrieved 2013-09-22.