サボンに供給する場合:
hash = {
"Objects" => { //stuff here },
:attributes! => { "Objects" => {"xsi:type" => "Something"}}
}
私は得る:
<Objects>...</Objects>
サボンに他のものを供給するとき、私は期待される結果を得る:
hash = {
"foo" => { //stuff here },
:attributes! => { "foo" => {"xsi:type" => "Something"}}
}
私は得る:
<foo xsi:type="Something"></foo>
文字列「Objects」をキーとして使用する必要があります。サードパーティのSOAPWebサービスにコーディングしています。最初の文字が小文字になるため、記号は使用できません。
ありがとう、