search for: rexmlstreamparser

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

2009 May 09
0
XMLRPC raw_post getting run through Hash#from_xml
Im trying to create an api, and Im having trouble getting ActionController to not run the raw post data through Hash#from_xml (request.parse_formatted_request_parameters) for the XMLRPC post data. I essentially want it to run through XMLRPC::XMLParser::REXMLStreamParser.new.parseMethodCall(request.raw_post). However, I can''t figure out a clever, clean way to get request.request_parameters to not run since it can run as early as the dispatcher, which will essentially trigger Hash#from_xml on that call before it even gets into the scope of the controller....