热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Yii2结合SoapDiscovery,实现Soap服务

Yii2结合SoapDiscovery,实现SoapWebService服务SOAPWebService一般PHPER们不会遇到,一旦有这个需求,写Wsdl描述文件,尤其是给C#之
Yii2结合SoapDiscovery, 实现Soap WebService服务

SOAP Web Service 一般PHPER们不会遇到,一旦有这个需求,写Wsdl描述文件,尤其是给C#之类的调用方,还是很伤脑筋的。

大家都知道把大象装冰箱,统共分几步,其实实现PHP SOAP也就三步:

  • 生成wsdl描述文件
  • 使用SoapServer注册服务
  • 使用SoapClient调用服务

所以,本人就以Yii2框架为例,一步步实现实现web service, 仅供参考。

Soap wsdl文件生成类 app\service\SoapDiscovery.php

注意, SoapDiscovery类来源于网络,本文中有所改动,结合yii2, 加入了namesapce, 特此声明。


namespace app\service;
/**
* Copyright (c) 2005, Braulio Jos?Solano Rojas
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of
* conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
* Neither the name of the Solsoft de Costa Rica S.A. nor the names of its contributors may
* be used to endorse or promote products derived from this software without specific
* prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
* @version $Id$
* @copyright 2005
*/
/**
* SoapDiscovery Class that provides Web Service Definition Language (WSDL).
*
* @package SoapDiscovery
* @author Braulio Jos?Solano Rojas
* @copyright Copyright (c) 2005 Braulio Jos?Solano Rojas
* @version $Id$
* @access public
* */
class SoapDiscovery
{
private $class_name = '';
private $service_name = '';
/**
* SoapDiscovery::__construct() SoapDiscovery class Constructor.
*
* @param string $class_name
* @param string $service_name
* */
public function __construct($class_name = '', $service_name = '') {
$this->class_name = $class_name;
$this->service_name = $service_name;
}
/**
* SoapDiscovery::getWSDL() Returns the WSDL of a class if the class is instantiable.
*
* @return string
* */
public function getWSDL() {
if (empty($this->service_name)) {
throw new \Exception('No service name.');
}
$headerWSDL = "\n";
$headerWSDL.= "service_name\" targetNamespace=\"urn:$this->service_name\" xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\" xmlns:soap=\"http://schemas.xmlsoap.org/wsdl/soap/\" xmlns:tns=\"urn:$this->service_name\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:SOAP-ENC=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns=\"http://schemas.xmlsoap.org/wsdl/\">\n";
$headerWSDL.= "\n";
if (empty($this->class_name)) {
throw new \Exception('No class name.');
}
$class = new \ReflectionClass($this->class_name);
if (!$class->isInstantiable()) {
throw new \Exception('Class is not instantiable.');
}
$methods = $class->getMethods();
$portTypeWSDL = '';
$bindingWSDL = '\n\n";
$serviceWSDL = '\n\nservice_name . 'Port" binding="tns:' . $this->service_name . "Binding\">\n\n\n";
$messageWSDL = '';
foreach ($methods as $method) {
if ($method->isPublic() && !$method->isConstructor()) {
$portTypeWSDL.= '\n" . '\ngetName() . "Response\" />\n\n";
$bindingWSDL.= '\n" . '\nservice_name\" encodinghttp://schemas.xmlsoap.org/soap/encoding/\" />\n\n\nservice_name\" encodinghttp://schemas.xmlsoap.org/soap/encoding/\" />\n\n\n";
$messageWSDL.= '\n";
$parameters = $method->getParameters();
foreach ($parameters as $parameter) {
$messageWSDL.= '\n";
}
$messageWSDL.= "
\n";
$messageWSDL.= '\n";
$messageWSDL.= '\n";
$messageWSDL.= "
\n";
}
}
$portTypeWSDL.= "
\n";
$bindingWSDL.= "\n";
//return sprintf('%s%s%s%s%s%s', $headerWSDL, $portTypeWSDL, $bindingWSDL, $serviceWSDL, $messageWSDL, '
');
//生成wsdl文件,将上面的return注释
$fso = fopen(dirname(__FILE__) . '/' . $this->class_name . ".wsdl", "w");
fwrite($fso, sprintf('%s%s%s%s%s%s', $headerWSDL, $portTypeWSDL, $bindingWSDL, $serviceWSDL, $messageWSDL, ''));
}
/**
* SoapDiscovery::getDiscovery() Returns discovery of WSDL.
*
* @return string
* */
public function getDiscovery() {
return "\n\n\n";
}
}

web service 类 app\service\SoapService.php


namespace app\service;
class SoapService
{
public function HelloWorld() {
return "Hello";
}
public function Add($a, $b) {
return $a + $b;
}
}

控制器

  • 生成wsdl app\controllers\CreatewsController.php


namespace app\controllers;
use Yii;
use yii\web\Controller;
use app\service\SoapService;
use app\service\SoapDiscovery;
class CreatewsController extends Controller
{
public function actionIndex()
{
$disco = new SoapDiscovery('\app\service\SoapService', 'soap'); //第一个参数是类名(生成的wsdl文件就是以它来命名的),即Service类,第二个参数是服务的名字(这个可以随便写)。
$r = $disco->getWSDL();
}
}

  • 注册web service app\controllers\ServiceController.php


