3

SOAP::Header::SimpleHandler を使用しようとしましたが、送信メッセージにカスタム ヘッダーを配置しようとしていますが、それを含める方法がわかりません。サブ要素ではなく属性:

    class ServiceContext < SOAP::Header::SimpleHandler
  NAMESPACE = "http://context.core.datamodel.fs.documentum.emc.com/"
  def initialize()
    super(XSD::QName.new(NAMESPACE, 'ServiceContext'))
    XSD::QName.new(nil, "Identities")
  end

  def on_simple_outbound
    username = "username"
    password = "password"
    docbase = "Test"
    return {"Identities" => {"Username" => username, "Password" => password, "Docbase" => docbase}}
  end
end

戻り値:

    <n1:ServiceContext xmlns:n1="http://context.core.datamodel.fs.documentum.emc.com/"
        env:mustUnderstand="0">
      <n1:Identities>
        <n1:Username>username</n1:Username>
        <n1:Password>password</n1:Password>
        <n1:Docbase>Test</n1:Docbase>
      </n1:Identities>
    </n1:ServiceContext>

返す必要があるのは次のとおりです。

    <ServiceContext xmlns="http://context.core.datamodel.fs.documentum.emc.com/">
        <Identities xsi:type="RepositoryIdentity" userName="_USER_" password="_PWD_" repositoryName="_DOCBASE_" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
    </ServiceContext>

どんな助けでも大歓迎です。

4

1 に答える 1

3

soap4r はあまりきれいではありません。rdocs abit を調べてみましたが、問題を解決する最も簡単な方法はon_simple_outbound、作成する要素の文字列表現を返すことです。

だから代わりに

return {"Identities" => {"Username" => username, "Password" => password, "Docbase" => docbase}}

試す

%Q(<Identities xsi:type="RepositoryIdentity" userName="#{user}" password="#{password}" repositoryName="#{docbase}" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>)

builder などを使用すると、よりルビー色にすることもできますが、それを試してみてください。

もう 1 つのオプションは、新しい SOAP ライブラリを調査することです。ハンドソープが面白そう。

于 2009-06-19T18:22:09.680 に答える