The command I'm trying to execute from the terminal:

curl "http://acme.example.com/controller_name/destroy.xml?api_key=123&id=150&other_id=430"

Just a simple GET request, nothing special there.

But when I do that, I get this error:

ActionController::RoutingError 
(No route matches "/controller_name/destroy.xml" with 
{:remote_ip=>"127.0.0.1", 
 :accepts=>"*/*", 
 :protocol=>"http://", 
 :subdomain=>"acme", 
 :method=>:get, 
 :request_uri=>"/controller_name/destroy.xml?api_key=123&id=150&other_id=430", 
 :port=>80, 
 :content_type=>nil, 
 :domain=>"example.com"}):

So then I added this to my routes.rb file:

  map.connect "/controller_name/destroy", :controller => :controller_name, :action => :destroy

But I get the same error, so the route I added doesn't help at all.

Here is the destroy method from controller_name

  def destroy
    @other = Other.find(params[:other_id])
    attachment = @other.attachments.find(params[:id])
    attachment.destroy

    @attachments = @other.attachments

    respond_to do |format|
      format.xml do
        head :ok 
      end
    end
  end

In routes.rb, the controller_name is just included this way:

  map.resources :others, :has_many => [:controller_names]

and all the AJAX things already in the controller work fine... even for the same method, calling destroy with an AJAX request works.... but not the XML portion..... >_<

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Looks like you are missing the format on the request.

map.connect "/controller_name/destroy(.:format)", :controller => :controller_name, :action => :destroy
link|improve this answer
thanks, just had to remove the parathesis to get it to work. =D – TheLindyHop Jan 20 at 20:06
actually, adding this line causes a problem with the rest of the actions. – TheLindyHop Jan 20 at 20:11
I think my problem is deeper than this. but since this solved my question, but broke the rest of the controller, I'll go ahead and accept it. – TheLindyHop Jan 20 at 20:16
feedback

Your Answer

 
or
required, but never shown

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