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:
soapui invaluable testing , debugging.
imho...
Comments
Post a Comment