Hi,

I have a rails server running. I wanted to connect to this using
activeresource.

Executing this code
Class Buildclient < ActiveResource::Base
  self.site = "http://localhost:3000/builds";
end

builds = Buildclient.find(:all)
puts builds (## printed nil)

On the rails server terminal i see

Started GET "/builds/buildclients.json" for 127.0.0.1 at Fri Jun 15
10:34:05 -0700 2012
Processing by BuildsController#show as JSON
  Parameters: {"id"=>"buildclients"}
  build Load (0.2ms)  SELECT `builds`.* FROM `builds` WHERE
`builds`.`id` = 0 LIMIT 1
Completed 500 Internal Server Error in 1ms

ActiveRecord::RecordNotFound (Couldn't find Build with id=buildclients):
  app/controllers/builds_controller.rb:17:in `show'

Why did the parameters id=>buildclients go?  And why did i get an 500
internal server error.

-- 
Posted via http://www.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@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to