# File lib/openid/fetchers.rb, line 43
    def post(url, body)
      begin
        u = URI.parse(url)
        http = getHTTPobj(u.host, u.port)
        resp = http.post(u.request_uri, body,
                         {"Content-type"=>"application/x-www-form-urlencoded"})
      rescue
        nil
      else
        [u.to_s, resp.body]
      end
    end