Maison php教程 PHP源码 soap 应用

soap 应用

May 25, 2016 pm 05:03 PM

php SOAP例子(web servers)
2010-06-23 14:08:24| 分类: php笔记 |字号 订阅
php 先要开启 php_soap模块
一。
方法1
服务器端 文件叫 server.php

<?php
$soap = new SoapServer(null,array(&#39;uri&#39;=>"http://10.10.10.24/"));//输入本台服务器的ip地址
$soap->addFunction(&#39;say&#39;); //添加输出函数
$soap->addFunction(SOAP_FUNCTIONS_ALL); //不要忘了这个
$soap->handle(); //注意
function say($sth){
 return $sth;
}
?>
Copier après la connexion

客户端 输出的是 hello world

<?php
try {
 $client = new SoapClient(null,
 array(&#39;location&#39; =>"http://10.10.10.24/server.php",&#39;uri&#39; =>"http://10.10.10.24/")
);
 echo $client->say("hello world");
} catch (SoapFault $fault){
 echo"Error:",$fault->faultcode,", string:",$fault->faultstring;
}
?>
Copier après la connexion

二。
服务器端文件server.php:

<?php
$classmap = array();
//注意和实例一 的不同
$soap = new SoapServer(null,array(&#39;uri&#39;=>"http://10.10.10.24/","classmap"=> $classmap));
$soap->setClass(&#39;Myclass&#39;);
$soap->handle();
class Myclass {
 function say($someword){
 return $someword;
}
}
?>
Copier après la connexion

客 户端 输出的是 xyz world

<?
try {
 $client = new SoapClient(null,
 array(&#39;location&#39; =>"http://10.10.10.24/server.php",&#39;uri&#39; =>"http://10.10.10.24/")
);
var_dump($client);
 echo $client->say("xyz world");
} catch (SoapFault $fault){
 echo"Error:",$fault->faultcode,", string:",$fault->faultstring;
}
Copier après la connexion
<?php

try{
 //wsdl方式调用web service
//wsdl方式中由于wsdl文件写定了,如果发生添加删除函数等操作改动,不会反应到wsdl,相对non-wsdl方式
//来说不够灵活
 //$soap = new SoapClient("http://localhost/Test/MyService/PersonInfo.wsdl");

 //non-wsdl方式调用web service 
 //在non-wsdl方式中option location系必须提供的,而服务端的location是选择性的,可以不提供
 // $soap = new SoapClient(null,array(&#39;location&#39;=>"http://localhost/webserver/soapserver.php",&#39;uri&#39;=>&#39;http://127.0.0.1/&#39;));
 $soap = new SoapClient(null,array(&#39;location&#39;=>"http://localhost/webserver/soapserver.php",&#39;uri&#39;=>&#39;test&#39;));
//两种调用方式,直接调用方法,和用__soapCall简接调用
 $result1 = $soap->getName();
 $result2 = $soap->__soapCall("getName",array());
 echo $result1."<br/>";
 echo $result2;

}catch(SoapFault $e){
 echo $e->getMessage();
}catch(Exception $e){
 echo $e->getMessage();
}





?>
Copier après la connexion
<?php
Class PersonInfo
{
/**
 * 返回姓名
 * @return string 
*
*/
 public function getName(){
 return"My Name is Chance";
}
}


 //wsdl方式提供web service,如果生成了wsdl文件则可直接传递到//SoapServer的构造函数中
 //$s = new SoapServer(&#39;PersonInfo.wsdl&#39;);

 //doesn&#39;t work 只有location不能提供web service
 //output:looks like we got no XML document
 //$s = new SoapServer(null,array(""=>"http://localhost/Test/MyService/Server.php"));

//下面两种方式均可以工作,只要指定了相应的uri
 //$s = new SoapServer(null,array("uri"=>"http://127.0.0.1/"));
 $s = new SoapServer(null,array("uri"=>"test"));
 $s -> setClass("PersonInfo");

 $s -> handle();




?>
Copier après la connexion
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn

Outils d'IA chauds

Undresser.AI Undress

Undresser.AI Undress

Application basée sur l'IA pour créer des photos de nu réalistes

AI Clothes Remover

AI Clothes Remover

Outil d'IA en ligne pour supprimer les vêtements des photos.

Undress AI Tool

Undress AI Tool

Images de déshabillage gratuites

Clothoff.io

Clothoff.io

Dissolvant de vêtements AI

AI Hentai Generator

AI Hentai Generator

Générez AI Hentai gratuitement.

Article chaud

R.E.P.O. Crystals d'énergie expliqués et ce qu'ils font (cristal jaune)
2 Il y a quelques semaines By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Meilleurs paramètres graphiques
2 Il y a quelques semaines By 尊渡假赌尊渡假赌尊渡假赌

Outils chauds

Bloc-notes++7.3.1

Bloc-notes++7.3.1

Éditeur de code facile à utiliser et gratuit

SublimeText3 version chinoise

SublimeText3 version chinoise

Version chinoise, très simple à utiliser

Envoyer Studio 13.0.1

Envoyer Studio 13.0.1

Puissant environnement de développement intégré PHP

Dreamweaver CS6

Dreamweaver CS6

Outils de développement Web visuel

SublimeText3 version Mac

SublimeText3 version Mac

Logiciel d'édition de code au niveau de Dieu (SublimeText3)