Ram,

You cannot convert the result of Date#getTime() to UnsignedInt because
UnsignedInt is a representation of the XML Schema type called
unsignedInt, and the value space of this type is limited to values
less than or equal to 4294967295 (see my link).

Andreas

On Mon, Dec 28, 2009 at 13:28, ram <[email protected]> wrote:
>
> Hi,
>     Thanks andreas. But the below link could not solve my problem. Any one 
> pls suggest me how to fix this issue
>
> Thanks & Regards,
> Ram
>
>
> --- On Sat, 5/12/09, Andreas Veithen <[email protected]> wrote:
>
> From: Andreas Veithen <[email protected]>
> Subject: Re: java.util.date convertion to UnsignedInt problem
> To: [email protected]
> Date: Saturday, 5 December, 2009, 4:04 PM
>
> Please have a look at [1].
>
> Andreas
>
> [1] http://www.w3.org/TR/xmlschema-2/#unsignedInt
>
> On Fri, Dec 4, 2009 at 17:13, Anup Mayank <[email protected]> wrote:
> >
> > /** validate the value against the xsd definition */
> > 79 public static boolean isValid(long iValue) {
> > 80 return !((iValue < 0L) || (iValue > 4294967295L));
> > 81 }
> > This is the source code of Unsigned int where it validates if a number is 
> > of proper value or not. I am not sure how the particular max number is 
> > chosen. But since your date value is out of range it is throwing exception. 
> > Axis folks please explain this range?
> >
> > Anup
> > On Fri, Dec 4, 2009 at 8:01 AM, ram <[email protected]> wrote:
> >>
> >> Hi,
> >>    I am trying to convert java.util.date to UnsignedInt(). I am getting 
> >> NumberFormatException
> >> I am fetching the date from database.  I am converting unsignedInt()  like 
> >> the following
> >>
> >>  new UnsignedInt(info.getdate.getTime())
> >>
> >>     when i print date i am getting 1259937492847.      so where do i am 
> >> doing mistake.
> >>  Can any onehelp to fix this issue.
> >>
> >>
> >> Thanks & Regards,
> >> Ram
> >>
> >> ________________________________
> >> The INTERNET now has a personality. YOURS! See your Yahoo! Homepage.
>
> ________________________________
> The INTERNET now has a personality. YOURS! See your Yahoo! Homepage.

Reply via email to