Displaying 1 result from an estimated 1 matches for "kate_control".
Did you mean:
  rate_control
  
2006 Mar 02
1
web serveces problem
...se
	web_service_api KateAPI
	def check_version (version)
		if version != ''0.25''
			''you are trying to talk with Tyra version 0.25 with a different 
version !''
		else
			''server and client versions match - 0.25''
		end
	end
end
3. app/controller/kate_controller.rb:
class KateController < ApplicationController
	web_service_scaffold :invoke
	web_service_dispatching_mode :layered
	web_service :kate, KateAPIService.check_version
end
when I go to the browser to /myapp/kate/api i get:
NoMethodError in <controller not set>#<action not set>
un...