php.netのSOAPマニュアルはあまり親切ではないので、良い例は見つけられませんでした。CURL付きPHPでのSOAPリクエスト
このようにPHP SOAPリクエストを作成するにはどうすればよいですか?
POST /MySERVER/myWSDLservice.asmx HTTP/1.1
Host: connection.mywebsite.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://connection.mywebsite.com/MySERVER/GetCarType"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetCarType xmlns="http://connection.mywebsite.com/MySERVER/">
<IDNumber>string</IDNumber>
</GetCarType>
</soap:Body>
</soap:Envelope>
ご注意:
- をユーザー/認証
- SSL接続
どれ提案/リンク/例感謝を渡すがあります。
[PHP :: SOAP(http://php.net/manual/en/book.soap.php) – J0HN
[ SoapClientクラス](http://www.php.net/manual/en/class.soapclient.php) – hakre