Where is the class HelloMessageApi located ?You will need to include it
inside the controller before being able to use it.

Thanks & Regards,
Dhruva Sagar.


Jonathan Swift<http://www.brainyquote.com/quotes/authors/j/jonathan_swift.html>
- "May you live every day of your life."

On Tue, Aug 25, 2009 at 3:24 PM, 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 following error
> " uninitialized constant HelloMessageController::HelloMessageApi "
> plz
> help me out ??????????
> --
> 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 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
-~----------~----~----~----~------~----~------~--~---

Reply via email to