masterブランチのwash_outを使用しています。異なる SOAP アクションで同一のデータ型を使用できないのはなぜですか?
サンプル:
soap_action "get_groups",
:args => {:page => :integer},
:return => {:data => [{:id => :integer, :name => :string}], :total => :integer}
soap_action "get_items",
:args => {:page => :integer},
:return => {:data => [{:id => :integer, :name => :string}], :total => :integer}
また、WashOut::Type でラップしようとしましたが、役に立ちません。
エラー:
ActionView::Template::Error (Duplicate use of `data` type name. Consider using classified types.)