Bug ID Number |
BUG-000091275 |
Submitted | October 8, 2015 |
Last Modified | June 25, 2025 |
Applies to | ArcGIS for Server |
Version found | 10.3.1 |
Status | Will Not Be Addressed
The development team has considered the issue or request and concluded it will not be addressed. The issue's Additional Information section may contain further explanation.
|
Additional Information
We apologize that we were unable to address this issue within the current product support cycle. If the issue continues to affect your work in a supported release, please contact Technical Support.
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