web-dev-qa-db-ja.com

SoapClientクラスを使用してPHP SOAP呼び出しを行う方法

私はPHPコードを書くのに慣れていますが、オブジェクト指向コーディングを使用することはあまりありません。私は今SOAP(クライアントとして)と対話する必要があり、構文を正しくすることができません。 SoapClientクラスを使用して新しい接続を正しく設定できるようにするためのWSDLファイルがあります。しかし、実際に正しい電話をかけてデータを返すことはできません。以下の(単純化された)データを送信する必要があります。

  • 連絡先ID
  • 連絡先
  • 概要

WSDL文書には2つの関数が定義されていますが、必要なものは1つだけです(以下の "FirstFunction")。利用可能な関数と型に関する情報を得るために私が実行したスクリプトは次のとおりです。

$client = new SoapClient("http://example.com/webservices?wsdl");
var_dump($client->__getFunctions()); 
var_dump($client->__getTypes()); 

そして、これが生成する出力です。

array(
  [0] => "FirstFunction Function1(FirstFunction $parameters)",
  [1] => "SecondFunction Function2(SecondFunction $parameters)",
);

array(
  [0] => struct Contact {
    id id;
    name name;
  }
  [1] => string "string description"
  [2] => string "int amount"
}

データを使ってFirstFunctionを呼び出したいとします。

  • 連絡先ID:100
  • 連絡先の名前:ジョン
  • 概要:オイルの樽
  • 金額:500

正しい構文は何ですか?私はあらゆる種類のオプションを試してきましたが、石鹸の構造は非常に柔軟なので、これを実行する方法は非常にたくさんあります。マニュアルからそれを理解することができませんでした...


アップデート1:MMKからサンプルを試してみました:

$client = new SoapClient("http://example.com/webservices?wsdl");

$params = array(
  "id" => 100,
  "name" => "John",
  "description" => "Barrel of Oil",
  "amount" => 500,
);
$response = $client->__soapCall("Function1", array($params));

しかし、私はこの応答を得ます:Object has no 'Contact' propertygetTypes()の出力に見られるように、structと呼ばれるContactがあります、それで私はどういうわけか私のパラメータがContactデータを含むことを明確にする必要があると思います、しかし問題はどうですか?

更新2:私もこれらの構造を試してみました、同じエラーです。

$params = array(
  array(
    "id" => 100,
    "name" => "John",
  ),
  "Barrel of Oil",
  500,
);

と同様:

$params = array(
  "Contact" => array(
    "id" => 100,
    "name" => "John",
  ),
  "description" => "Barrel of Oil",
  "amount" => 500,
);

どちらの場合もエラー:オブジェクトに 'Contact'プロパティがありません

113
user1305445

これはあなたがする必要があることです。

私は状況を再現しようとしました...


  • この例では、次のパラメータを期待してFunction1というWebMethodを持つ.NETサンプルWebService(WS)を作成しました。

機能1(連絡先連絡先、文字列の説明、int型の金額)

  • Contactはあなたの場合のようにidnameのゲッターとセッターを持った単なるモデルです。

  • .NETのサンプルWSは、次のサイトからダウンロードできます。

https://www.dropbox.com/jp/6pz1w94a52o5xah/11593623.Zip


コード。

これはPHP側でする必要があることです:

(テスト済みで動作中)

<?php
// Create Contact class
class Contact {
    public function __construct($id, $name) 
    {
        $this->id = $id;
        $this->name = $name;
    }
}

// Initialize WS with the WSDL
$client = new SoapClient("http://localhost:10139/Service1.asmx?wsdl");

// Create Contact obj
$contact = new Contact(100, "John");

// Set request params
$params = array(
  "Contact" => $contact,
  "description" => "Barrel of Oil",
  "amount" => 500,
);

// Invoke WS method (Function1) with the request params 
$response = $client->__soapCall("Function1", array($params));

// Print WS response
var_dump($response);

?>

全体をテストする.

  • あなたがprint_r($params)をするなら、あなたのWSが期待するように、あなたは次の出力を見るでしょう:

配列([連絡先] =>連絡先オブジェクト([id] => 100 [名前] => John)[説明] =>石油の樽[量] => 500)

  • .NETサンプルWSをデバッグしたところ、次のようになりました。

enter image description here

(ご覧のとおり、Contactオブジェクトはnullでも他のパラメータでもありません。つまり、要求はPHP sideから正常に行われたということです)

  • .NETサンプルWSからの応答は予想されたものであり、これはPHP sideで得られたものです。

object(stdClass)[3] public 'Function1Result' => string 'あなたの要求の詳細な情報! id:100、name:John、説明:石油の樽、量:500 '(長さ= 98)


ハッピーコーディング!

158
Oscar

この方法でSOAPサービスを使用することもできます。

<?php 
//Create the client object
$soapclient = new SoapClient('http://www.webservicex.net/globalweather.asmx?WSDL');

//Use the functions of the client, the params of the function are in 
//the associative array
$params = array('CountryName' => 'Spain', 'CityName' => 'Alicante');
$response = $soapclient->getWeather($params);

