浅学soap--------2

Posted K_青鸟丶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了浅学soap--------2相关的知识,希望对你有一定的参考价值。

使用wsdl文件:

生成wsdl
<?php

require(‘person.class.php‘);    //  引入生成wsdl的类文件
require(‘SoapDiscovery.class.php‘);

$wsdl = new SoapDiscovery(‘person‘,‘person‘);    //第一个类名,第二个随意
$wsdl->getWSDL();
?>


person.class.php
<?php
class person{
    public $b = 10;
    public function name(){
        return ‘阿三‘;
    }
    public function add($a,$b){
        return $a.$b;
    }
}
?>

Clint.php
<?php
    $soap = new SoapClient(‘http://localhost/test/web_service/person.wsdl‘);    //  引入wsdl文件
    echo $soap->name();
    echo $soap->add(10);

    //结果  阿三1010
?>

Service.php
<?php
    include (‘person.class.php‘);
    $soap = new SoapServer(‘http://localhost/test/web_service/person.wsdl‘);
    $soap->setClass(‘person‘);
    $soap->handle();
?>

 

以上是关于浅学soap--------2的主要内容,如果未能解决你的问题,请参考以下文章

JS浅学

Spark SQL 浅学笔记2

Spark SQL 浅学笔记2

浅学CMake

神经网络浅学

Java Date类浅学