From: lucian chirita [mailto:[EMAIL PROTECTED] 
> If the field value is a java.util.Date, I get this by marshalling the
bean:
> <value xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
> xsi:type="date">2007-02-14T15:36:11.800+02:00</value>

With xsi:type="date" you are specifying that you have defined a
user-defined type named "date" for this type.  Have you tried something
like this (I haven't tried this myself to make sure it works):

<value xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
       xmlns:xsd="http://www.w3.org/2001/XMLSchema";
       xsi:type="xsd:date">2007-02-14T15:36:11.800+02:00</value>

There you are directly specifying that the type is the XML Schema type
date, and not a user-defined type with the same name.  If you do not
specify a namespace for the type, then the "default" namespace for that
document is used.

        Eddie

---------------------------------------------------------------------
To unsubscribe from this list please visit:

    http://xircles.codehaus.org/manage_email

Reply via email to