Hello, [EMAIL PROTECTED] You wrote to <[EMAIL PROTECTED]> on 5 Mar 2003 17:46:47 -0000:
t> However, the total call time varies between 7331ms and 10445ms. I t> appear to be losing between 5 and 8 seconds simply doing Axis comms. t> Anyone got any tips on how to speed this up, or ideas of why it's so t> bad? I assume that you are using service with a scope of request. Your service object is creating each time, when request is received. Just add a log in your class constructor and finalize() method and you will see. To improve performance you can use <parameter name="scope" value="application"/> This service will be created once and will serve all requests, but you should handle yourself concurent requests. There are one more way - scope session. But I don't know what are you doing. --- Yours sincerely, Ivan Latysh. Ivan[a]yourmail.com
