0

私は今、大きな問題を抱えています。独自の Web サービスを作成する必要がありますが、どうすればよいかわかりません。誰か助けてもらえますか?

WSDL/SOAP コードを作成する簡単な方法へのリンクでしょうか? NuSoap を試してみましたが、このコードを最終的に取得できません。助けてください。:)

4

1 に答える 1

1

SOAP Web サービスの非常に基本的な例:

サーバー部分 ( server.php ):

<?php
function getRot13($pInput) {
    $rot = str_rot13($pInput);
    return($rot);
}

function getMirror($pInput) {
    $mirror = strrev($pInput);
    return $mirror;
}

ini_set("soap.wsdl_cache_enabled", "0");

$server = new SoapServer('scramble.wsdl');

$server->addFunction("getRot13");
$server->addFunction("getMirror");

$server->handle();

クライアント部分 ( client.php ):

<?php
// turn off the WSDL cache
ini_set("soap.wsdl_cache_enabled", "0");

$client = new SoapClient("http://localhost/test/scramble.wsdl");

$origtext = "mississipi";

print("The original text : $origtext\n");

$mirror = $client->getMirror($origtext);
print("The mirrored text : $mirror\n");

$scramble = $client->getRot13($mirror);
print("The scrambled text : $scramble\n");

そして最後に WSDL ファイル ( scramble.wsdl ):

<?xml version ='1.0' encoding ='UTF-8' ?>
<definitions name='Scramble' 
  targetNamespace='http://localhost/test/scramble.wdsl' 
  xmlns:tns='http://localhost/test/scramble.wdsl' 
  xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' 
  xmlns='http://schemas.xmlsoap.org/wsdl/'> 

<message name='getRot13Request'> 
  <part name='symbol' type='xsd:string'/> 
</message> 
<message name='getRot13Response'> 
  <part name='Result' type='xsd:string'/> 
</message> 
<message name='getMirrorRequest'> 
  <part name='symbol' type='xsd:string'/> 
</message> 
<message name='getMirrorResponse'> 
  <part name='Result' type='xsd:string'/> 
</message> 

<portType name='ScramblePortType'> 
  <operation name='getRot13'>
    <input message='tns:getRot13Request'/> 
    <output message='tns:getRot13Response'/>   
  </operation>
  <operation name='getMirror'>
    <input message='tns:getMirrorRequest'/> 
    <output message='tns:getMirrorResponse'/>   
  </operation>    
</portType> 

<binding name='ScrambleBinding' type='tns:ScramblePortType'> 
  <soap:binding style='rpc' 
    transport='http://schemas.xmlsoap.org/soap/http'/> 
  <operation name='getRot13'> 
    <soap:operation soapAction='urn:localhost-scramble#getRot13'/> 
    <input> 
      <soap:body use='encoded' namespace='urn:localhost-scramble' 
        encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/> 
    </input> 
    <output> 
      <soap:body use='encoded' namespace='urn:localhost-scramble' 
        encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/> 
    </output> 
  </operation>
  <operation name='getMirror'> 
    <soap:operation soapAction='urn:localhost-scramble#getMirror'/> 
    <input> 
      <soap:body use='encoded' namespace='urn:localhost-scramble' 
        encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/> 
    </input> 
    <output> 
      <soap:body use='encoded' namespace='urn:localhost-scramble' 
        encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/> 
    </output> 
  </operation>       
</binding> 

<service name='ScrambleService'> 
  <port name='ScramblePort' binding='ScrambleBinding'> 
    <soap:address location='http://localhost/test/server.php'/> 
  </port> 
</service>
</definitions>

この例では、これらの 3 つのファイルをhttp://localhost/testからアクセスできるディレクトリに配置し、別の場所を使用する場合は正しい URL を見つけて置き換えることを前提としています。

また、SOAP PHP 拡張機能をインストールする必要があります。幸運を!

于 2010-09-29T17:50:33.833 に答える