3

これが私のコードです

  $client = new SOAPClient ( 'http://torcache.net/torcache.wsdl');
    var_dump($client->cacheTorrent());

私はこれを後var_dumpに手に入れました$client

object(SoapClient)#1 (2) { ["_soap_version"]=> int(1) ["sdl"]=> resource(1) of type (Unknown) }

ただし、var_dump($ client-> cacheTorrent());を見つけようとすると、このメッセージが表示されます。キャッチされないSoapFault例外:[HTTP]が見つかりません

しかし、wdslファイルをダウンロードしたので、これは私には意味がありません。それは、操作cacheTorrentが存在することをはっきりと示しています。

ここ

<?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>

なぜこのエラーが発生するのかについてのアイデアはありますか?

4

1 に答える 1

0

クライアントコードに問題はありません....私はあなたが実行します

$client = new SOAPClient ( 'http://torcache.net/torcache.wsdl');
var_dump($client->__getFunctions());

あなたは得るだろう

array
  0 => string 'string cacheTorrent(string $torrent)' (length=36)

どうやらcacheTorrent、有効なトレントである必要があるURLを期待しているようです..そのURLを検証またはアクセスしようとしたときに、soapサーバーでエラーが生成されたことを確認してください

于 2012-09-24T08:33:02.970 に答える