# File estraier.rb, line 463 def get_doc(id) Utility::check_types({ id=>Integer }) if $DEBUG @status = -1 return nil if !@url turl = @url + "/get_doc" reqheads = [ "Content-Type: application/x-www-form-urlencoded" ] reqheads.push("Authorization: Basic " + Utility::base_encode(@auth)) if @auth reqbody = "id=" + id.to_s resbody = StringIO.new rv = Utility::shuttle_url(turl, @pxhost, @pxport, @timeout, reqheads, reqbody, nil, resbody) @status = rv return nil if rv != 200 Document.new(resbody.string) end