Getting XML from different controller

Say, I'm in controller X and want to parse the XML (.rxml template) output of controller Y. How can I do that? I've tried to open() it over http, but that results in a timeout.    Probably you are using webrick which is single threaded, hence the second request can't be processed until the first finishes?

Switch to a different webserver for your development

Ed W