Bug ID Number |
BUG-000091275 |
Submitted | October 8, 2015 |
Last Modified | July 28, 2020 |
Severity | Medium |
Applies to | ArcGIS for Server |
Version found | 10.3.1 |
Status | In Review
The issue is being reviewed. The review process ensures that the issue contains all necessary information and is easy to understand, that it is not a duplicate of an existing issue, and that it is a valid bug or enhancement request. During this phase, it is possible that you are contacted for clarification or additional information.
|
Workaround
Set TimeReference to the DataObjects:For .NET:TimeReference pTime = new TimeReference();pTime.TimeZoneNameID = "UTC";pTime.RespectsDaylightSavingTime = true;pTime.RespectsDynamicAdjustmentRules = true;DataObjects addDataObjects = new DataObjects(); addDataObjects.DataObjectArray = dArray; addDataObjects.TimeReference = pTime;For XML:
<!--REQUIRED-->
<TimeReference>
<TimeZoneNameID>UTC</TimeZoneNameID>
<!--Optional:-->
<RespectsDaylightSavingTime>true</RespectsDaylightSavingTime>
<!--Optional:-->
<RespectsDynamicAdjustmentRules>true</RespectsDynamicAdjustmentRules>
</TimeReference>
Steps to Reproduce