I am running into issues as well. I believe this is due to the fact that Rails stopped providing SOAP support at 2.0 and doesn't do any longer the 'behind the scenes' thing it used to do for SOAP. I found a post that explains how to get ActionWebService to work again with SOAP but I lost the link. I'm also working on it so I'll let you know if I find it.
On Aug 25, 5:54 am, Sushrut Sathe <rails-mailing-l...@andreas-s.net> wrote: > API-> hello_message_api.rb. > > class HelloMessageApi <ActionWebService::API::Base > api_method :hello_message, :expects => [{:firstname=>:string}, > {:lastname=>:string}], :returns => [:string] > > end > > controller -> > > class HelloMessageController < ApplicationController > > web_service_api HelloMessageApi > web_service_dispatching_mode :direct > wsdl_service_name 'hello_message' > web_service_scaffold :invoke > > def hello_message(firstname, lastname) > return "Hello "+ firstname +" "+lastname > end > end > > but it givesthe followingerror > " uninitialized constant HelloMessageController::HelloMessageApi " > plz > help me out ?????????? > -- > Posted viahttp://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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@googlegroups.com To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---