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

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -