On Tue March 3 2009 11:57:09 pm Vishal Pahwa wrote: > Option 1 > "wsdl2java" plugin (CXF WSDL-to-Java code generation) > This generates the code from wsdl file but the java files it generates are > not proper. For instance, the java files (VO) are not implementing > Serializable interface, and other classes which needs to implement Remote > interface are not doing so, etc. Thus we are not able to use the java code > which this plugin generates.
Umm... The CXF plugin generates code that is completely spec compliant with the JAX-WS+JAXB specifications. According to the specs, the files should not be serializable (but there is a JAXB customization you CAN use to make them serializable). The SEI interface also should not implement/extend Remote. That's completely compliant with the specs. -- Daniel Kulp [email protected] http://www.dankulp.com/blog --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
