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 a problem about conversion of data types from wsdl to java with xmlbeans scomp.

The problem is, xs:date type in wsdl's xsd is not converted to java.util.Date but java.util.Calendar by xmlbeans. So the object ,which is created by xmlbeans, is expecting a Calendar object instead of Date object.

How can I convert it to Date object

share|improve this question
why not convert your dates to/from Calendar object? The Calendar's getTime and setTime methods are all you need. – Brent Worden Mar 9 '11 at 15:34
Of course, but the web service demands it in a format like dd.mm.yyyy. On the other hand, they receive this data as java.util.Date. But calendar is not like this format. So? – Ali Mar 10 '11 at 11:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.