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

Winapi c++: DialogBox hangs when breaking a loop -

vb.net - Font adding using PDFsharp -

javascript - jQuery iScroll clickable list elements while retaining scroll? -