Hi All, I''m trying to serve some XML from my Rails 2.0 server. I have a Flash file that always reads its configuration from /home/gallery.xml So, I would like to build the contents from the database and serve it back to the flash file when it hits my xml url. If it was HTML that it was asking for then in my home controller I have a gallery method that serves back a gallery.html.erb but since it wants xml I figured that it would need a gallery.xml.erb and a method like below in my home controller. def gallery @collection = Collection.find_by_name("banner") respond_to do |format| format.html # gallery.html.erb format.xml { render :xml => @collection } end end But, this gives me the routing error: No route matches "/home/gallery.xml" with {:method=>:get} So, I''ve tried renaming my gallery.xml.erb to gallery.xml.builder but still no luck. I suspect that it''s a problem with my understanding of routing but the html version responds as expected through /home/gallery but not /home/gallery.html. Any help? Cheers -- Posted via ruby-forum.com. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Hi Adrian, On Tue, 2009-03-31 at 05:16 +0200, Adrian Cook wrote:> But, this gives me the routing error: > No route matches "/home/gallery.xml" with {:method=>:get}What''s your routes.rb look like? Bill --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Hi Bill, bill walton wrote:> > What''s your routes.rb look like? > > BillHere it is: ActionController::Routing::Routes.draw do |map| map.resources :gifts map.resources :mailing_list_users map.resources :downloads map.resources :multi_currency_prices map.resources :billing_infos map.simple_captcha ''/simple_captcha/:action'', :controller => ''simple_captcha'' map.resources :download_locations map.resources :drm_types map.resources :pages map.resources :products map.with_options :controller => ''products'' do |products| map.resources :buy end map.resources :reviews map.resources :collections map.namespace(:admin) do |admin| admin.resources :clients, :collection => { :multi_report => :put, :multi_report_generate => :put } admin.resources :user_groups admin.resources :discounts admin.resources :collections admin.resources :reviews admin.resources :order_items admin.resources :coupon_types admin.resources :product_types admin.resources :clients admin.resources :platforms admin.resources :products admin.resources :coupons admin.resources :countries admin.resources :payments admin.resources :orders admin.resources :payment_types admin.resources :portal_users admin.resources :billing_infos admin.resources :exchange_rates admin.resources :download_locations admin.resources :drm_types admin.resources :downloads admin.resources :article_headers admin.resources :articles admin.resources :mailing_list_users admin.resources :mailing_list_bulletins admin.resources :mailing_list_groups admin.resources :pages end map.root :controller => "home" # Install the default routes as the lowest priority. map.connect '':controller/:action/:id'' map.connect '':controller/:action/:id.:format'' end -- Posted via ruby-forum.com. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Hi Adrian, On Tue, 2009-03-31 at 05:35 +0200, Adrian Cook wrote:> Hi Bill, > > bill walton wrote: > > > > What''s your routes.rb look like? > > > > Bill > > Here it is:<snip>> map.connect '':controller/:action/:id.:format''Thanks. Just wanted to verify you hadn''t somehow clobbered the last route. Take a look at the Accept header of the incoming request (Live HTTP Headers if you don''t already have a different preferred tool). My guess is you''re not getting a request for xml. Post back if that''s not it. Best regards, Bill --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---