I have a very simple webservice that is essetially an interface between a database and external callers.
When calling the service methods directly during unit testing the results are processed instantly. Strangly when running a stub ws on my local machine the results will always take almost exactly 5 minutes, no matter what query I am executing. The result time is too consistent to be anything other than a problem.
The ws is built using the built in Java 6 JAX-ws libraries inc. using the Java 6 HttpServer and Xalan as the xslt processor.
Has anyone come across a smilar issue ?
Regards, Andy
Turns out that this was the same issue as decribed in the first comment link below. Thank you. By default the version of Axis used to generate the client was generating with http 1.0 instead of the expected 1.1.