.NET and Axis Interop
If you have the wsdl for any service you can communicate.
At least that is the theory.
Axis through its WSDL2Java tool will generate all code required (and testing if requested) for a service defined by wsdl. It actually works alot better than expected. In implementing a stock ticker service, I am using the services provided by SwanandMokashi, and its associated definition. Run
One quite amazing part is the ability to generate serialized types based on the definition.
Definitely a leg up when doing contract-first driven development.
At least that is the theory.
Axis through its WSDL2Java tool will generate all code required (and testing if requested) for a service defined by wsdl. It actually works alot better than expected. In implementing a stock ticker service, I am using the services provided by SwanandMokashi, and its associated definition. Run
java -classpath axis.jar;commons-discovery.jar;commons-logging.jar;jaxrpc.jar;log4j-1.2.8.jar;saaj.jar;wsdl4j.jar org.apache.axis.wsdl.WSDL2Java (WSDL-file-URL)
and voila - bob's your uncle.One quite amazing part is the ability to generate serialized types based on the definition.
Definitely a leg up when doing contract-first driven development.
Comments