Displaying 2 results from an estimated 2 matches for "searchworker".
2006 May 01
3
Using Classes in Rails
I am a beginner so please excuse me, if i am doing something totally
wrong.
I have created a class using "wsdl2ruby.rb" and here is what it looks
like:
class ServiceSoap < ::SOAP::RPC::Driver
DefaultEndpointUrl =
"http://balrog/services/SearchWorker/service.asmx"
MappingRegistry = ::SOAP::Mapping::Registry.new
Methods = [
...
--
Posted via http://www.ruby-forum.com/.
2006 Sep 05
2
question about passing array of AR objects to worker
got a wierd problem maybe someone can help with.
whenever i try to pass an array or AR objects to my worker, i end up
with a DRb object in the worker...here''s an example
class SearchWorker < BackgrounDRb::Rails
attr_reader :resources
def do_work(resources)
logger.info resources.inspect
end
end
class SearchController < ApplicationController
def start_search
@resources = Resource.find(:all)
logger.info @resources.inspect
session[:job_key] = MiddleMan.n...