search for: hello_person_api

Displaying 1 result from an estimated 1 matches for "hello_person_api".

2006 Jan 31
2
Creating a web service with AWS
So I''ve read the Action Web Service bit of the documentation for a while, searched around and asked on the IRQ channel and I just can''t seem to get a simple Hello World type web service up and running with AWS on Rails. I have a file called hello_person_api.rb which looks like this: class HelloPersonAPI < ActionWebService::API::Base api_method :HelloName, :expects =>[:string], :returns => [:string] end I have put that in the /app/apis/ directory. I also have a file named hello_person.rb which contains this: class HelloPerson < Applica...