You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
response = client.request :get_user_by_id do
soap.header = "<session_id>12345</session_id>"
soap.body = 1
end
I have to overwrite the Savon::SOAP::XML Class with:
module Savon
module SOAP
class XML
private
# Returns the SOAP header as an XML String.
def header_for_xml
if header.is_a?(Hash)
@header_for_xml ||= Gyoku.xml(header) + wsse_header
else
@header_for_xml ||= header + wsse_header
end
end
end
end
end
or something else.
The text was updated successfully, but these errors were encountered:
Hi,
this do not work now:
I have to overwrite the Savon::SOAP::XML Class with:
or something else.
The text was updated successfully, but these errors were encountered: