You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by Steve Green <st...@epok.net> on 2004/11/12 19:02:48 UTC

Potential problem with BaseSerializerFactory

Developers,

>>From looking at the code to BaseSerializerFactory.getSpecialized(), I
wonder if there isn't a problem lurking.  

    protected Serializer getSpecialized(String mechanismType) {
            if (javaType != null && xmlType != null) {
-->             if (getSerializer != null) {
                    try {
                         ....

Should it read:

                if (getGetSerializer() != null)


~S