I admit I'm new to Axis, so bear with me. I've got some classes which have properties of type java.sql.TimeStamp. The WSDL generated by the servlet declares their type to be nothing (empty string to be exact). m Yet, whenever an object oif this type is serialized over, it's type is marked as "xsd:dateTime" (which makes sense).
So, my first question is -- why does it know a Timestamp is an xsd:dateTime in one place (the serializer) but not the other (the WSDL generator)? I tried to fix this by adding a typeMapping to my WSDD to make java.sql.TimeStamp use the Date[De]SerializerFactories. Not the type is listed as "tns3:TimeStamp" where xmlns:tns3="http://sql.java". How did that happen? Regards, Brian.
