Axis marshaller

I have a group of classes that were created using wsdl2java (Axis 1.4), and I'm looking for a way to undo and marshal data from / to String and Object. I wrote unmarshaller JAXB, which works well for some of our new internal objects, since we used xjc to create classes, but did not manage to convert the old axis classes and must find a marshal / non-marshal solution for as-is code.

Can someone please indicate me the direction.

Thanks!

+6
source share
1 answer

I found the answer to my question, so the idea was worth publishing.

Found a decent link that describes the process using Axis: http://bwithers.wordpress.com/2006/07/29/serializing-an-axis-javabean-object-to-xml/

I still prefer JAXB on the axis, but that will do it.

+6
source

Source: https://habr.com/ru/post/886886/


All Articles