var_dump($response);

// Get the Cities By Country
$param = array('CountryName' => 'Spain');
$response = $soapclient->getCitiesByCountry($param);

var_dump($response);

これは実際のサービスの例です、そしてそれはうまくいきます。

お役に立てれば。

64
Salvador P.

最初にWebサービスを初期化します。

$client = new SoapClient("http://example.com/webservices?wsdl");

次にパラメータを設定して渡します。

$params = array (
    "arg0" => $contactid,
    "arg1" => $desc,
    "arg2" => $contactname
);

$response = $client->__soapCall('methodname', array($params));

メソッド名はWSDLでオペレーション名として利用可能であることに注意してください。例えば:

<operation name="methodname">
27
MMK

私のWebサービスがあなたと同じ構造を持っている理由はわかりませんが、パラメータとしてClassが必要ではなく、単に配列です。

例: - 私のWSDL:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
                  xmlns:ns="http://www.kiala.com/schemas/psws/1.0">
    <soapenv:Header/>
    <soapenv:Body>
        <ns:createOrder reference="260778">
            <identification>
                <sender>5390a7006cee11e0ae3e0800200c9a66</sender>
                <hash>831f8c1ad25e1dc89cf2d8f23d2af...fa85155f5c67627</hash>
                <originator>VITS-STAELENS</originator>
            </identification>
            <delivery>
                <from country="ES" node=””/>
                <to country="ES" node="0299"/>
            </delivery>
            <parcel>
                <description>Zoethout thee</description>
                <weight>0.100</weight>
                <orderNumber>10K24</orderNumber>
                <orderDate>2012-12-31</orderDate>
            </parcel>
            <receiver>
                <firstName>Gladys</firstName>
                <surname>Roldan de Moras</surname>
                <address>
                    <line1>Calle General Oraá 26</line1>
                    <line2>(4º izda)</line2>
                    <postalCode>28006</postalCode>
                    <city>Madrid</city>
                    <country>ES</country>
                </address>
                <email>[email protected]</email>
                <language>es</language>
            </receiver>
        </ns:createOrder>
    </soapenv:Body>
</soapenv:Envelope>

私はvar_dump:

var_dump($client->getFunctions());
var_dump($client->getTypes());

これが結果です。

array
  0 => string 'OrderConfirmation createOrder(OrderRequest $createOrder)' (length=56)

array
  0 => string 'struct OrderRequest {
 Identification identification;
 Delivery delivery;
 Parcel parcel;
 Receiver receiver;
 string reference;
}' (length=130)
  1 => string 'struct Identification {
 string sender;
 string hash;
 string originator;
}' (length=75)
  2 => string 'struct Delivery {
 Node from;
 Node to;
}' (length=41)
  3 => string 'struct Node {
 string country;
 string node;
}' (length=46)
  4 => string 'struct Parcel {
 string description;
 decimal weight;
 string orderNumber;
 date orderDate;
}' (length=93)
  5 => string 'struct Receiver {
 string firstName;
 string surname;
 Address address;
 string email;
 string language;
}' (length=106)
  6 => string 'struct Address {
 string line1;
 string line2;
 string postalCode;
 string city;
 string country;
}' (length=99)
  7 => string 'struct OrderConfirmation {
 string trackingNumber;
 string reference;
}' (length=71)
  8 => string 'struct OrderServiceException {
 string code;
 OrderServiceException faultInfo;
 string message;
}' (length=97)

だから私のコードでは:

    $client  = new SoapClient('http://packandship-ws.kiala.com/psws/order?wsdl');

    $params = array(
        'reference' => $orderId,
        'identification' => array(
            'sender' => param('kiala', 'sender_id'),
            'hash' => hash('sha512', $orderId . param('kiala', 'sender_id') . param('kiala', 'password')),
            'originator' => null,
        ),
        'delivery' => array(
            'from' => array(
                'country' => 'es',
                'node' => '',
            ),
            'to' => array(
                'country' => 'es',
                'node' => '0299'
            ),
        ),
        'parcel' => array(
            'description' => 'Description',
            'weight' => 0.200,
            'orderNumber' => $orderId,
            'orderDate' => date('Y-m-d')
        ),
        'receiver' => array(
            'firstName' => 'Customer First Name',
            'surname' => 'Customer Sur Name',
            'address' => array(
                'line1' => 'Line 1 Adress',
                'line2' => 'Line 2 Adress',
                'postalCode' => 28006,
                'city' => 'Madrid',
                'country' => 'es',
                ),
            'email' => '[email protected]',
            'language' => 'es'
        )
    );
    $result = $client->createOrder($params);
    var_dump($result);

しかし、それは成功しました!

21
Tín Phạm

まず、 SoapUI を使用して、wsdlからsoapプロジェクトを作成します。 wsdlの操作で遊ぶためのリクエストを送信してみてください。 xmlリクエストがデータフィールドをどのように構成しているかを観察します。

それで、あなたがSoapClientが望むように振る舞うのに問題があるのなら、ここで私はそれをデバッグする方法です。関数__ getLastRequest()が使用可能になるように、オプションtraceを設定します。

