-
Bug
-
Resolution: Won't Do
-
Major
-
jboss.net-3.2.6
-
None
i noticed that Axis unnessacary calls (twice) toSting of object returned by web services.
if the toSting method of the object has bad performance, for example when using reflection, it can effect the performance of the web service a lot.
i used profiler and the problem is in classes
org.apache.axis.providers.java.RPCProvider
org.apache.axis.providers.java.RPCInvocation
it might be something like:
log.debug("some message"+object.toString());
if the debug level is not checked the toString will be called anyway...