私は現在、新しいプロジェクトに取り組んでおり、サボンにはほとんど慣れていません。現在、ruby-1.8.7 と savon-1.0.0 を使用しており、以下の SOAP XML リクエストがあります。
<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:web="http://webservices">
<soapenv:Header/>
<soapenv:Body>
<web:InvokeComponent1 soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<PartnerName xsi:type="xsd:string">ABC</PartnerName>
<ComponentName xsi:type="xsd:string">TestingServices</ComponentName>
<arg1Value xsi:type="xsd:string">[CONTROL]
RequestID=83f6baab
RequestTime=13:14:15
RequestDate=08/08/2013
GenerateLead=N
Auto=Y
</arg1Value>
<RaUID xsi:type="xsd:string">username</RaUID>
<RaPW xsi:type="xsd:string">password1</RaPW>
<AgNO xsi:type="xsd:string">12345</AgNO>
</web:InvokeComponent1>
</soapenv:Body>
</soapenv:Envelope>
これは、このリクエストの自動化のために書いた私の Savon コードです。入力が必要なため、明らかに以下のコードは機能しません。
soapenv:Header をどこに含めるかわかりません。以下のコードに示すようにリクエストを入れてみましたが (現在コメントされています)、「未定義のメソッド `header=' for # (NoMethodError)」を取得しています。savonリクエストにヘッダーを含める場所は?
SOAP リクエスト名には、追加の属性 soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" があり、この追加の属性をどこに含める必要がありますか。
client = Savon::Client.new do |wsdl| wsdl.document = "https://www.abc.com/webservices/RemotePublicGateway.cfc?wsdl" # this is not actual WSDL end testing_string = '[CONTROL] RequestID=83f6baab RequestTime=13:14:15 RequestDate=08/08/2013 GenerateLead=N Auto=Y' response = client.request :web, "InvokeComponent1" do #client.header = { } soap.body = { :PartnerName => 'ABC', :attributes! => { :PartnerName => { 'xsi:type' => "xsd:string" } }, :ComponentName => 'TestingServices', :attributes! => { :ComponentName => { 'xsi:type' => "xsd:string" } }, :arg1Value => testing_string, :attributes! => { :arg1Value => { 'xsi:type' => "xsd:string" } }, :RaUID => 'username', :attributes! => { :RaUID => { 'xsi:type' => "xsd:string" } }, :RaPW => 'password1', :attributes! => { :RaPW => { 'xsi:type' => "xsd:string" } }, :AgNO=> '12345', :attributes! => { :AgNO => { 'xsi:type' => "xsd:string" } } } end