# File lib/facets/more/http.rb, line 394
    def self.new_request(method, uri, query = nil, body = nil, proxy = nil,
        boundary = nil)
      m = self.__new
      m.header = Headers.new
      m.header.init_request(method, uri, query, proxy)
      m.body = Body.new(body, nil, nil, nil, boundary)
      m
    end