首页 > 后端开发 > php教程 > php webservice 测试

php webservice 测试

WBOY
发布: 2016-06-23 14:35:03
原创
959 人浏览过

client.php

/*
try {
    $client = new SoapClient(null,
        array('location' =>"http://127.0.0.1/ktvme/serverSoap.php",'uri' => "http://127.0.0.1/")
    );
    echo $client->minus_func(100,99);

} catch (SoapFault $fault){
    echo "Error: ",$fault->faultcode,", string: ",$fault->faultstring;
}
*/


try {
    $client = new SoapClient(null,
        array('location' =>"http://127.0.0.1/ktvme/serverSoap.php",'uri' => "http://127.0.0.1/")
    );
    echo $client->getName();

} catch (SoapFault $fault){
    echo "Error: ",$fault->faultcode,", string: ",$fault->faultstring;
}

?>

serverSoap.php

/*  //函数形式的
$soap = new SoapServer(null,array('uri'=>"http://127.0.0.1/"));//This uri is your SERVER ip.
$soap->addFunction('minus_func');                                                 //Register the function
$soap->addFunction(SOAP_FUNCTIONS_ALL);
$soap->handle();

function minus_func($i, $j){
    $res = $i - $j;
    return $res;
}

*/


  //class 形式的
$classExample = array();

$soap = new SoapServer(null,array('uri'=>"http://127.0.0.1/",'classExample'=>$classExample));
$soap->setClass('chesterClass');
$soap->handle();

class chesterClass {
    public $name = 'Chester';

    function getName() {
        return $this->name;
    }
}

?>

wsddl文件

header ( "Content-Type: text/html; charset=utf-8" );
echo 'hi
';
$client = new SoapClient("http://localhost/ktvme/wsdl1.wsdl",array('soap_version'   => SOAP_1_2));
//$client = new SoapClient("http://localhost/ktvme/wsdl1.php?wsdl");

//$something =  $client->NewOperation(array());
$something =  $client->NewOperation();
echo $something->NewOperationResponse;
die();

?>

 

 

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板