Interface:
import javax.jws.WebService;
import javax.jws.WebMethod;
@WebService(name="Webservice")
public interface IWebservice{
@WebMethod
public Collection<SomeValue> doSthg();
}
I would like to measure the time, how long it takes JavaWS to serialize the returned Collection<SomeValue>
in to SOAP. I have tried it with Jamon, but becauee SOAP is somehow generated in the background I can't find a way to instrumentate the code.