Greetings, I'm new to Axis. Is it possible to explicitly serialize/deserialize Java Beans to/from XML using Axis (where these Java Beans were built by using WSDL2Java).
E.g. In my JUnit I might have something like this:: AA_T aa = new AA_T(); // where AA_T is a Bean from WSDL2Java aa.setFoo( "xyz" ); String xml = aa.toXML().toString(); I'm looking for something akin to the new XMLEncoder/XMLDecoder in JDK 1.4. Is there a way I can do this?? Thanks much, -- Chris
