Skip to content

Instantly share code, notes, and snippets.

@houssemz
Last active August 18, 2018 13:30
Show Gist options
  • Save houssemz/9041d334b588327816b0701b3e98be0d to your computer and use it in GitHub Desktop.
Save houssemz/9041d334b588327816b0701b3e98be0d to your computer and use it in GitHub Desktop.
SAOP

SAOP and PHP

SAOP is an acronym for Simple Object Access Protocol. It is an XML-based messaging protocol for exchanging information. SAOP is an application of the XML specification.

Points to note :

  • SOAP is a communication protocol designed to communicate via internet.
  • SAOP provides data transport for Web Services.
  • SOAP is a platform and language-independent.
  • SOAP is the XML way of defining what information is sent and how.

SAOP and PHP :

In PHP SAOP is an extension that can be used to write SAOP Servers and Clients (requires the libxml PHP extension; libxml is enabled by default).

SAOP functions :

  • is_saop_fault checks if a SAOP call has failed.
  • use_soap_error_handler indicates whether to use an error handler.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment