XML DateTime without TimeZone

1
Hi all, I would like to export a DateTime in an XML and pass it to a webservice. The issue I encountered is, that the receiving system does not accept the format with the ‘Z’ for time zone. What I get in the XML: 2019-02-14T18:25:32.888Z What I would like: 2019-02-14T18:25:32.888 Is it possible to not have the timestamp in XML format without the timezones?  
asked
1 answers
3

I found a solution to my problem by using the Webservice’s Body Template and parse the timestamp

formatDateTime($object/Date,'yyyy-MM-dd') + 'T' + formatDateTime($object/Date,'HH:mm:ss.SSS')

 

answered