
Tag archives for generation
Hi,
Just a post concerning the generation of JAVA webservice client for CXF and AXIS web services via an ANT script.
More information on sites on proxies creation:
http://cxf.apache.org/docs/wsdl-to-java.html
http://axis.apache.org/axis/java/ant/axis-wsdl2java.html
First, download the CXF and AXIS SDK librairies:
C:\SDK\axis2-1.7.7
C:\SDK\cfx-3.0.3
C:\SDK\jdk1.7.0_17
Create a specific folder for the generated proxies sources (for example, WSProxyGenerator\src_generated)
References all needed libairies (JAR) in your project (for example lib/*.jar)
Create a properties file for the ...more»
Hi,
A post with concrete examples concerning the generation of Types/POJO from a XSD file, the serialization of these objects/POJO to XML and finally the validation of XML with XSD.
Generate Custom Types from XSD file
XSD file myXsdFile.xsd:
CSharp sources and types generator:
//....
After execution, a CSharp file MyCustomTypes.cs containing all types of XSD file is generated:
Serialization of objects to XML
Instantiation of POJO objects ...more»
