# File lib/wsdl/xmlSchema/importer.rb, line 29
  def import(location, originalroot = nil)
    if DO_NOT_IMPORT.include?(location.to_s)
      return nil
    end
    unless location.is_a?(URI)
      location = URI.parse(location)
    end
    source, normalizedlocation = fetch(location)
    content = parse(source, normalizedlocation, originalroot)
    content.location = normalizedlocation
    content
  end