You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by MB...@unica.com on 2005/04/13 20:20:23 UTC

getDeserializer taking too long under Websphere 5.1

I'm trying to chase down a performance issue using Websphere 5.1 and Axis 
1.1.
What we're finding is that on the server the 
 
org.apache.axis.encoding.ser.SimpleDeserializerFactory.getDeserializerAs()
call is taking a very long time for even simple strng classes. Apparently, 
it's
trying to find a specialized deserializer, calling loadClass, bubbling 
through
a bunch of stuff only to find that no such class exists.  Eventually, it 
reverts
back to the GeneralPurpose deserializer, and things work as expected.

Is there someway to speed up, cache, or short circuit this check via 
configuration?

Thanks!
Mike B.