溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

php調(diào)用webservice失敗怎么解決

發(fā)布時(shí)間:2022-01-11 10:17:51 來源:億速云 閱讀:154 作者:iii 欄目:編程語言

這篇“php調(diào)用webservice失敗怎么解決”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“php調(diào)用webservice失敗怎么解決”文章吧。

php調(diào)用webservice失敗的解決辦法:1、去掉“;extension=php_soap.dll”前的分號(hào)并重啟apache;2、創(chuàng)建WSDL文件并運(yùn)行creatService.php文件;3、關(guān)閉WSDL緩存。

php調(diào)用webservice失敗怎么解決

本文操作環(huán)境:windows7系統(tǒng)、PHP7.1版、DELL G3電腦

php調(diào)用webservice失敗怎么辦?

php編寫webservice案例、webservice調(diào)用失敗

作為開發(fā)者來講,要想寫webservice接口或者調(diào)用別人的webservice接口,首先需要了解什么是webservice。

簡(jiǎn)單說, WebService就是一些站點(diǎn)開放一些服務(wù)出來, 也可以是你自己開發(fā)的Service, 也就是一些方法, 通過URL,指定某一個(gè)方法名,發(fā)出請(qǐng)求,站點(diǎn)里的這個(gè)服務(wù)(方法),接到你的請(qǐng)求,根據(jù)傳過來的參數(shù),做一些處理,然后把處理后的結(jié)果以XML形式返回來給你,你的程序就解析這些XML數(shù)據(jù),然后顯示出來或做其它操作。

在開始編寫之前需要對(duì)php環(huán)境做一些配置:

打開php安裝目錄下的php.ini文件

找到 ;extension=php_soap.dll ,去掉前面的分號(hào),保存,然后重啟apache。

配置好環(huán)境就可以編寫php了,先創(chuàng)建creatService.php文件,復(fù)制下面代碼:

<?php
class ServiceTest{
	public function firstHandle($name){
		return "你的名字是:".$name;
    }
    
    public function dbInsert($text){
        $db=new mysqli("localhost","root","","test");
		if(mysqli_connect_error()){
		    return '數(shù)據(jù)庫連接失敗。';
		    exit;
		}
        $result=$db->query("insert into test_soap (text) values('".$text."')");
        
		if($result){
			return $result;
		}else{
			return "插入失敗";
		}
    }
}

if(file_exists('ServiceTest.wsdl')){ //只有當(dāng)ServiceTest.wsdl文件存在時(shí)才進(jìn)行注冊(cè)類
    $objSoapServer = new SoapServer("ServiceTest.wsdl");
    //注冊(cè)ServiceTest類的所有方法 
    $objSoapServer->setClass("ServiceTest");
    //處理請(qǐng)求 
    $objSoapServer->handle();
}

require_once "SoapDiscovery.class.php";
$dis=new SoapDiscovery("ServiceTest","WebService"); //第一個(gè)參數(shù)為類名也是生成wsdl的文件名
$dis->getWSDL();



?>

第一次運(yùn)行creatService.php文件時(shí)要?jiǎng)?chuàng)建wsdl文件,創(chuàng)建WSDL文件需要用到一個(gè)輔助類SoapDiscovery.class.php。在文章末尾可以得到。

創(chuàng)建完成之后便是測(cè)試調(diào)用,創(chuàng)建client.php文件,復(fù)制以下代碼:

ini_set('soap.wsdl_cache_enabled','0');//關(guān)閉緩存

$x = new SoapClient("http://localhost/webServiceTest/ServiceTest.wsdl"); //這里的鏈接換成你自己的訪問鏈接

try {
    echo $x->firstHandle('qweqrwergwe');

    echo ('<pre>');
    var_dump ( $x->__getFunctions () );//獲取服務(wù)器上提供的方法
    echo ('</pre>');

    echo ('<pre>');
    var_dump ( $x->__getTypes () );//獲取服務(wù)器上數(shù)據(jù)類型
    echo ('</pre>');
}catch (SoapFault $f){
    echo "Error Message: {$f->getMessage()}";
}

注意! ini_set('soap.wsdl_cache_enabled','0');    //關(guān)閉WSDL緩存

如果不關(guān)閉緩存,會(huì)造成測(cè)試無效,緩存數(shù)據(jù)會(huì)擾亂測(cè)試準(zhǔn)確性。

注意!如果是在thinkphp5中使用SoapClient函數(shù)應(yīng)當(dāng)如下使用:

$client = new \SoapClient ('http://www.baidu.com/ids/terminal/terminalWs.wsdl');

重要點(diǎn):

使用https訪問webservice的話會(huì)出現(xiàn)訪問異常,博主就遇到這個(gè)問題的,本地創(chuàng)建和調(diào)用webservice都通過了,但是一放到線上就無法調(diào)用了,然后各種google、baidu。最后才發(fā)現(xiàn)線上的環(huán)境是http強(qiáng)制轉(zhuǎn)了https。

我的解決辦法是取消了http強(qiáng)制轉(zhuǎn)換https的功能:

找到httpd-vhost.conf,注釋掉一下代碼:

##    RewriteEngine on
##    RewriteCond   %{HTTPS} !=on
##    RewriteRule   ^(.*)  https://%{SERVER_NAME}$1 [L,R]

注釋掉上面的代碼后我發(fā)現(xiàn)我的網(wǎng)站不是https了,嗚嗚嗚~,真的是拆了東墻補(bǔ)西墻啊,趕緊想辦法,因?yàn)榫W(wǎng)站必須使用https才行,還好我使用的是thinkphp框架,找到了一個(gè)方法,在入口文件index.php最下面加入下面的代碼就行了:

if (empty($_SERVER['HTTPS']) || $_SERVER['HTTPS'] === "off") {
    $location = 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
    header('HTTP/1.1 301 Moved Permanently');
    header('Location: ' . $location);
    exit;
}

SoapDiscovery.class.php類:

<?php
  
/**
 * 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 = "<?xml version=\"1.0\" ?>\n";
		$headerWSDL.= "<definitions name=\"$this->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.= "<types xmlns=\"http://schemas.xmlsoap.org/wsdl/\" />\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 = '<portType name="'.$this->service_name.'Port">';
		$bindingWSDL = '<binding name="'.$this->service_name.'Binding" type="tns:'.$this->service_name."Port\">\n<soap:binding style=\"rpc\" transport=\"http://schemas.xmlsoap.org/soap/http\" />\n";
		$serviceWSDL = '<service name="'.$this->service_name."\">\n<documentation />\n<port name=\"".$this->service_name.'Port" binding="tns:'.$this->service_name."Binding\"><soap:address location=\"http://".$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].$_SERVER['PHP_SELF']."\" />\n</port>\n</service>\n";
		$messageWSDL = '';
		foreach ($methods as $method) {
			if ($method->isPublic() && !$method->isConstructor()) {
				$portTypeWSDL.= '<operation name="'.$method->getName()."\">\n".'<input message="tns:'.$method->getName()."Request\" />\n<output message=\"tns:".$method->getName()."Response\" />\n</operation>\n";
				$bindingWSDL.= '<operation name="'.$method->getName()."\">\n".'<soap:operation soapAction="urn:'.$this->service_name.'#'.$this->class_name.'#'.$method->getName()."\" />\n<input><soap:body use=\"encoded\" namespace=\"urn:$this->service_name\" encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\" />\n</input>\n<output>\n<soap:body use=\"encoded\" namespace=\"urn:$this->service_name\" encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\" />\n</output>\n</operation>\n";
			    $messageWSDL.= '<message name="'.$method->getName()."Request\">\n";
				$parameters = $method->getParameters();
				foreach ($parameters as $parameter) {
					$messageWSDL.= '<part name="'.$parameter->getName()."\" type=\"xsd:string\" />\n";
				}
				$messageWSDL.= "</message>\n";
				$messageWSDL.= '<message name="'.$method->getName()."Response\">\n";
				$messageWSDL.= '<part name="'.$method->getName()."\" type=\"xsd:string\" />\n";
				$messageWSDL.= "</message>\n";
			}
		}
		$portTypeWSDL.= "</portType>\n";
		$bindingWSDL.= "</binding>\n";
		//return sprintf('%s%s%s%s%s%s', $headerWSDL, $portTypeWSDL, $bindingWSDL, $serviceWSDL, $messageWSDL, '</definitions>');
	    $fso = fopen($this->class_name . ".wsdl" , "w"); 
        fwrite($fso, sprintf('%s%s%s%s%s%s', $headerWSDL, $portTypeWSDL, $bindingWSDL, $serviceWSDL, $messageWSDL, '</definitions>')); 
        exit; 
	}
	
	/**
	 * SoapDiscovery::getDiscovery() Returns discovery of WSDL.
	 * 
	 * @return string
	 **/
	public function getDiscovery() {
		return "<?xml version=\"1.0\" ?>\n<disco:discovery xmlns:disco=\"http://schemas.xmlsoap.org/disco/\" xmlns:scl=\"http://schemas.xmlsoap.org/disco/scl/\">\n<scl:contractRef ref=\"http://".$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].$_SERVER['PHP_SELF']."?wsdl\" />\n</disco:discovery>";
	}
}
 
?>

以上就是關(guān)于“php調(diào)用webservice失敗怎么解決”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI