Home Backend Development PHP Tutorial webservice——nusoap detailed explanation

webservice——nusoap detailed explanation

Jul 30, 2016 pm 01:30 PM
client gt nbsp quot

PHP SOAP Server

It is very easy to set up a SOAP server with PHP and NuSoap. Basically, you just write the functions you want to expose to your Web services and register them with NuSoap. OK, there are two more steps required to complete the establishment of the PHP SOAP server. First, you have to create an instance of the NuSoap object in your PHP code, and then use the HTTP POST method to pass the original data to NuSoap for processing. The use of NuSOAP is relatively simple, and the most commonly used classes are soap_server and soapclient. ,

Among them soap_server is used to create Webservice services, and class soapclient is used to call Webservice

. The definitions of these two classes are in lib/nusoap.php, so we need to reference this when creating or calling the Webservice interface program File. NuSoap is a WebService programming tool in the PHP environment, used to create or call WebService. It is an open source software, which is a series of PHP classes written entirely in PHP language that sends and receives SOAP messages through HTTP. It is developed by NuSphere Corporation (http://dietrich.ganx4.com/nusoap/). One advantage of NuSOAP is that it does not require extension library support. This feature allows NuSoap to be used in all PHP environments and is not affected by server security settings. ​

1.

First, go to http://sourceforge.net/projects/nusoap/download nusoap.zip. 2.Server: Create the
nusoapService.php
file.

[php] view plaincopy

  1. require_once ("lib/nusoap.php");
  2. $server = new soap_server () ;
  3. //Avoid garbled characters
  4. $server->soap_defencoding = 'UTF-8';
  5. $server-> ;decode_utf8 = false;
  6. $server->xml_encoding = 'UTF-8'; ->configureWSDL (
  7. 'test'
  8. ); //Open wsdl support /*
  9. Register programs that need to be accessed by the client
  10. Type corresponding value: bool->" xsd:boolean" string->"xsd:string"
  11. int->"xsd:int" float->"xsd:float"
  12. */
  13. $server->register (
  14. 'GetTestStr'
  15. , //Method name array (
  16. "name"
  17. => "xsd:string" ), // Parameters, the default is "xsd:string" array (
  18. "return"
  19. => "xsd:string " ) ); //Return value, default is "xsd:string" //isset Check whether the variable is set
  20. $HTTP_RA W_POST_DATA = isset (
  21. $HTTP_RAW_POST_DATA
  22. ) ? $HTTP_RAW_POST_DATA : ''; //service Process the data input by the client
  23. $server- >service (
  24. $HTTP_RAW_POST_DATA
  25. ); /**
  26. * Method for calling
  27. * @param $name
  28. */
  29. functionGetTestStr(
  30. $name
  31. ) { Resurn "Hello, {$ name}!"
  32. ;
  33. } ? & Gt;
  34. 3.
Client :Create the
nusoapClient.php
file.

