How do I view the HTTP response to an ActiveResource request? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T02:31:09Zhttp://stackoverflow.com/feeds/question/227907http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/227907/how-do-i-view-the-http-response-to-an-activeresource-request1How do I view the HTTP response to an ActiveResource request?Luke Francl2008-10-22T23:31:01Z2009-01-29T21:05:34Z
<p>I am trying to debug an ActiveResource call that is not working.</p>
<p>What's the best way to view the HTTP response to the request ActiveResource is making?</p>
http://stackoverflow.com/questions/227907/how-do-i-view-the-http-response-to-an-activeresource-request/227908#2279080Answer by Luke Francl for How do I view the HTTP response to an ActiveResource request?Luke Francl2008-10-22T23:31:21Z2008-10-23T15:17:27Z<p>Maybe the best way is to use a traffic sniffer.</p>
<p>(Which would totally work...except in my case the traffic I want to see is encrypted. D'oh!)</p>
http://stackoverflow.com/questions/227907/how-do-i-view-the-http-response-to-an-activeresource-request/228292#2282920Answer by Cameron Booth for How do I view the HTTP response to an ActiveResource request?Cameron Booth2008-10-23T02:06:04Z2008-10-23T02:06:04Z<p>Or my method of getting into things when I don't know the exact internals is literally just to throw in a "debugger" statement, start up the server using "script/server --debugger" and then step through the code until I'm at the place I want, then start some inspecting right there in IRB.....that might help (hey Luke btw)</p>
http://stackoverflow.com/questions/227907/how-do-i-view-the-http-response-to-an-activeresource-request/228393#2283931Answer by MattSmith for How do I view the HTTP response to an ActiveResource request?MattSmith2008-10-23T02:58:41Z2008-10-23T02:58:41Z<p>I like <a href="http://www.wireshark.org/" rel="nofollow">Wireshark</a> because you can start it listening on the web browser client end (usually your development machine) and then do a page request. Then you can find the HTTP packets, right click and "Follow Conversation" to see the HTTP with headers going back and forth.</p>
http://stackoverflow.com/questions/227907/how-do-i-view-the-http-response-to-an-activeresource-request/236378#2363781Answer by Ian Terrell for How do I view the HTTP response to an ActiveResource request?Ian Terrell2008-10-25T13:09:11Z2008-10-25T13:09:11Z<p>It's easy. Just look at the response that comes back. :)</p>
<p>Two options:</p>
<ul>
<li>You have the source file on your computer. Edit it. Put a <code>puts response.inspect</code> at the appropriate place. Remember to remove it.</li>
<li>Ruby has open classes. Find the right method and redefine it to do exactly what you want, or use aliases and call chaining to do this. There's probably a method that returns the response -- grab it, print it, and then return it.</li>
</ul>
<p>Here's a silly example of the latter option.</p>
<pre><code># Somewhere buried in ActiveResource:
class Network
def get
return get_request
end
def get_request
"I'm a request!"
end
end
# Somewhere in your source files:
class Network
def print_request
request = old_get_request
puts request
request
end
alias :old_get_request :get_request
alias :get_request :print_request
end
</code></pre>
<p>Imagine the first class definition is in the ActiveRecord source files. The second class definition is in your application somewhere.</p>
<pre><code>$ irb -r openclasses.rb
>> Network.new.get
I'm a request!
=> "I'm a request!"
</code></pre>
<p>You can see that it prints it and then returns it. Neat, huh?</p>
<p>(And although my simple example doesn't use it since it isn't using Rails, check out <code>alias_method_chain</code> to combine your alias calls.)</p>
http://stackoverflow.com/questions/227907/how-do-i-view-the-http-response-to-an-activeresource-request/237776#2377761Answer by derfred for How do I view the HTTP response to an ActiveResource request?derfred2008-10-26T09:20:24Z2008-10-26T09:20:24Z<p>This only works if you also control the server:</p>
<p>Follow the server log and fish out the URL that was called:</p>
<pre><code>Completed in 0.26889 (3 reqs/sec) | Rendering: 0.00036 (0%) | DB: 0.02424 (9%) | 200 OK [http://localhost/notifications/summary.xml?person_id=25738]
</code></pre>
<p>and then open that in Firefox. If the server is truely RESTful (ie. stateless) you will get the same response as ARes did.</p>
http://stackoverflow.com/questions/227907/how-do-i-view-the-http-response-to-an-activeresource-request/477966#4779660Answer by Steven for How do I view the HTTP response to an ActiveResource request?Steven2009-01-25T17:40:44Z2009-01-25T17:40:44Z<p>the firefox plugin live http headers (<a href="http://livehttpheaders.mozdev.org/" rel="nofollow">http://livehttpheaders.mozdev.org/</a>) is great for this. Or you can use a website tool like <a href="http://www.httpviewer.net/" rel="nofollow">http://www.httpviewer.net/</a></p>
http://stackoverflow.com/questions/227907/how-do-i-view-the-http-response-to-an-activeresource-request/493412#4934120Answer by ahabman for How do I view the HTTP response to an ActiveResource request?ahabman2009-01-29T21:05:34Z2009-01-29T21:05:34Z<p><a href="http://www.jroller.com/bokmann/entry/debugging_activerecord_web_services" rel="nofollow">http://www.jroller.com/bokmann/entry/debugging_activerecord_web_services</a></p>