I have to access a flawed web service where some fields in the WSDL have the type xs:date but I have to fill them as xs:dateTime.
Is it possible to use a JAXB Bindings file to change the type of a field in a WSDL?
A snippet of the WSDL:
<xs:sequence>
<xs:element name="startTime" type="xs:date" />
<xs:element name="stopTime" type="xs:date" />
</xs:sequence>
xs:dateandxs:dateTimetojava.util.Dateanyway, so the generated code is no different. – skaffman Mar 29 '11 at 15:43