vote up 5 vote down star

Here's the code:

render :file => @somedir + "/blah.xml"

...but the resulting MIME type is text/html when I check in FireBug. How do I specify a MIME type in this case?

flag
Thanks, but the request has no extension, and I think responds_to uses the extension to determine the format. Am I wrong? – unknown (yahoo) Nov 18 '08 at 21:01

6 Answers

vote up 1 vote down

Take a look here. Basically you need to use render :xml => blah.to_xml

link|flag
vote up 0 vote down

Thanks, but the request has no extension, and I think responds_to uses the extension to determine the format. Am I wrong?

link|flag
vote up 5 vote down

Actually there are two ways to set the content-type (I think this is what you mean by mime-type). You should use the second option, if it works for your Rails version.

class FileController < ApplicationController

  def index
    filename = 'some.xml'

    extname = File.extname(filename)[1..-1]
    mime_type = Mime::Type.lookup_by_extension(extname)
    content_type = mime_type.to_s unless mime_type.nil?

    # 1
    #headers['Content-Type'] = content_type
    #render :file => filename

    # 2
    render :file => filename, :content_type => content_type
  end

end

Hope this helps!

link|flag
vote up 1 vote down

What about

headers["Content-Type"] = "text/xml"

? Hope that helps.

link|flag
vote up 1 vote down
render :file => @somedir + "/blah.xml", :content_type => Mime::XML
link|flag
vote up 0 vote down

nice work! now i got solution!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.