1

Uncaught SoapFault 例外でエラーが発生しています: [HTTP] Not Found

ここに私のコードがあります

$client = new SOAPClient ( 'http://torcache.net/torcache.wsdl');
$infoHash = $client->cacheTorrent(base64_encode(file_get_contents('my.torrent')));

ここにWSDLがあります

<?xml version='1.0' encoding='UTF-8' ?>
<definitions name='Cache'
  targetNamespace='urn:Torcache'
  xmlns:tns='urn:Torcache'
  xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
  xmlns:xsd='http://www.w3.org/2001/XMLSchema'
  xmlns:soapenc='http://schemas.xmlsoap.org/soap/encoding/'
  xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'
  xmlns='http://schemas.xmlsoap.org/wsdl/'>

<message name='cacheTorrentRequest'>
  <part name='torrent' type='xsd:string'/>
</message>

<message name='cacheTorrentResponse'>
  <part name='Result' type='xsd:string'/>
</message>

<portType name='CachePortType'>
  <operation name='cacheTorrent'>
    <input message='tns:cacheTorrentRequest'/>
    <output message='tns:cacheTorrentResponse'/>
  </operation>
</portType>

<binding name='CacheBinding' type='tns:CachePortType'>
  <soap:binding style='rpc'
    transport='http://schemas.xmlsoap.org/soap/http'/>

  <operation name='cacheTorrent'>
    <soap:operation soapAction='urn:xmethods-delayed-quotes#cacheTorrent'/>
    <input>
      <soap:body use='encoded' namespace='urn:xmethods-delayed-quotes'
        encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
    </input>
    <output>
      <soap:body use='encoded' namespace='urn:xmethods-delayed-quotes'
        encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
    </output>
  </operation>
</binding>

<service name='CacheService'>
  <port name='CachePort' binding='CacheBinding'>
    <soap:address location='http://torcache.net/api/soap/'/>
  </port>
</service>
</definitions>

私のサーバー統計

PHP バージョン 5.3.15

このエラーが発生する理由は何ですか? API ページhttps://torcache.net/apiからこのサンプル スクリプトを取得しました 。

4

1 に答える 1

0

リモート Wsdl を php の soapclient でロードしたことがありません。テストするには、wsdl をローカル ファイルにダウンロードして、URL の代わりにルート '/' からの絶対ファイル パスを使用してみてください。私の予想どおり、問題なく動作する場合は、少なくとも自分のせいではなく、ライブラリのバグであることを確認してください。私は、php 開発者の世界で誰も SOAP を気にかけているとは思いませんし、誰もこの問題に取り組んでいません。それとも、明らかな何かが欠けているだけかもしれません....

PHP 5.3 の非推奨の警告が気にならない場合は、古い nusoap ライブラリのコピーを見つけて使用することができます。これは、リモート wsdls を問題なくロードします。

于 2012-09-25T02:52:51.707 に答える