Im Trying to convert the time to EST but its not working.
I Have used getCurrentDateString Service to check if im Getting datetime in EST.
i Have given input paramters as below
pattern: yyyy-MM-dd HH:mm:ss.SSSZZZ
TimeZone: EST or CST
but the problem is im getting the sameoutput when im passing either EST or CST.
i Have tried other time zones they are coming correct.
Also please suggest how can we convert any datetime to EST in webMethods using a flow service.
You can check Oracle timezone documentation for short timezone names . SoftwareAG doesn’t manage timezones, they let java do it. For CST, documentation indicates that it is depricated.
The webMethods Integration Server Built-In Services document also notes this deprecation. Perhaps you missed this when reviewing the doc during your troubleshooting
Note:
Because some three-letter abbreviations can represent multiple time zones (for example, “CST”
could represent both U.S. “Central Standard Time” and “China Standard Time”), all abbreviations
are deprecated. Use the full name or custom time zone ID formats instead.
It also notes: “You can use the java.util.TimeZone.getAvailableIDs() method to obtain a list of the valid full name time zone IDs that your JVM version supports.”
You may find EST5EDT and CST6CDT are available in your JVM.