php写WebService无法通信

WBOY
发布: 2016-06-23 14:01:01
原创
989 人浏览过

客户端代码:

<?php    $client = new SoapClient(null, array('location'=>"http://192.168.1.100/test/serverSoap.php",'uri' =>"http://soap/"));    echo $client->show();  ?>
登录后复制

服务器代码:
<?php    class test{        function show(){            return 'the data you request';        }    }    function getUserInfo($name){        return 'fbbin';    }    $soap = new SoapServer(null, array('uri'=>'http://soap/','location'=>'http://localhost/test/serverSoap.php'));    $server->serClass('test');    $server->handle();?>
登录后复制

运行环境用的wamp,以上两个文件都放在wamp安装目录的www/test/目录下。

操作系统window 8

打开浏览器,访问客户端文件

http://localhost/test/serverClient.php

显示错误信息如下:

我是新手啊,php刚学没几天,webservice也只是知道用来干啥的,从来没用过。麻烦诸位讲的通俗一点可不可以啊,谢谢回答。

php的soap服务以打开。
php的soap服务以开启:


回复讨论(解决方案)

太粗心了,这样写

<?php    class test{        function show(){            return 'the data you request';        }    }    function getUserInfo($name){        return 'fbbin';    }    $server = new SoapServer(null, array('uri'=>'http://soap/','location'=>'http://localhost/test/serverSoap.php'));    $server->setClass('test');    $server->handle();?>
登录后复制

补充下

<?php    class test{        function show(){            return 'the data you request';        }        function getUserInfo($name){            return 'fbbin';        }    }    $server = new SoapServer(null, array('uri'=>'http://soap/','location'=>'http://localhost/test/serverSoap.php'));    $server->setClass('test');    $server->handle();?>
登录后复制

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