Hi, I’m attempting to override the standard deserializer
for xsd:dateTime. The wsdd including this type mapping: <typeMapping xmlns:ns="http://www.w3.org/2001/XMLSchema" qname="ns:dateTime" type="xsd:dateTime serializer="org.apache.axis.encoding.ser.CalendarSerializerFactory" deserializer="com.axxia.pkc.core.ws.serializer.ExGregorianCalendarDeserializerFactory"
/> apparently deploys ok (no exceptions), but the
service does not appear in Axis (the xsd namespace is declared in the root tag). Changing the type attribute to a java type like this
makes it deploy properly, but with the wrong type in the generated wsdl. <typeMapping xmlns:ns="http://www.w3.org/2001/XMLSchema" qname="ns:dateTime" type="java:com.axxia.pkc.core.util.ExGregorianCalendar" serializer="org.apache.axis.encoding.ser.CalendarSerializerFactory" deserializer="com.axxia.pkc.core.ws.serializer.ExGregorianCalendarDeserializerFactory"
/> Does anyone know if it is possible to override the default
types in this way, and if so how? David Good Senior Software Engineer axxia
Systems Limited TEL:
+44 (0)118 960 2637 FAX:
+44 (0)118 960 2600 E-MAIL:[EMAIL PROTECTED] WEB: http://www.axxia.com Axxia House, 4 The
Pavilions, E-MAIL
DISCLAIMER The information in this e-mail and any attachment is
confidential. It is intended only for the named recipient(s). If you are
not a named recipient please notify the sender immediately and do not disclose
the contents to another person or take copies. Although Axxia Systems has taken
every reasonable precaution to ensure that any attachment to this e-mail has
been checked for viruses, it is strongly recommended that you carry out your
own virus check before opening any attachment, as we cannot accept liability
for any damage sustained as a result of software virus infection. Axxia Systems
reserves the right to monitor and record e-mails sent to axxia.com, and senders
of such messages shall be taken to consent to this. |
- Re: Custom Deserializer for xsd:dateTime Good David
- Re: Custom Deserializer for xsd:dateTime Benjamin Levy
- RE: Custom Deserializer for xsd:dateTime Good David