I\'m calling a rails app from another using ActiveResource. I need to supply the id of the new object to the first app (yes, controller create in this app knows how to handle receiving an id), so I do
I\'m using ActiveResource to consume a REST service.The xml from the service looks like: <Person>
Lately I\'ve been working on validating an architectural design idea using Rails ActiveResource as a client and a WCF restful service as a server. I have the WCF service running on Windows Vista in a
I\'m working on a Ruby on Rails/PostgreSQL web app that a mobile device communicates with. The mobile device has the abilit开发者_运维知识库y to post to a primary server and geographically redundant s
I\'ve seen a ton of examples with ActionWebService and XMLRPC, but they\'re 3 years old and from what I understand, ActiveResource is supposed to replace ActionWebService.
I have this code: require \'rubygems\' require \'activeresource\' ActiveResource::Base.logger = Logger.new(\"#{File.dirname(__FILE__)}/exercises.log\")
I am getting a really strange error from ActiveResource.I have a method that calls another system to get a list of products.The list is quite large and takes about 3 minutes to generate and transfer.
Supposing the route map.resources :articles how do you get this /articles?most_popular using link_to method?