JavaPulse

a finger on the pulse of the freelance Java™ market in the Netherlands

Axis 1.4 dependency conflicts in Maven

Awhile back, I was converting an existing project from an Ant build to a Maven build. The project used Axis to send some soap messages. With the Ant build as a reference, I added the appropriate dependencies. But with the Maven build, the Axis call invoke method returned null without throwing an exception. Properly designed [...]

Configuring Maven2 plugin ‘axistools-maven-plugin’ for multiple executions

The project I was converting to Maven produces a war file containing an Axis-generated web service. I had to execute all 3 goals of the axistools-maven-plugin: java2wsdl, then wsdl2java, then admin.
Rebinding to a different phase and compiling generated sources after normal classes are already compiled
Normally, wsdl2java is bound to the generate-sources phase and both java2wsdl [...]