[php] view plaincopy

  1. require_once ("lib/nusoap.php");
  2. /*
  3. Call WebService through WSDL
  4. Parameter 1 The address of the WSDL file (the wsdl after the question mark cannot be capitalized)
  5. Parameter 2 Specifies whether to use WSDL
  6. $client = new soapclient('http ://localhost /nusoapService.php?wsdl',true);
  7. */
  8. $client = new soapclient ( 'http://localhost/nusoapService. php' ); ->decode_utf8 = false;
  9. $client->xml_encoding='UTF-8';
  10. $paras = array (
  11. 'name' => 'Bruce Lee');
  12. $result = $client->call (
  13. 'GetTestStr', $paras); //Check for errors and get the return value
  14. if (! $err =
  15. $client->getError ()) { echo" Return results: " , $result;
  16. } else {
  17. echo" Call error : ", $err;
  18. } ?>
  19. [php] view plaincopy
    1. require_once ("lib/nusoap.php");
    2. /*
    3. Call WebService through WSDL
    4. Parameter 1 The address of the WSDL file (wsdl after the question mark cannot be capitalized)
    5. Parameter 2 Specifies whether to use WSDL
    6. $client = new soap client('http://localhost /nusoapService.php?wsdl',true);
    7. */
    8. $client = new soapclient ( 'http://localhost/nusoapService. php?wsdl',true); $client->decode_utf8 = false;
    9. $ paras = array (
    10. 'name' => Omit the following parameters
    11. $client->call ('GetTestStr', $paras
    12. ); $document
    13. = $client- >document; echo $document; Note:
    14. Return result: Hello, { Bruce Lee } ! WSDLWSDL is an XML language used to describe Web Services. It is a machine-readable format that provides all the information necessary to access the service to the Web Service client. NuSOAP specifically provides a class to parse WDSL files and extract information from them. The soapclient object uses the wsdl class to make it easier for developers to call services. By creating the message with the help of WSDL information, the programmer only needs to know the name and parameters of the operation to call it.
    15. Using WSDL through NuSOAP provides the following advantages:
    16. All service metafiles, such as namespaces, endpoint URLs, parameter names, etc., can be obtained directly from the WSDL file, thus allowing client dynamics to adapt to server-side changes. Because this data is always available from the server, this data no longer needs to be hard-coded in user scripts. It allows us to use soap_proxy class. This class is derived from the soapclient class and adds methods corresponding to the operations detailed in the WDSL file. Now users can directly call these methods through it. The soapclient class contains a getProxy() method which returns an object of the soap_proxy class. The soap_proxy class is derived from the soapclient class, adds methods corresponding to the operations defined in the WSDL document, and allows the user to call an endpoint's remote method. This only applies if the soapclient object is initialized with a WDSL file. The advantage is ease of use for users, the disadvantage is performance - creating objects in PHP is time consuming - and does not serve a utilitarian purpose (and this functionality serves no utilitarian purpose).
    17. [php] view plaincopy
      1. require_once ("lib/nusoap.php");
      2. $client = new soapclient ( 'http://localhost/nusoapService.php?wsdl',true);
      3. $client->decode_utf8 = false; $client->
      4. //Generate proxy class
      5. $proxy = $client->getProxy();
      6. //Call remote function
      7. $sq
      8. = $proxy->GetTestStr('Bruce Lee'); ->getError()) {
      9. print_r($sq);
      10. } else { : $err"; }
      11. print 'REQUEST:<xmp>'.$p->request.'</xmp>'
      12. ; print 'RESPONSE: <xmp>'
      13. .
      14. str_replace('><'
      15. ,
      16. ">n<", $p
      17. -> response ).
      18. ' </xmp>'
      19. ;
      20. ?> lfile Click on the method name. In this way, by adding a few lines of code to the service, we provide a visual document for the service using NuSOAP. But that's not all we can do.
      21. We add some WSDL calls to the service by using NuSOAP. We can generate WSDL and some other documents for the service. In contrast, there is not much we can do in the client, at least in our simple example. The client shown below is no different from the client that does not use WSDL. The only difference is that parsing the soapclent class is done by providing the URL of the WSDL instead of the service endpoint as before. Solution to garbled code when NuSoap calls WebService: [php] view plaincopy$client
      22. ->soap_defencoding =
      23. 'utf-8'
      24. ; code_utf8 = false;


$client->xml_encoding =

'utf-8'; Otherwise, an error similar to the following will be reported when calling :

XML error parsing SOAP payload on line

Implement WebService, Do not enable the SOAP

extension of php,

The reason is that the SoapClient class of nusoap conflicts with the built-in SOAP class of php5.

webservice——nusoap detailed explanationSolution

1. Modify php.ini not to load the built-in soap extension of php5 (php_soap.dll under windows).

2. Some people also renamed the SoapClient class of nusoap.

Identity authentication
  1. [php] view plaincopy
    1. header('content-type: text/xml; charset=UTF-8');  
    2. require_once('nusoap.php');  
    3. $params = array('AuthenticationHeader' => array(  
    4.     'Content-Type' => 'text/xml; charset=UTF-8',  
    5.     'SOAPAction' => 'YourFunstion',  
    6. )  
    7. );  
    8. $client = new nusoap_client('http://www.yourdomain.com/service.asmx?wsdl', true, '''''''');  
    9. $client->setHeaders('    
    10. "http://tempuri.org/webservice">  
  2.   username   
  3.   password     
  4.    
  5. ');  
  6. $err = $client->getError();  
  7. if ($err) {  
  8.     echo '

    Constructor error

    '</span><span> . </span><span>$err</span><span> . </span><span>'
    '
    ;  
  9. }  
  10. $result = $client->call('YourFunction'$params'''', false, true);  
  11. if ($client->fault) {  
  12.     echo '

    Fault

    '</span><span>;  </span></span></li>
    <li><span>    print_r(<span>$result</span><span>);  </span></span></li>
    <li><span>    <span>echo</span><span> </span><span>'
    '
    ;  
  13. else {  
  14.     $err = $client->getError();  
  15.     if ($err) {  
  16.         echo '

    Error

    '</span><span> . </span><span>$err</span><span> . </span><span>'
    '
    ;  
  17.     } else {  
  18.         echo '

    Result

    '</span><span>;  </span></span></li>
    <li><span><span>//print_r($result);</span><span>  </span></span></li>
    <li><span>        <span>echo</span><span> </span><span>'
    '
    ;  
  19.     }  
  20. }
  21. echo'

    Request

    '</span><span> . htmlspecialchars(</span><span>$client</span><span>->request, ENT_QUOT ES) .</span><span>'</ pre>'</span><span>; </span></span>->response, ENT_QUOTES) . </li>
    <li>'
    '; ?> The above introduces the detailed explanation of webservice-nusoap, including aspects of it. I hope it will be helpful to friends who are interested in PHP tutorials.
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)

Solution: Your organization requires you to change your PIN Solution: Your organization requires you to change your PIN Oct 04, 2023 pm 05:45 PM

The message "Your organization has asked you to change your PIN" will appear on the login screen. This happens when the PIN expiration limit is reached on a computer using organization-based account settings, where they have control over personal devices. However, if you set up Windows using a personal account, the error message should ideally not appear. Although this is not always the case. Most users who encounter errors report using their personal accounts. Why does my organization ask me to change my PIN on Windows 11? It's possible that your account is associated with an organization, and your primary approach should be to verify this. Contacting your domain administrator can help! Additionally, misconfigured local policy settings or incorrect registry keys can cause errors. Right now

How to adjust window border settings on Windows 11: Change color and size How to adjust window border settings on Windows 11: Change color and size Sep 22, 2023 am 11:37 AM

Windows 11 brings fresh and elegant design to the forefront; the modern interface allows you to personalize and change the finest details, such as window borders. In this guide, we'll discuss step-by-step instructions to help you create an environment that reflects your style in the Windows operating system. How to change window border settings? Press + to open the Settings app. WindowsI go to Personalization and click Color Settings. Color Change Window Borders Settings Window 11" Width="643" Height="500" > Find the Show accent color on title bar and window borders option, and toggle the switch next to it. To display accent colors on the Start menu and taskbar To display the theme color on the Start menu and taskbar, turn on Show theme on the Start menu and taskbar

How to change title bar color on Windows 11? How to change title bar color on Windows 11? Sep 14, 2023 pm 03:33 PM

By default, the title bar color on Windows 11 depends on the dark/light theme you choose. However, you can change it to any color you want. In this guide, we'll discuss step-by-step instructions for three ways to change it and personalize your desktop experience to make it visually appealing. Is it possible to change the title bar color of active and inactive windows? Yes, you can change the title bar color of active windows using the Settings app, or you can change the title bar color of inactive windows using Registry Editor. To learn these steps, go to the next section. How to change title bar color in Windows 11? 1. Using the Settings app press + to open the settings window. WindowsI go to "Personalization" and then

OOBELANGUAGE Error Problems in Windows 11/10 Repair OOBELANGUAGE Error Problems in Windows 11/10 Repair Jul 16, 2023 pm 03:29 PM

Do you see "A problem occurred" along with the "OOBELANGUAGE" statement on the Windows Installer page? The installation of Windows sometimes stops due to such errors. OOBE means out-of-the-box experience. As the error message indicates, this is an issue related to OOBE language selection. There is nothing to worry about, you can solve this problem with nifty registry editing from the OOBE screen itself. Quick Fix – 1. Click the “Retry” button at the bottom of the OOBE app. This will continue the process without further hiccups. 2. Use the power button to force shut down the system. After the system restarts, OOBE should continue. 3. Disconnect the system from the Internet. Complete all aspects of OOBE in offline mode

How to enable or disable taskbar thumbnail previews on Windows 11 How to enable or disable taskbar thumbnail previews on Windows 11 Sep 15, 2023 pm 03:57 PM

Taskbar thumbnails can be fun, but they can also be distracting or annoying. Considering how often you hover over this area, you may have inadvertently closed important windows a few times. Another disadvantage is that it uses more system resources, so if you've been looking for a way to be more resource efficient, we'll show you how to disable it. However, if your hardware specs can handle it and you like the preview, you can enable it. How to enable taskbar thumbnail preview in Windows 11? 1. Using the Settings app tap the key and click Settings. Windows click System and select About. Click Advanced system settings. Navigate to the Advanced tab and select Settings under Performance. Select "Visual Effects"

What are the differences between Huawei GT3 Pro and GT4? What are the differences between Huawei GT3 Pro and GT4? Dec 29, 2023 pm 02:27 PM

Many users will choose the Huawei brand when choosing smart watches. Among them, Huawei GT3pro and GT4 are very popular choices. Many users are curious about the difference between Huawei GT3pro and GT4. Let’s introduce the two to you. . What are the differences between Huawei GT3pro and GT4? 1. Appearance GT4: 46mm and 41mm, the material is glass mirror + stainless steel body + high-resolution fiber back shell. GT3pro: 46.6mm and 42.9mm, the material is sapphire glass + titanium body/ceramic body + ceramic back shell 2. Healthy GT4: Using the latest Huawei Truseen5.5+ algorithm, the results will be more accurate. GT3pro: Added ECG electrocardiogram and blood vessel and safety

Display scaling guide on Windows 11 Display scaling guide on Windows 11 Sep 19, 2023 pm 06:45 PM

We all have different preferences when it comes to display scaling on Windows 11. Some people like big icons, some like small icons. However, we all agree that having the right scaling is important. Poor font scaling or over-scaling of images can be a real productivity killer when working, so you need to know how to customize it to get the most out of your system's capabilities. Advantages of Custom Zoom: This is a useful feature for people who have difficulty reading text on the screen. It helps you see more on the screen at one time. You can create custom extension profiles that apply only to certain monitors and applications. Can help improve the performance of low-end hardware. It gives you more control over what's on your screen. How to use Windows 11

10 Ways to Adjust Brightness on Windows 11 10 Ways to Adjust Brightness on Windows 11 Dec 18, 2023 pm 02:21 PM

Screen brightness is an integral part of using modern computing devices, especially when you look at the screen for long periods of time. It helps you reduce eye strain, improve legibility, and view content easily and efficiently. However, depending on your settings, it can sometimes be difficult to manage brightness, especially on Windows 11 with the new UI changes. If you're having trouble adjusting brightness, here are all the ways to manage brightness on Windows 11. How to Change Brightness on Windows 11 [10 Ways Explained] Single monitor users can use the following methods to adjust brightness on Windows 11. This includes desktop systems using a single monitor as well as laptops. let's start. Method 1: Use the Action Center The Action Center is accessible

See all articles