Home Backend Development PHP Tutorial SOAP webservice interface

SOAP webservice interface

Nov 24, 2016 pm 03:46 PM
soap

In PHP, SOAP can be supported after enabling the php_soap.dll extension in the php.ini file.
In the soap extension library, there are mainly three types of objects.
1. SoapServer
is used to define functions that can be called and return response data when creating PHP server-side pages. The syntax format for creating a SoapServer object is as follows:
  $soap = new SoapServer($wsdl, $array);
  Among them, $wsdl is the wsdl file used by shoep, wsdl is a standard format for describing Web Service, if $wsdl Set to null to not use wsdl mode. $array is the attribute information of SoapServer and is an array.
The addFunction method of the SoapServer object is used to declare which function can be called by the client. The syntax format is as follows:
$soap->addFunction($function_name);
Among them, $soap is a SoapServer object, and $function_name needs to be called. function name.
The handle method of the SoapServer object is used to process user input and call the corresponding function, and finally returns the processing result to the client. The syntax format is as follows:
$soap->handle([$soap_request]);
Among them, $soap is a SoapServer object, and $soap_request is an optional parameter used to represent the user's request information. If $soap_request is not specified, it means that the server will accept all requests from the user.
2. SoapCliet
is used to call the SoapServer page on the remote server and implements the call to the corresponding function. The syntax format for creating a SoapClient object is as follows:
$soap = new SoapClient($wsdl,$array);
Among them, the parameters $wsdl and $array are the same as SoapServer.
After creating the SoapClient object, calling the function in the server page is equivalent to calling the SoapClient method. The creation syntax is as follows:
$soap->user_function($params);
Among them, $soap is a SoapClient object and user_function is the server The function to be called, $params is the parameters to be passed into the function.
3. SoapFault
SoapFault is used to generate errors that may occur during soap access. The syntax format for creating a soapFault object is as follows:
$fault = new SoapFault($faultcode,$faultstring);
Among them, $faultcode is a user-defined error code, and $faultstring is a user-defined error message. The soapFault object is automatically generated when an error occurs on the server-side page, or when the user creates a SoapFault object. For errors that occur during Soap access, the client can obtain the corresponding error information by capturing the SoapFalut object.
After capturing the SoapFault object on the client, you can obtain the error code and error information through the following code:
$fault->faultcode;//Error code
$fault->faultstring;//Error information
Where, $fault Is the SoapFault object created earlier.
Both SoapServer and SoapClient receive two parameters. The second parameter is Option, which supports several options. Here we use:
uri: namespace. The client and server need to use the same namespace.
location: used by the client to specify the access address of the server program, which is the program address of the second code in this example.
trace: used by the client. When true, the content of the communication between the server and the client can be obtained for debugging.

Soapserver.php

Java code

//First create a SoapServer object instance, and then register the functions we want to expose,

//The last handle() is used to process the accepted soap Request

error_reporting(7); //When officially released, set to 0

date_default_timezone_set('PRC'); //Set the time zone

/* Several functions for client calls */

function reverse($ str)

{

$retval = '';

if (strlen($str) < 1) {

return new SoapFault ('Client', '', 'Invalid string');

}

for ($i = 1; $i <= strlen($str); $i++) {

$retval .= $str [(strlen($str) - $i)];

}

return $retval;

}

function add2numbers($num1, $num2)

{

if (trim($num1) != intval($num1)) {

        return new SoapFault ('Client', '', 'The first number is invalid');  

    }  

    if (trim($num2) != intval($num2)) {  

        return new SoapFault ('Client', '', 'The second number is invalid');  

    }  

    return ($num1 + $num2);  

}  

  

function gettime()  

{  

    $time = date('Y-m-d H:i:s', time());  

    return $time;  

}  

  

$soap = new SoapServer (null, array('uri' => "httr://test-rui"));  

$soap->addFunction('reverse');  

$soap->addFunction('add2numbers');  

$soap->addFunction('gettime');  

$soap->addFunction(SOAP_FUNCTIONS_ALL);  

$soap->handle();  

?>  

 SoapClient.php

Java代码  

error_reporting(7);  

try {  

    $client = new SoapClient (null, array('location' => "http://www.yiigo.com/Soapserver.php", 'uri' => "http://test-uri"));  

  

    $str = "This string will be reversed";  

    $reversed = $client->reverse($str);  

    echo "if you reverse '$str', you will get '$reversed'";  

  

    $n1 = 20;  

    $n2 = 33;  

    $sum = $client->add2numbers($n1, $n2);  

    echo "
";  

    echo "if you try $n1 + $n2, you will get $sum";  

  

    echo "
";  

    echo "The remoye system time is: " . $client->gettime();  

} catch (SoapFault $fault) {  

    echo "Fault! code:" . $fault->faultcode . " string:" . $fault->faultstring;  

}  

?>  

if you reverse 'This string will be reversed', you will get 'desrever eb lliw gnirts sihT'
if you try 20 + 33, you will get 53
The remoye system time is: 2012-05-28 16:14:29

 

通过SoapHeader实现身份认证

Java代码  

class Server  

{  

    public function auth($a)  

    {  

        if ($a != '123456789') {  

            throw new SoapFault('Server', '用户身份认证信息错误');  

        }  

    }  

  

    public function say()  

    {  

        return 'Hi';  

    }  

}  

  

$srv = new SoapServer(null, array('uri' => 'http://localhost/namespace'));  

$srv->setClass('Server');  

$srv->handle();   

 客户端

Java代码  

$cli = new SoapClient(null,  

array('uri' => 'http://localhost/namespace/',

'location' => 'http://localhost/server.php',

'trace' => true) );

//auth is the function to be processed by the server 12345689 is the parameter

$h = new SoapHeader('http://localhost/namespace/',

'auth', '123456789', false, SOAP_ACTOR_NEXT);

$cli->__setSoapHeaders(array($h));

try {

echo $cli->say();

} catch (Exception $e) {

echo $e ->getMessage();

}

Pay attention to the fact that the server class in server.php has a method "auth", which just corresponds to the name of the header. The parameter $u of the auth method is the data of soapHeader, which soapServer receives This request will first call the auth method and pass "123456789" as a parameter to the method. When the mustUnderstand parameter is false, the say method will be called even if there is no auth method. However, if it is true, if the auth method does not exist, a Soapfault will be returned to inform that the header has not been processed. The actor parameter specifies which roles must process the header. I don't understand it very thoroughly here, so it's hard to say.

Java code

$file = $this->getSoapWSDL();

$client = new SoapClient($file);//url can be accessed through the browser and cannot be directly called to solve

$param = array( 'userID' => 'test', 'merchantID' => 'test');

$returnSt = $client->checkUser($param);

print_r($returnSt->checkUserResult);

public function getSoapWSDL()

{ //Regularly save the url file to the local

$file = Mage::getBaseDir() . DS . 'data' . DS . 'shengda' . DS . 'export. wsdl';

if (time() > filemtime($file) + 7 * 86400) {

$url = "http://jf.sdo.com/ExchangeScore/ExchangeService.asmx?WSDL";

include_once(BP . DS . "lib/Snoopy.class.php");

$snoopy = new Snoopy;

$snoopy->fetch($url); //Get all content

$snoop y-> read_timeout = 4;

$wsdl = $snoopy->results;

if ($snoopy->status == '200' && !$snoopy->timed_out) {

               if (!is_dir(dirname( $file))) {

                                                                                                                                                                                                                                                         

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use PHP and SOAP to implement Web service invocation and development How to use PHP and SOAP to implement Web service invocation and development Jun 25, 2023 am 09:59 AM

In the field of Web development, Web services are a very important technology that enable different applications to communicate with each other to build more complex and powerful systems. In this article, we will take an in-depth look at how to use PHP and SOAP to implement web service invocation and development. SOAP (SimpleObjectAccessProtocol) is an XML-based protocol used for information exchange between different applications. SOAP is an important Web service standard

PHP and SOAP: How to Implement Remote Procedure Calls (RPC) PHP and SOAP: How to Implement Remote Procedure Calls (RPC) Jul 29, 2023 pm 02:45 PM

PHP and SOAP: How to implement Remote Procedure Call (RPC) Introduction: In recent years, with the rise of distributed systems, Remote Procedure Call (RPC) has been widely adopted in Web development. This article will introduce how to implement RPC using PHP and SOAP, and demonstrate its usage through code examples. 1. What is remote procedure call (RPC)? Remote procedure call (RemoteProcedureCall, RPC) is a communication

PHP and SOAP: How to achieve synchronous and asynchronous processing of data PHP and SOAP: How to achieve synchronous and asynchronous processing of data Jul 28, 2023 pm 03:29 PM

PHP and SOAP: How to implement synchronous and asynchronous processing of data Introduction: In modern web applications, synchronous and asynchronous processing of data are becoming more and more important. Synchronous processing refers to processing only one request at a time and waiting for the completion of the request before processing the next request; asynchronous processing refers to processing multiple requests at the same time without waiting for the completion of a certain request. In this article, we will introduce how to use PHP and SOAP to achieve synchronous and asynchronous processing of data. 1. Introduction to SOAP SOAP (SimpleObject

Parsing SOAP messages using Python Parsing SOAP messages using Python Aug 08, 2023 am 09:27 AM

Parsing SOAP messages using Python SOAP (Simple Object Access Protocol) is an XML-based remote procedure call (RPC) protocol used to communicate between different applications on the network. Python provides many libraries and tools to process SOAP messages, the most commonly used of which is the suds library. suds is a SOAP client library for Python that can be used to parse and generate SOAP messages. It provides a simple and

SOAP Protocol Guide in PHP SOAP Protocol Guide in PHP May 20, 2023 pm 07:10 PM

With the continuous development of Internet technology, more and more enterprise-level applications need to provide interfaces to other applications to realize the interaction of data and business. In this case, we need a reliable protocol to transmit data and ensure data integrity and security. SOAP (Simple Object Access Protocol) is an XML-based protocol that can be used to implement communication between applications in a Web environment. As a popular web programming language, PHP

How to compress and decompress data using PHP and SOAP How to compress and decompress data using PHP and SOAP Jul 29, 2023 pm 12:28 PM

How to use PHP and SOAP to compress and decompress data Introduction: In modern Internet applications, data transmission is a very common operation. However, with the continuous development of Internet applications, the increase in data volume and the requirements for transmission speed, reasonable The use of data compression and decompression techniques has become a very important topic. In PHP development, we can use the SOAP (SimpleObjectAccessProtocol) protocol to achieve data compression and decompression. This article will show you how to

How to use PHP and SOAP to deploy and publish web services How to use PHP and SOAP to deploy and publish web services Jul 28, 2023 pm 01:57 PM

How to use PHP and SOAP to deploy and publish Web services Introduction: In today's Internet era, the deployment and publishing of Web services has become a very important topic. PHP is a popular server-side programming language, while SOAP (Simple Object Access Protocol) is an XML protocol used for communication between web services. This article will introduce you to how to use PHP and SOAP to deploy and publish web services, and provide some code examples.

A complete guide to building web-based applications with PHP and SOAP A complete guide to building web-based applications with PHP and SOAP Jul 30, 2023 am 10:25 AM

A complete guide to building web-based applications using PHP and SOAP In today's Internet era, web-based applications have become an important tool for managing and interacting with data. As a powerful development language, PHP can be seamlessly integrated with other technologies, while SOAP (Simple Object Access Protocol), as an XML-based communication protocol, provides us with a simple, standard and extensible method to build Web services. . This article will provide you with

See all articles