[
https://issues.apache.org/jira/browse/AXIS2-3423?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12563730#action_12563730
]
dcshock edited comment on AXIS2-3423 at 1/29/08 3:27 PM:
-------------------------------------------------------------
I have attached a ConverterUtil class that fixes this bug. I noticed the same
behavior when utilizing a .Net client with one of my we services.
was (Author: dcshock):
This ConverterUtil has fixes for the bug in question.
> ConverterUtil.convertToDateTime is adding portion of fractions of a second to
> time as milliseconds during conversion
> --------------------------------------------------------------------------------------------------------------------
>
> Key: AXIS2-3423
> URL: https://issues.apache.org/jira/browse/AXIS2-3423
> Project: Axis 2.0 (Axis2)
> Issue Type: Bug
> Components: databinding
> Affects Versions: 1.4, nightly
> Environment: Java 1.5
> Reporter: Rob Decker
> Attachments: ConverterUtil.java
>
>
> In org.apache.axis2.databinding.utils.ConverterUtil method convertToDateTime
> lines 946 to 955 of the 20071231 nitely build is trying to round the
> fractions of a millisecond but is instead parsing out millionths of a second,
> stripping the thousands and adding the left over millionths of a second to
> time:
> if (milliSecondPartLength != 3){
> // milisecond part represenst the fraction of the second so
> we have to
> // find the fraction and multiply it by 1000. So if
> milisecond part
> // has three digits nothing required
> miliSecond = miliSecond * 1000;
> for (int i = 0; i < milliSecondPartLength; i++) {
> miliSecond = miliSecond / 10;
> }
> }
> calendar.set(Calendar.MILLISECOND, miliSecond); // <-- this adds
> millionths of a second as milliseconds
> The loop should be:
> double ms = milliSecond * 1000;
> for (int =0; i < milliSecondPartLength; i++) {
> ms = ms /10;
> }
> miliSecond = (ms%1)*1000;
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]