Re: [Rails] Call Rest webservice in Ruby on Rails

2011-02-28 Thread Paul
I've just used: data = `curl -data xxx url` That doesn't seem like the "right" way, but it works. On Mon, Feb 28, 2011 at 3:30 PM, Bill Walton wrote: > I use the Ruby Net::HTTP library to construct requests. > > Best regards, > Bill > > On Mon, Feb 28, 2011 at 10:03 AM, gs84 wrote: >> Hi every

Re: [Rails] Call Rest webservice in Ruby on Rails

2011-02-28 Thread Bill Walton
I use the Ruby Net::HTTP library to construct requests. Best regards, Bill On Mon, Feb 28, 2011 at 10:03 AM, gs84 wrote: > Hi every body, > > I use rest web service in my rails application for user's > authentication (user creation, login, ...) > Can someone explain me, how can i call a REST Web

[Rails] Call Rest webservice in Ruby on Rails

2011-02-28 Thread gs84
Hi every body, I use rest web service in my rails application for user's authentication (user creation, login, ...) Can someone explain me, how can i call a REST Web service (not developped in Rails, and deployed by Tomcat) in my rails application via POST method. Thanks in advance for your help