Home > php教程 > php手册 > php发布webservice方法

php发布webservice方法

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 19:50:46
Original
1652 people have browsed it

方法一: 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);

?>

-------

Related labels:
source:php.cn
Statement of this Website
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template