I'm developing a C# .Net Application that is executing on a system located in the Central Time Zone. The application gets information from a third party using an API they provide. I have used the WSDL to produce the code that my application access the API with...their reporting API allows you to define a start date and end date for the report. These are C# DateTime fields and XSD:dateTime. Now when I set the start date and end dates and allow the API to create the SOAP messages the dates don't always include a Time Zone unless I set the date fields using the ToLocalTime method; however, the method will create the DateTime fields in the Central Time Zone (CST) but I need to have it create these fields in the Pacific Time Zone (PST). If I set my machine time to PST all is good...but of course that causes other time issues. What methods can I use to control the formatting of the DateTime? Alternatively, is there a application setting that can be set in C# that allows timezone control?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
I think you will be able to achieve this by using System.TimeZoneInfo. For example:
|
|||
|
|
I think you have two options. Obviously what you can do will depend on how the target system handle the date times it receives. 1- Convert the datetime to the target timezone and send the request without timezone info. This would assume that the target system will accept a datetime that does not have timezone info as being in the PST timezone. 2- Change to using DateTimeOffset. This will allow you to explicitly specify the timezone offset and will be serialized with the timezone info you specified. If possible I would go for option 2. |
|||||||
|