码迷,mamicode.com
首页 > Web开发 > 详细

PHP使用SOAP协议传播数据(不同于RESTFUL)

时间:2018-03-14 18:06:06      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:PHP使用SOAP协议传播数据

  • server.php:
    <?php
    if ($_SERVER[‘PHP_AUTH_USER‘]!=‘user‘ || $_SERVER[‘PHP_AUTH_PW‘]!=‘pass‘) {  
    header(‘WWW-Authenticate: Basic realm="ACCESS DENIED!!!"‘);  
    header(‘HTTP/1.0 401 Unauthorized‘);  
    exit("ACCESS DENIED!!!");  
    }
    class Server{
    public function say(){
        return ‘Hi‘;
    }
    }
    $server = new SoapServer(
                            null,
                            array(
                                ‘uri‘ => ‘http://test.org/‘
                                )
                        );
    $server->setClass(‘Server‘);
    $server->handle();
  • client.php:
    <?php
    $client = new SoapClient(
                            null,
                            array(
                                    ‘location‘ => ‘http://localhost/server.php‘,
                                    ‘uri‘ => ‘http://test.org/‘,
                                    ‘trace‘ => true,
                                    ‘login‘ => ‘user‘,
                                    ‘password‘ => ‘pass‘,
                                )
                        );
    // $head = new SoapHeader(‘http://test.org/‘, ‘user‘, ‘pass‘, false, SOAP_ACTOR_NEXT);
    // $client->__setSoapHeaders(array($head));
    try {
    echo $client->say();
    } catch (Exception $e) {
    echo $e->getMessage();
    }
  • PHP使用SOAP协议传播数据(不同于RESTFUL)

    标签:PHP使用SOAP协议传播数据

    原文地址:http://blog.51cto.com/12173069/2086820

    (0)
    (0)
       
    举报
    评论 一句话评论(0
    登录后才能评论!
    © 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
    迷上了代码!