The date format which is output as a response to the Web Service client by Axis2 is formatted as \"2009-08-28+01:00\". I would like to change this to show on
There is a Calendar#clear method that will accomplish what you need. To get rid of the timezone offset simply do the following:
cal.clear(Calendar.ZONE_OFFSET);
Note that a time without a timezone offset is ambiguous. It leaves the consumer of the time to guess the UTC offset.