$soapClient = new SoapClient('http://yourwdsdlurl.com?wsdl', ['trace' => true]);
$params = ['user' => 'Hey', 'account' => '12345'];
$response = $soapClient->__soapCall('<operation>', $params);
$xml = $soapClient->__getLastRequest();

それから、$ xml変数は、SoapClientがあなたの要求のために構成するxmlを含みます。このxmlをSoapUIで生成されたものと比較します。

私にとっては、SoapClientは連想配列$ paramsのキーを無視し、それをインデックス付き配列として解釈し、xmlに誤ったパラメータデータを生成するようです。つまり、$ paramsのデータを並べ替えると、$ responseはまったく異なります。

$params = ['account' => '12345', 'user' => 'Hey'];
$response = $soapClient->__soapCall('<operation>', $params);
3
Sang Nguyen

SoapParamのオブジェクトを作成したら、これで問題は解決します。クラスを作成し、それをWebServiceで指定されたオブジェクトタイプにマップします。値を初期化して要求を送信します。以下のサンプルを参照してください。

struct Contact {

    function Contact ($pid, $pname)
    {
      id = $pid;
      name = $pname;
  }
}

$struct = new Contact(100,"John");

$soapstruct = new SoapVar($struct, SOAP_ENC_OBJECT, "Contact","http://soapinterop.org/xsd");

$ContactParam = new SoapParam($soapstruct, "Contact")

$response = $client->Function1($ContactParam);
2
Umesh Chavan

これを読む;-

http://php.net/manual/en/soapclient.call.php

または

これはSOAP関数 "__call"の良い例です。しかしそれは非推奨です。

<?php
    $wsdl = "http://webservices.tekever.eu/ctt/?wsdl";
    $int_zona = 5;
    $int_peso = 1001;
    $cliente = new SoapClient($wsdl);
    print "<p>Envio Internacional: ";
    $vem = $cliente->__call('CustoEMSInternacional',array($int_zona, $int_peso));
    print $vem;
    print "</p>";
?>
1
Abid Hussain

クラスを宣言する必要があります契約

class Contract {
  public $id;
  public $name;
}

$contract = new Contract();
$contract->id = 100;
$contract->name = "John";

$params = array(
  "Contact" => $contract,
  "description" => "Barrel of Oil",
  "amount" => 500,
);

または

$params = array(
  $contract,
  "description" => "Barrel of Oil",
  "amount" => 500,
);

それから

$response = $client->__soapCall("Function1", array("FirstFunction" => $params));

または

$response = $client->__soapCall("Function1", $params);
0

getLastRequest():

このメソッドは、トレースオプションをTRUEに設定してSoapClientオブジェクトが作成された場合にのみ機能します。

この場合のTRUEは1で表されます

$wsdl = storage_path('app/mywsdl.wsdl');
try{

  $options = array(
               // 'soap_version'=>SOAP_1_1,
               'trace'=>1,
               'exceptions'=>1,

                'cache_wsdl'=>WSDL_CACHE_NONE,
             //   'stream_context' => stream_context_create($arrContextOptions)
        );
           // $client = new \SoapClient($wsdl, array('cache_wsdl' => WSDL_CACHE_NONE) );
        $client = new \SoapClient($wsdl, array('cache_wsdl' => WSDL_CACHE_NONE));
        $client     = new \SoapClient($wsdl,$options); 

私のために働いた。

0
CollinsKe

WsdlInterpreterクラスでphp5オブジェクトを生成するオプションがあります。こちらを参照してください。 https://github.com/gkwelding/WSDLInterpreter

例えば:

require_once 'WSDLInterpreter-v1.0.0/WSDLInterpreter.php';
$wsdlLocation = '<your wsdl url>?wsdl';
$wsdlInterpreter = new WSDLInterpreter($wsdlLocation);
$wsdlInterpreter->savePHP('.');
0

多次元配列が必要です。次のことを試すことができます。

$params = array(
   array(
      "id" => 100,
      "name" => "John",
   ),
   "Barrel of Oil",
   500
);

PHPでは、配列は構造体で非常に柔軟です。通常、SOAP呼び出しではXMLラッパーを使用します。

編集:

あなたが試してみたいのは、送信するためのJSONクエリを作成するか、このページにあるものに従ってxmlの購入の種類を作成するためにそれを使用しています: -converting-rss-to-json.html

0
James Williams

私は同じ問題を抱えていました、しかし、私はこのように議論を包みました、そしてそれは今うまくいきます。

    $args = array();
    $args['Header'] = array(
        'CustomerCode' => 'dsadsad',
        'Language' => 'fdsfasdf'
    );
    $args['RequestObject'] = $whatever;

    // this was the catch, double array with "Request"
    $response = $this->client->__soapCall($name, array(array( 'Request' => $args )));

この関数を使う:

 print_r($this->client->__getLastRequest());

Request XMLは、引数によって変わるかどうかにかかわらず見ることができます。

SoapClientオプションで[trace = 1、exceptions = 0]を使用してください。

0
Martin Zvarík