1
vote
1answer
382 views
Can ActiveResource models integrate with ActiveRecord models?
I'm working on a Rails app that will serve as an authentication system for other Rails apps through Rails's ActiveResource functionality.
The authentication app has an ActiveRecor …
0
votes
3answers
92 views
Why to_xml on ActiveResource does not work well?
I have several ActiveResource model in my project. There was so strange to me when I called to_xml on my ActiveResource. The options that I passed to to_xml like :only and :except …
0
votes
1answer
34 views
ActiveMessaging, ActiveResources, or Ruby XMLRPC
I have a simple jruby+swt based client that collects data on an occasionally connected PC. Now I need to push those records to the server (Rails 2.3). Should I use ActiveMessagin …
0
votes
0answers
13 views
RESTful Media Sharing API
Does anyone know of any good free media sharing sites like twitpic.com, but not for just twitter? It needs to have a good RESTful API. Preferably hosts video and audio as well as i …
2
votes
2answers
355 views
Rails: ActiveResource - Can I set the ID explicitly?
I am using ActiveResource in Rails to manage entities in a separate database over REST.
I have been trying to explicitly manage the IDs of the remote resources, as for the current …
0
votes
2answers
196 views
Rails ActiveResource
Hi There,
We are in the process of building a REST compliant API. The backend is implemented in PHP and we want the interface to follow the convention over configuration motto.
…
3
votes
2answers
437 views
How do I create an ActiveRecord relationship to an ActiveResource object?
Let's say I'm writing a Library application for a publishing company who already has a People application.
So in my Library application I have
class Person < ActiveResource::B …
1
vote
1answer
145 views
Overriding/Modifying Rails Class (ActiveResource)
I've been struggling with an issue with ActiveResource for a bit now: when a hostname resolves for an ActiveResource request, but there's no server on the other end to return infor …
0
votes
2answers
232 views
activeresource error status and response body
I am making an activeresource call to a service, and I'd like some custom error messages as feedback. I have some validations that aren't normal model validations, so I can't just …
0
votes
2answers
281 views
What is the best way to upload a file to another Rails application?
I 've researched and noticed that ActiveResource lack this functionality. So, what is the current state of the art when doing a file upload?
One problem with Guillermo's approach …
1
vote
2answers
248 views
Consuming non-REST APIs in Rails with ActiveResource
Hi,
I'm writing a client that consumes a non-REST API (i.e. GET site.com/gettreasurehunts), which requires that I specify all parameters (even the resource ID) in the request's HT …
0
votes
1answer
130 views
Consuming a Restful WCF Service with Ruby ActiveResource
I'm trying to consume a RESTful WCF service in a Rails app using ActiveResource.
My ActiveResource class is:
class PartReferenceService < ActiveResource::Base
self.site = …
0
votes
1answer
151 views
Rails, ActiveResource, and Pagination
What's the best way to implement pagination in a REST API so that an ActiveResource client can easily navigate paginated results? There have been some proposals, for example here a …
4
votes
1answer
72 views
Why does activeresource.rb just call active_resource.rb?
Here are the entire contents of activeresource.rb:
require 'active_resource'
Could someone explain the logic of this?
Why not simply have activeresource.rb contain what active_ …
0
votes
0answers
44 views
howto use activeresource on rails 1.2.3 (cc.rb)
Hi,
I'm working on a cc.rb plugin and need activeresource support. as cc.rb runs on rails 1.2.3, there is no activeresource support. is there a way to use activeresource on rails …
