java - How do I measure the SOAP processing time of a JAX-WS WebMethod? -


interface:

import javax.jws.webservice; import javax.jws.webmethod;  @webservice(name="webservice") public interface iwebservice{     @webmethod     public collection<somevalue> dosthg(); } 

i measure time, how long takes javaws serialize returned collection<somevalue> in soap. have tried jamon, becauee soap somehow generated in background can't find way instrumentate code.

use soapui. can accurate timings of send , receive:

http://www.soapui.org/

soapui invaluable testing , debugging.

imho...


Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -