Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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>
share|improve this question
XJC binds both xs:date and xs:dateTime to java.util.Date anyway, so the generated code is no different. – skaffman Mar 29 '11 at 15:43
But I'm missing time portion in my request, when the type is xs:date. – peter Mar 29 '11 at 15:44

1 Answer

You can use the @XmlSchemaType annotation to configure the XML representation:

@XmlElement(name = "date-of-birth")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dateOfBirth; 

For more information see:

share|improve this answer
I'm using CXF which uses JAXB to generate Java stubs to access the web service. The type of the generated fields is XMLGregorianCalendar, I can live with that but when I send the request the SOAP fields should be filled with "2011-03-29T15:00:00.000+02:00" instead of "2011-03-29+02:00" for example. – peter Mar 29 '11 at 16:06
@peter - Can you modify your model classes with the @XmlSchemaType annotation, or do you need to use what is generated? – Blaise Doughan Mar 29 '11 at 18:15
Hi, I need to use the generated sources. It's more of theoretical interest for me because the provider of the WSDL will fix the bug in their next release and the project I work for is still in the development phase. I already use a JAX-WS bindings file to fix problems with the WSDL when an Element has the same name like an Attribute in a xs:sequence. So the question is more JAX-WS related than with JAXB I mixed this up. – peter Mar 31 '11 at 8:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.