Home  >  Article  >  php教程  >  php发布webservice方法

php发布webservice方法

WBOY
WBOYOriginal
2016-06-06 19:50:461606browse

方法一: nosoap 前提,在目录里添加lib nusoap.php class.nusoap_base.php class.soap_fault.php class.soap_parser.php class.soap_server.php class.soap_transport_http.php class.soap_val.php class.soapclient.php class.wsdl.php class.wsdlcache.php

方法一: nosoap

前提,在目录里添加lib

nusoap.php class.nusoap_base.php

class.soap_fault.php

class.soap_parser.php

class.soap_server.php

class.soap_transport_http.php

class.soap_val.php

class.soapclient.php

class.wsdl.php

class.wsdlcache.php

class.xmlschema.php

nusoapmime.php

这几个文件

 


include_once "lib/nusoap.php";
function GetTestStr($who) {
 return "Hello". $who;
}
$namespace = "http://sanity-free.org/services";
// create a new soap server
$server = new soap_server();
$server->soap_defencoding = 'UTF-8';
$server->decode_utf8 = false;
//初始化WSDL支持
$server->configureWSDL("test", "");
//输出WSDL schema types in the namespace with the tns prefix
$server->wsdl->schemaTargetNamespace="nete:cebbs_wsdl";
$server->register('GetTestStr',array("str"=>"xsd:string"), // 输入参数的定义
array("return"=>"xsd:string") // 返回参数的定义
);
/************************************************************************
发布SOAP服务   GetFriendList
************************************************************************/
$HTTP_RAW_POST_DATA=isset($HTTP_RAW_POST_DATA)?$HTTP_RAW_POST_DATA:"";
$server->service($HTTP_RAW_POST_DATA);

?>

-------

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn