search for: hellonam

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

Did you mean: helloname
2006 Jan 31
2
Creating a web service with AWS
...r 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 < ApplicationController def HelloName( name ) return "Hello "+name; end end I have put that i...