Method: VersionOne::Client#post_xml

Defined in:
lib/version-one/client.rb

#post_xml(path, xml) ⇒ Object



22
23
24
25
26
27
28
29
30
# File 'lib/version-one/client.rb', line 22

def post_xml(path, xml)
  uri = path_uri(path)
  xml = xml.root if xml.respond_to?(:root)
  xml.attributes['href'] = uri.path
  request :post, uri do |r|
    r.body = xml.to_s
    r.content_type = XML_CONTENT_TYPE
  end
end