PHP扩展—SOAP

伊谢尔伦
伊谢尔伦 原创
2016-11-21 16:54:22 1087浏览

一、概述及安装

SOAP扩展可以用于编写SOAP服务器和客户端,支持 SOAP 1.1, SOAP 1.2 和 WSDL 1.1 规格的子集。

此扩展需要 libxml PHP 扩展。这表示需要使用 --enable-libxml ,尽管这将隐式完成因为 libxml 是缺省开启的。

要开启SOAP支持, 配置 PHP 时要加上 --enable-soap .

二、相关函数

is_soap_fault — Checks if a SOAP call has failed

use_soap_error_handler — Set whether to use the SOAP error handler

三、相关类及成员函数

SoapClient

SoapClient::__call — Calls a SOAP function (deprecated)

SoapClient::__construct — SoapClient constructor

SoapClient::__doRequest — Performs a SOAP request

SoapClient::__getFunctions — Returns list of available SOAP functions

SoapClient::__getLastRequest — Returns last SOAP request

SoapClient::__getLastRequestHeaders — Returns the SOAP headers from the last request

SoapClient::__getLastResponse — Returns last SOAP response

SoapClient::__getLastResponseHeaders — Returns the SOAP headers from the last response

SoapClient::__getTypes — Returns a list of SOAP types

SoapClient::__setCookie — The __setCookie purpose

SoapClient::__setLocation — Sets the location of the Web service to use

SoapClient::__setSoapHeaders — Sets SOAP headers for subsequent calls

SoapClient::__soapCall — Calls a SOAP function

SoapClient::SoapClient — SoapClient constructor

SoapServer

SoapServer::addFunction — Adds one or more functions to handle SOAP requests

SoapServer::addSoapHeader — Add a SOAP header to the response

SoapServer::__construct — SoapServer constructor

SoapServer::fault — Issue SoapServer fault indicating an error

SoapServer::getFunctions — Returns list of defined functions

SoapServer::handle — Handles a SOAP request

SoapServer::setClass — Sets the class which handles SOAP requests

SoapServer::setObject — Sets the object which will be used to handle SOAP requests

SoapServer::setPersistence — Sets SoapServer persistence mode

SoapServer::SoapServer — SoapServer constructor

SoapFault

SoapFault::__construct — SoapFault constructor

SoapFault::SoapFault — SoapFault constructor

SoapFault::__toString — Obtain a string representation of a SoapFault

SoapHeader

SoapHeader::__construct — SoapHeader constructor

SoapHeader::SoapHeader — SoapHeader constructor

SoapParam

SoapParam::__construct — SoapParam constructor

SoapParam::SoapParam — SoapParam constructor

SoapVar

SoapVar::__construct — SoapVar constructor

SoapVar::SoapVar — SoapVar constructor


声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
上一条:PHP扩展之--XML-RPC 下一条:PHP扩展—OAuth