Displaying 20 results from an estimated 1000 matches similar to: "Why ActiveResource won't make it..."
2009 May 20
1
activeresource-2.3.2 HTTPHeaderSyntaxError
Hi,
I''m upgrading my app from 2.2.2 to 2.3.2 and am having a problem with
ActiveResource.
class FooResource < ActiveResource::Base
self.site = "whatever"
self.element_name = "foo"
end
FooResource.create(:bar => ''baz'')
raises:
Net::HTTPHeaderSyntaxError: wrong Content-Length format
from
2009 Jul 24
1
Modifying ActiveResource classes
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 information, ActiveResource''s timeout
value doesn''t work. The request just hangs.
After reviewing the ActiveResource code, I''ve realized that this is
because the underlying
2007 Jan 05
0
ActiveResource cache using memcache-client
I''ve created this class that overrides methods for
find,delete,destroy,reload, and save in activeresource. The code
populates a local memcache daemon and uses that cache for future find
requests. I''m posting it here to get whatever feedback people have.
I''m most interested in the pro/con of inheritance over a mixin and how
such a module might be tested.
$ cat
2006 Aug 31
0
ActiveResource
I''ve been sitting on an ActiveResource patch for a few weeks, waiting
to get some feedback from David. But, I see other folks like Jeremy
are starting to use it, so I committed my patch:
http://dev.rubyonrails.org/changeset/4890
It gets all the basic operations in working order, and adds support
for prefixes. I wasn''t quite sure how to pull this off. Right now,
I''m
2009 May 28
0
Re: ActiveResource as API test rig? Two jsons?
bump...
On Wed, May 20, 2009 at 3:57 PM, Marc Byrd <dr.marc.byrd-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> Hi,
>
> I''m using ActiveResource as an API test rig for an API we''re developing for
> our PHP app - the goal being to validate that we''re following some
> externally validated conventions for ReSTful API and that we can support at
>
2009 Sep 09
0
ActiveResource - Two simple questions
I''m struggling a bit with implementing ActiveResource on a custom
RESTful API.
Firstly, I can''t seem to disable the transforms it does when it parses
the XML. For example "CamelCase" gets rendered as camel_case, likewise
underscores get converted to dashes. The docs page for ActiveResource
mentions being able to set
ActiveSupport.camelise_xml = false
In an
2007 Sep 22
4
ActiveResource, find(1) works but no find(:all)
Hi,
I''m on edge and Fuser.find(1) works but Fuser.find(:all) shows the error
[1]. Fuser is declared here [2]. Do you know what''s happening? Thanks.
[1]
ActiveResource::ServerError: Failed with 500 Internal Server Error
from
/.../vendor/rails/activeresource/lib/active_resource/connection.rb:124:in
`handle_response''
from
2006 Sep 01
2
Include ActiveResource
Hello,
I want to give ActiveResource a spin.
I have all the code checked out from SVN in vendor/rails (yes, including
ActiveResource).
I''m trying to make sure it gets loaded.
I did this in environment.rb:
config.load_paths += %W( #{RAILS_ROOT}/vendor/rails/activeresource/lib )
Unfortunately I still can''t use it. I have an ActiveResource derived model,
Address:
class
2007 Mar 29
0
using certificates with ActiveResource
I''m trying to hack ActiveResource to use a self-signed certificate when
connecting to my RESTful rails app (seems like a pretty glaring hole
that it doesn''t offer this out of the box... though I guess it is alpha
software).
I started out going through the ActiveResource code looking for
somewhere I could set the cert and key. Didn''t find it, so I took the
approach
2008 Jun 26
0
ActiveResource - 404 when resources use the :as parameter
Hi,
I have another question about ActiveResource.
In a REST server I have resources defined with the :as parameter, like:
map.resources :alerts, :as => ''alertas''
But when I try an ActiveResource client to access that, it tries to
access ''/alerts.xml'', which returns a 404.
I tried defining the resource on the client too, but it seems it doesn''t
2006 Sep 27
0
ActiveResource and query string parameters
I have an app that was built using the new RESTful methods and I''m
trying to access its resources from another app using ActiveResource.
(more about the app itself on my blog -- http://jystewart.net/process )
The app provides details of bus stops in Grand Rapids, Michigan, and
the index method for the stops resource allows users to specify a
point (using its longitude and
2006 Jun 28
0
ActiveResource (was: 1.1.3 available.)
2006/6/28, Paul Barry <mail@paulbarry.com>:
> Where can I find info about the "CRUD/resource-based features" that will be
> in 1.2.0?
In blogs. Especially about Railsconf and DHH''s keynotes.
In trunk : http://dev.rubyonrails.org/browser/trunk/activeresource
In DHH slides :
Transcription of some slides from DHH''s talk at RubyKaigi 2006
(I suppose it must
2007 Jul 04
1
Edge Rails required for ActiveResource
Just wanted to make sure I''m not missing anything here... I''m trying
to use ActiveResource and I was trying to avoid using Edge Rails.
However, since ActiveResource depends on the edge version of
activesupport, I appear to be stuck going edge... have flailed around
for a while trying to get ActiveResource to work with 1.2.3 but it
just ain''t happening. Am I right? Gotta
2009 Jul 16
1
ActiveResource timeout not functioning?
I''m trying to contact a REST API using ActiveResource on Rails 2.3.2.
I''m attempting to use the timeout functionality so that if the resource
I''m contacting is down I can fail quickly - I''m doing this with the
following:
class WorkspaceResource < ActiveResource::Base
self.timeout = 5
self.site = "http://mysite.com/restAPI"
end
However, when I
2006 Sep 01
2
Uninitialized constant w/ ActiveResource
Howdy,
I had an application perfect for ActiveResource, which I do realize is not
finished.
Anyway, I froze my app to edge and then defined a class:
class Address < ActiveResource::Base
self.site = "http://ws.geonames.org/findNearestAddress?lat=:lat&lng=:long"
End
I tried to use it from the console but I get the trace below.
It appears it can''t
2012 Feb 22
0
ActiveResource wrong constant name 0
The fields_for tag, when working with ActiveResource''s
accepts_nested_attributes_for returns the params like this:
"book"=>{"name"=>"sdfas",
"chapters_attributes"=>{"0"=>{"name"=>"sdfaasdf"}}}
Note thé "0" as a key to the "chapters_attributes" hash.
When working with
2009 Mar 05
0
ActiveResource & HTTP proxy
Hi,
Do you know if there is any way to configure HTTP proxy connection in
ActiveResource?
I''m testing the youtube-model plugin
(http://github.com/edgarjs/youtube-model), which uses ActiveResource,
and actually noticed that all requests get stuck in the
ActiveResource::Connection.http method which uses Net::HTTP (and not
Net::HTTP:Proxy).
Thanks for your help
--
Posted via
2008 Aug 20
0
activeresource: self.prefix = .../:id/... (need to set :id?)
Hi All
As I mentioned in my title I''m using activeresource and the model I''m
using has the following prefix
self.prefix = ''/institute/:institute_id/services/:service_id/''
All this is great, however I''m now in a situation where I need to save
the model, but it translate the prefix as follows
/providers/983783784/services//appointments/234234234
So,
2008 Sep 28
4
ActiveResource and InvalidAuthenticityToken exception
Hi,
I have a Rails 2.1.1 web app, and a Rails 2.1.1 app acting as a client
by using ActiveResource.
From the client, I can find, create, and update resources owned by the
web app.
However, I can not delete any. Calling the .destroy method in
ActiveResource generates a 422 from the web app.
Not sure why this would be the case, since I thought
protect_from_forgery only protects HTML and JS
2009 Jun 24
3
ActiveResource:: HttpMock
I''m trying to set up testing on my ActiveResource project. The
HttpMock appears to be what I want, but whenever I use the code in the
"documentation", I get the error
NameError: uninitialized constant ActiveResource::HttpMock
Is there something I need to do to enable HttpMock testing?
Thanks,
Tom