Are you implementing web services (SOA) with Ruby on Rails today? What are you using and how is it working for you. Thanks! SR123 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
>From what I have seen most services are being implemented as simpleXML REST services. There is support for SOAP services, but they are being downgraded in edge in favor of REST. The application I am working on will be using REST for both XML and feeds, and SOAP for interface to an accounting system. Michael On May 25, 7:58 pm, SR123 <adwo...-eEC8c6A21s/DJtuwdduNytBPR1lH4CV8@public.gmane.org> wrote:> Are you implementing web services (SOA) with Ruby on Rails today? What > are you using and how is it working for you. Thanks! SR123--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
I''m implementing a ROR app that makes REST calls to one client, based on SOAP calls from another. Going well so far. I''m done with the SOAP server portion and that''s working great in test. As much as I prefer to go all REST, sometimes you just don''t have a choice when you have to interface with other existing services. -emilSF On May 25, 7:58 pm, SR123 <adwo...-eEC8c6A21s/DJtuwdduNytBPR1lH4CV8@public.gmane.org> wrote:> Are you implementing web services (SOA) with Ruby on Rails today? What > are you using and how is it working for you. Thanks! SR123--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
I''ve had to implement SOAP client calls in a Rails app before. I used the soap4r library with some success. You can download it here: http://dev.ctor.org/soap4r good luck! - jacqui On May 26, 6:26 am, EmilSF <emil...-ee4meeAH724@public.gmane.org> wrote:> I''m implementing a ROR app that makes REST calls to one client, based > on SOAP calls from another. Going well so far. I''m done with the > SOAP server portion and that''s working great in test. As much as I > prefer to go all REST, sometimes you just don''t have a choice when you > have to interface with other existing services. > > -emilSF > > On May 25, 7:58 pm, SR123 <adwo...-eEC8c6A21s/DJtuwdduNytBPR1lH4CV8@public.gmane.org> wrote: > > > Are you implementing web services (SOA) with Ruby on Rails today? What > > are you using and how is it working for you. Thanks! SR123--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---