Re: reading text/xml data in response handler

2007-07-16 Thread Fred Moyer
On Mon, 16 Jul 2007 8:44 pm, Praveen Ray wrote: How would I read the xml data sent, in a mod-perl2 response Handler? $r->param() wouldn't help since the Request Type is not set to "application/x-www-form-urlencoded" I'm thinking some way to reading raw-data using $r and then parsing it myself i

reading text/xml data in response handler

2007-07-16 Thread Praveen Ray
Hello Everyone I've a javascript client library sending text/xml data like this: var myRequest = new jsx3.net.Request(); myRequest.open("POST","http://myServlet";); myRequest.send(myDocument.getXML()); where jxs3.net.Request is an abstraction built over XMLHttp(It's Tibco GI javascript library i