Hi, I want to make our application to be supported with REST APIs. We will receive the REST requests to Tomcat application server. And from there we need to forward it to our application in ruby. So I want to understand that what the exact things I will need to have to complete this setup for REST communication. Few things I have listed down. 1. The application 2. Tomcat apache server 3. phusion passenger (This is I am not sure about. But, for communication between Tomcat and our framework in ruby.) Can anybody help me out to understand if above things are correct or not? Also, I dont understand what will work as a REST server here. Or I will have to write a seperate serving module for REST? Is more explanation required to understand the problem? Regards, Shubhada -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/54c54f81f8e0e1c7e9c768e77c0c3f0e%40ruby-forum.com. For more options, visit https://groups.google.com/groups/opt_out.
On Tue, Jul 9, 2013 at 11:06 PM, Shubhada S. <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> I want to make our application to be supported with REST > APIs. > We will receive the REST requests to Tomcat application server. And from > there we need to forward it to our application in ruby. > > So I want to understand that what the exact things I will need to have > to complete this setup for REST communication. Few things I have listed > down. > > 1. The application > 2. Tomcat apache server > 3. phusion passenger (This is I am not sure about. But, for > communication between Tomcat and our framework in ruby.) > > Can anybody help me out to understand if above things are correct or > not?If your application runs with JRuby, you can use Tomcat as your app server; Phusion Passenger is not relevant to Tomcat. Have you tried running your app using JRuby?> Also, I dont understand what will work as a REST server here. Or I will > have to write a seperate serving module for REST? > > Is more explanation required to understand the problem?I think you need to read more on exactly what "REST" means... Good luck, -- Hassan Schroeder ------------------------ hassan.schroeder-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org http://about.me/hassanschroeder twitter: @hassan -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CACmC4yDaRJWQBUVHxsuDamj1U%3DMYPfMJn-WpPGoBfxKgRUAo7g%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
> I think you need to read more on exactly what "REST" means... >Thanks Hassan. Can you please provide any good document for understanding REST? Regards, Shubhada -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/f86e61df111c61486fc2d45d65e4cba5%40ruby-forum.com. For more options, visit https://groups.google.com/groups/opt_out.
On Wed, Jul 10, 2013 at 11:58 PM, Shubhada S. <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Can you please provide any good document for understanding REST?http://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm is a good place to start. HTH, -- Hassan Schroeder ------------------------ hassan.schroeder-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org http://about.me/hassanschroeder twitter: @hassan -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CACmC4yBmoPS7AnsQ8W3-zuhFHJ9hUmTnNif%2BJ%2BB7oJGtg3umag%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.