namespace app\controllers;
use Yii;
use yii\web\Controller;
use app\service\SoapService;
class ServiceController extends Controller
{
public $ws_url = 'http://host.com/service/ws?wsdl';
public function init()
{
Yii::$app->getRequest()->enableCsrfValidation = false;
} /**
* 服务地址注册 /service/ws
*/
public function actionWs()
{
//设置Yii响应格式为XML
\Yii::$app->response->format = \yii\web\Response::FORMAT_XML;
$server = new \SoapServer(dirname(__FILE__) . '/\app\service\SoapService.wsdl', array('soap_version' => SOAP_1_2));
$server->setClass('\app\service\SoapService'); //注册Service类的所有方法
$server->handle(); //处理请求
} /**
* 测试调用
*/
public function actionTest()
{
$client = new \SoapClient($this->ws_url, array(
'soap_version' => SOAP_1_2,
'cache_wsdl' => WSDL_CACHE_NONE
));
echo '

';
echo 'SOAP types';
print_r($client->__getTypes());
echo 'SOAP Functions';
print_r($client->__getFunctions());
$result = $client->__soapCall('Add', [1, 2]);
var_dump($result);
}
}

Websercie & Rest 测试软件

  • SoapUI 大杀器

《Yii2结合SoapDiscovery, 实现Soap服务》 SoapUI

  • Chrome插件 轻量级,相当够用了。

《Yii2结合SoapDiscovery, 实现Soap服务》 Boomerang.png

参考资料&常见问题

  • The SoapServer class
  • The SoapClient class
  • 调用.NET SOAP,传参
  • PHP Soap Error – Procedure ‘xxx’ not present
  • 缓存问题, 设置 ‘cache_wsdl’ => WSDL_CACHE_NONE

推荐阅读
  • 本文详细介绍了如何解决在使用本地SQlyog客户端尝试连接阿里云上的MariaDB数据库时遇到的2003错误,即无法连接到MySQL服务器的问题。 ... [详细]
  • ANSI最全介绍linux终端字体改变颜色等ANSI转义序列维基百科,自由的百科全书由于国内不能访问wiki而且国内关于ANSI的介绍都是简短的不能达到,不够完整所以转wiki到此 ... [详细]
  • 本文详细分析了在C#中调用服务时遇到服务停止后抛出EndPointNotFoundException所需的时间,以及如何通过调整配置参数来优化这一过程。 ... [详细]
  • 微服务架构详解及其入门指南
    本文详细介绍了微服务的基本概念、发展历程、与传统架构的区别及优势,并探讨了适合采用微服务架构的场景。此外,文章还深入分析了几个主流的微服务开发框架,特别是Spring Cloud的组成和特点。 ... [详细]
  • 本文介绍了iOS应用开发的主要框架,包括Foundation、UIKit、CoreData及CoreGraphics等,并探讨了开发iOS应用所需的硬件和软件环境,以及推荐的编程语言。 ... [详细]
  • 本文详细介绍了中心方形数的概念及其计算方法,并提供了多种编程语言下的实现代码。 ... [详细]
  • 大数据SQL优化:全面解析数据倾斜解决方案
    本文深入探讨了大数据SQL优化中的数据倾斜问题,提供了多种解决策略和实际案例,旨在帮助读者理解和应对这一常见挑战。 ... [详细]
  • Cortex-M3处理器核心解析
    本文详细介绍了Cortex-M3处理器的常见术语及其核心特点,包括其架构、寄存器组、操作模式、中断处理机制、存储器映射、总线接口和存储器保护单元(MPU)。此外,还探讨了Cortex-M3在性能和中断处理方面的优势。 ... [详细]
  • django项目中使用手机号登录
    本文使用聚合数据的短信接口,需要先获取到申请接口的appkey和模板id项目目录下创建ubtils文件夹,定义返回随机验证码和调取短信接口的函数function.py文件se ... [详细]
  • C#爬虫Fiddler插件开发自动生成代码
    哈喽^_^一般我们在编写网页爬虫的时候经常会使用到Fiddler这个工具来分析http包,而且通常并不是分析一个包就够了的,所以为了把更多的时间放在分析http包上,自动化生成 ... [详细]
  • 第三周课堂测试1、使用汇编语言编写指令时,用一些简单的容易记忆的符号来代替二进制指令,比机器语言更为方便,属于高级语言。(B ... [详细]
  • 成为一名高效的Java架构师不仅需要掌握高级Java编程技巧,还需深入理解JVM的工作原理及其优化方法。此外,对池技术(包括对象池、连接池和线程池)的应用、多线程处理、集合对象的内部机制、以及常用的数据结构和算法的精通也是必不可少的。同时,熟悉Linux操作系统、TCP/IP协议栈、HTTP协议等基础知识,对于构建高效稳定的系统同样重要。 ... [详细]
  • 本文探讨了在Windows 8系统中使用C#语言开发的小工具遇到的进程无法强制终止的问题,包括可能的原因及解决方案。 ... [详细]
  • 深入理解Redis集群机制
    本文旨在深入探讨Redis集群的工作原理,包括其架构设计、数据分布策略、节点通信及故障恢复机制等方面的内容。 ... [详细]
  • 面对日益竞争激烈的就业市场,合理的职业规划对于在校大学生尤为重要。本文旨在探讨如何通过有效的自我认知、技能提升及目标设定,帮助计算机专业的学生构建清晰的职业路径,以增强就业竞争力。 ... [详细]
author-avatar
信美玲小祖宗q84
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有