I have a issue with ConverterUtil.java file "convertToString" method. This method is used by stubs and it tries to convert the date into string. The problem i have is when it tries to convert the date which is in improper format axis error occurs and we are unable to recieve the response.
Acutally converterutil is doing fine as when it receives the dateTimestamp is not correct & it has letter "T" between date & time something like "04-12-2010T00:00:00". We cannot change the how we received the format we recieve the date time unfortunately.
We want to override the converterUtil's "convertToString" method but it is static class so we cannot override. Repackaging of Axis2.jar is not good idea because we do want to do it. Also maven dependency is not helping us override the convertUtil as stub is used as JAR in our project & we already tried maven dependency but it is not over help.
ConverterUtil is used in the response class of the stub & we want to override it. So is it possible to modify wsdl2java in some way that it ignores the ConverterUtil file and start using custom file. In other words is it possible to control how stubs are actually generated.