Hi, We have some utility classes and a JSP tag that output processing times at the footer of each page. These give us interesting information about server-side processing times which we can substract from overall response time to isolate transport time (with some approximations). The strings look like:
Module Time: 2608 ms;Package Time: 0 ms;Total Time: 2608 ms I would parse each response to extract these figures (should be fairly easy with the Regex extractor). The part where I need your input is that I'd like to output these figures to an XML file (and use an XSL to produce my final report). Is this do-able? How big is the task and how would one go about it? Would I add these to an existing report or create a new one? Thanks! Guillaume

