Hi, > From: <SchmittR / t-systems.com> > Sent: Friday, November 28, 2003 12:10 AM > I have a question: > Is it possible to intercept the soap-calls (the outgoing xml) in the ruby > program to perform some checks on the xml document? > I know it is possible to store the xml in files, but that is not what i want. str = "" driver.wiredump_dev = str puts str will store HTTP request header, request SOAP XML, response HTTP header and response SOAP XML to str. But you want to store only XMLs, not to file, right? There isn't such an interface for now. I'll look into the code to add the interface. Regards, // NaHi