I need to access an invalid web service where some fields in the WSDL are of type xs: date, but I have to fill them in as xs: dateTime.
Can I use a JAXB binding file to change the type of a field in WSDL?
Excerpt from WSDL:
<xs:sequence> <xs:element name="startTime" type="xs:date" /> <xs:element name="stopTime" type="xs:date" /> </xs:sequence>
peter source share