*/
public static QName getTypeQName(Element el)
throws IllegalArgumentException
{
// Try 2001
QName typeQName = getAttributeValue(el, Constants.NS_URI_2001_SCHEMA_XSI,
Constants.ATTR_TYPE, null, false);
if (typeQName != null)
ret
iday, March 12, 2004 8:35 PM
Subject: java.util.Calendar serializer patch contribution
My open-source framework and utility TestMaker bundles Apache SOAP. A
user pointed out a problem where he was trying to serialized a
java.util.Calendar object in a complex data type. The Apache
My open-source framework and utility TestMaker bundles Apache SOAP. A
user pointed out a problem where he was trying to serialized a
java.util.Calendar object in a complex data type. The Apache SOAP code
serializes GregorianCalendar but not Calendar. So, I modified the
Calendar serializer class