What tools exist in Java that are equivalent to svcutil.exe for .NET?
A:
I don't dabble java but I've seen co-workers use wsdl2java to generate proxy stub classes.
RandomNoob
2010-01-07 14:17:41
+2
A:
It depends on what you are using svcutil for. To generate client code to access a web service, you would normally use wsimport. To generate a WDSL from server code, you would use wsgen.
Note: There is absolutely no need to use AXIS to publish or consume SOAP based web services in Java, as the other answers seem to imply, unless you have some very specific requirements. Support for plain SOAP clients is included in the standard API and all J2EE compliant application servers must provide server support.
jarnbjo
2010-01-07 14:21:26