ruby - Savon: How to change header from being <env:Header> to <soap:Header> or something different -
in savon, there way change
<env:header>
to be
<soap:header>
or different?
i've tried in request block putting additional header tag this:
soap.header['soap:header']
but won't work.
i've browsed savon docs , haven't found anywhere change tag, manually building xml.
edited savon 1.0.0
the value can set in configure block can set logging , other parameters. put
savon.configure |c| c.env_namespace = :soap end
into code.
Comments
Post a Comment