1

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.

seb
  • 4,279
  • 2
  • 25
  • 36

2 Answers2

1

I ended up using jProfiler. It provides a Call Tree.

edit: ... and SOAPUI.

seb
  • 4,279
  • 2
  • 25
  • 36
1

Use SOAPUI. You can get very accurate timings of your send and receive:

http://www.soapui.org/

SoapUI is also invaluable for testing and debugging.

IMHO...

paulsm4
  • 114,292
  • 17
  • 138
  • 190