search
HomeBackend DevelopmentPHP TutorialUse wsdl to create standard webservice implementation code in PHP_PHP tutorial

1. Create wsdl
Instructions:
A. Non-standard webservice may only be accessible by PHP
B. Standard webservice must use wsdl (webservice description language, which uses XML syntax standards) Describe your service content, this is how I understand it)
Here I only introduce standard webservice.
So how to create wsdl? This is indeed not easy for PHP. Some people say that it is very convenient to create with zend studio. This is one method. But for those who don't like to use zend studio, they may find it too difficult to create a webservice and install zend studio. I just, hehe.
Here I will introduce a simple method. Download the SoapDiscovery.class.php class from the Internet. There is a public method in it: getWSDL. The end of this method is return. Then, you can modify this method. This is what I do. of:
//return sprintf('%s%s%s%s%s%s', $headerWSDL, $portTypeWSDL, $bindingWSDL, $serviceWSDL, $messageWSDL, '');
//Generate wsdl file, comment the return above
$fso = fopen($this->class_name . ".wsdl" , "w");
fwrite($fso, sprintf('% s%s%s%s%s%s', $headerWSDL, $portTypeWSDL, $bindingWSDL, $serviceWSDL, $messageWSDL, ''));
Now there is a class to generate wsdl, SoapDiscovery .class.php★.

I only need to prepare another class or function that provides services to create wsdl
For example, I have a class: person, the file name is: person.class.php★, and there are two methods in it, One is say and the other is run. Very simple.

Copy code The code is as follows:

class person
{
public function say()
{
return("i'm speaking.");
}
public function run()
{
return("i'm running,don' t disturb me please.");
}
}
?>

There are two classes here: SoapDiscovery.class.php and person.class.php .
Start formally generating wsdl:
Create the file server.php. Copy the following content into it and run it to generate a person.wsdl file
Copy the code The code is as follows:

php
include("person.class.php");
include("SoapDiscovery.class.php");

$disco = new SoapDiscovery('person','Person'); //The first parameter is the class name (the generated wsdl file is named after it), that is, the person class, and the second parameter is the name of the service (this can be written casually).
$disco->getWSDL();
?>

2. Create a webservice server program
Clear the contents of the server.php file and copy the following code into it :
Copy code The code is as follows:

include("person.class.php") ;
$objSoapServer = new SoapServer("person.wsdl");//person.wsdl is the wsdl file just created
//$objSoapServer = new SoapServer("server.php?wsdl");// This works too
$objSoapServer->setClass("person");//Register all methods of the person class
$objSoapServer->handle();//Process requests
?>

3. Create a webservice client program to test whether the webservice is valid. The file name is: client.php
Copy the following content into it
Copy code The code is as follows:

$client = new SoapClient("person.wsdl");
//$client = new SoapClient("server .php?wsdl");//This works too
echo($client->say());
echo "
";
echo($client-> run());
echo "
";
?>

OK, it’s over. Very simple, right?
If you want to use .NET, you just need to provide him with a URL.
How to get the URL: You can first search for
in the person.wsdl file. The URL here (the specific URL is based on your Directory determined) is what you want to provide to .NET developers. But don’t get too happy too early. You need to add: “?wsdl” after it, http://xxxxxxxxxxxxxxxxxxxx/server.php?wsdl. This is correct. If you don’t believe me, you can copy the url to the address bar of the browser and take a look. .
After a .NET developer gets the URL you gave him, he can add a service reference or web reference to his project, and then he can complete the relevant operations according to the prompts. This is very convenient for developers using .NET Simple.

Here I only introduce the standard webservice
1. Create WSDL
1. Download the SoapDiscovery.class.php class online
2. Modify the public method getWsdl() of SoapDiscovery.class.php to automatically generate a wsdl file (note the storage path). Here we just create a wsdl model
Copy code The code is as follows:

//return sprintf('%s%s%s%s%s%s', $headerWSDL, $portTypeWSDL, $bindingWSDL, $serviceWSDL, $messageWSDL, '< ;/definitions>');
//Generate wsdl file, annotate the above return
$fso = fopen($this->class_name . ".wsdl" , "w");
fwrite ($fso, sprintf('%s%s%s%s%s%s', $headerWSDL, $portTypeWSDL, $bindingWSDL, $serviceWSDL, $messageWSDL, ''));
exit ;

3. Classes or functions that provide services
Copy code The code is as follows:

//For example, I have a class: person, file name It is: person.class.php★, there are two methods in it, one is say and the other is run. Very simple.
class person
{
public function say()
{
return("i'm speaking.");
}
public function run()
{
return("i'm running,don't disturb me please.");
}
}
?>

4. Start formally generating wsdl:
Create the file server.php. Copy the following content into it and run it to generate a person.wsdl file
Copy the code The code is as follows:

php
include("person.class.php");
include("SoapDiscovery.class.php");
//The first parameter is the class name (the generated wsdl file is based on it Named), that is, person class, the second parameter is the name of the service (this can be written casually).
$disco = new SoapDiscovery('person','Person');
$disco->getWSDL();
?>

5. Create a webservice server program
Clear the contents of the server.php file and copy the following code into it:
Copy the code The code is as follows:

include("person.class.php");
$objSoapServer = new SoapServer("person.wsdl");//person.wsdl is the wsdl file just created
//$objSoapServer = new SoapServer("server.php?wsdl");//This works too
$objSoapServer->setClass("person");//Register all methods of the person class
$objSoapServer->handle();//Handle the request
?>

6. Create a webservice client program to test whether the webservice is valid. The file name is: client.php
Copy the code The code is as follows:

$client = new SoapClient("person.wsdl");
//$client = new SoapClient("server.php?wsdl");//This will also work
echo( $client->say());
echo "
";
echo($client->run());
echo "
" ;
?>

7. If you want to use .NET, you just need to provide a URL to it.
How to get the URL: You can first search for
in the person.wsdl file. The URL here (the specific URL is based on your Directory determined) is what you want to provide to .NET developers. But don’t get too happy too early. You need to add: “?wsdl” after it, http://xxxxxxxxxxxxxxxxxxxx/server.php?wsdl. This is correct. If you don’t believe me, you can copy the url to the address bar of the browser and take a look. .
After a .NET developer gets the URL you gave him, he can add a service reference or web reference to his project, and then he can complete the relevant operations according to the prompts. This is very convenient for developers using .NET Simple.

(1) Create a website, create a web reference, enter the url

(2) Strength call
Copy code The code is as follows:

protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack) {
sdaf.Solsoft_HelloWorld ddd = new sdaf.Solsoft_HelloWorld() ;
Label1.Text = ddd.say();
}
}

Test code http://xiazai.jb51.net/201112/yuanma/CreateSoap.rar

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/324674.htmlTechArticle1. Create wsdl instructions: A. Non-standard webservice may only be accessible by PHP B. Standard webservice , you must use wsdl (webservice description language, which uses XML syntax...
Statement
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

CS玩家的首选:推荐的电脑配置CS玩家的首选:推荐的电脑配置Jan 02, 2024 pm 04:26 PM

1.处理器在选择电脑配置时,处理器是至关重要的组件之一。对于玩CS这样的游戏来说,处理器的性能直接影响游戏的流畅度和反应速度。推荐选择IntelCorei5或i7系列的处理器,因为它们具有强大的多核处理能力和高频率,可以轻松应对CS的高要求。2.显卡显卡是游戏性能的重要因素之一。对于射击游戏如CS而言,显卡的性能直接影响游戏画面的清晰度和流畅度。建议选择NVIDIAGeForceGTX系列或AMDRadeonRX系列的显卡,它们具备出色的图形处理能力和高帧率输出,能够提供更好的游戏体验3.内存电

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

See all articles

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

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft