here is my code in a controller
respond_to do |format|
format.html
format.xml { render :xml => @menus }
end
when i type "http://192.168.210.136:3000" then it renders the html version.
but how do i request the xml version? i tried http://192.168.210.136:3000.xml and http://192.168.210.136:3000/index.xml with no luck.
thanks!