I'm calling a external web service with a "Web Service Step". The serialization of a java.util.Date field generates for example this line :: <documentdate>2016-08-10+01:00</documentdate> Is there a way to change this behavior so the serialization converts the date to string without the timezone? asked 10.08.2016 at 12:31 tiago |
Hi tiago You may want to create a override, call
1st approach You may want to package your class into a JAR file, put it in the 2nd approach Long time ago, our project also have a similar issue when we want to control the format of
The idea is to replace the field answered 30.08.2016 at 02:27 Genzer Hawker |
Once you sign in you will be able to subscribe for any updates here
By RSS:Markdown Basics
Tags:
Asked: 10.08.2016 at 12:31
Seen: 3,330 times
Last updated: 30.08.2016 at 02:27
By now the only way i found to remove the timezone data was to modify the generated code. I also tried this solutions http://stackoverflow.com/a/6322336/1055375, http://stackoverflow.com/a/5484319/1055375 but it didnt worked for me