# File nqxml/uri.rb, line 103
    def fetchFile
	body = ''
	begin
	    File.open(@path, 'r') { | f |
		body = f.read()
	    }
	rescue
	    $stderr.puts "warning: #{$!}"
	end
	return body
    end