Skip to content

Instantly share code, notes, and snippets.

@jarodl
Created January 6, 2010 19:53
Show Gist options
  • Save jarodl/270572 to your computer and use it in GitHub Desktop.
Save jarodl/270572 to your computer and use it in GitHub Desktop.
def generate_tour(tour)
url = "/wwtweb/xml2wtt.aspx"
xml = tour.to_xml
headers = {
"Content-Type" => "text/xml; charset=utf-8",
"Content-Length" => xml.size.to_s,
}
h = Net::HTTP.new("worldwidetelescope.org")
resp, body = h.post(url, xml, headers)
body
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment