Re: RequestHandler shared resources

2007-11-28 Thread Chris Hostetter
: Yeah, I think that would work. Actually, I should be able to get all the : request handlers and then look for instances of the req handlers that I need. or configure reqHandler "B" with the name of reqHandler "A" that owns the resource so it knows who to ask. -Hoss

Re: RequestHandler shared resources

2007-11-28 Thread Grant Ingersoll
Yeah, I think that would work. Actually, I should be able to get all the request handlers and then look for instances of the req handlers that I need. Thanks! -Grant On Nov 28, 2007, at 4:42 PM, Ryan McKinley wrote: Grant Ingersoll wrote: I have an object that I would like to share betwe

Re: RequestHandler shared resources

2007-11-28 Thread Ryan McKinley
Grant Ingersoll wrote: I have an object that I would like to share between two or more RequestHandlers. One request handler will be responsible for the object and the other I would like to handle information requests about what the object is doing. Thus, I need to share the object between the

RequestHandler shared resources

2007-11-28 Thread Grant Ingersoll
I have an object that I would like to share between two or more RequestHandlers. One request handler will be responsible for the object and the other I would like to handle information requests about what the object is doing. Thus, I need to share the object between the handlers. Short o