My Axis 1.4 project runs correctly on the target machine when compiled in Netbeans. However, if I compile the project using my own Ant build script (which completes successfully), the application freezes on the source line:
Call call = (Call) service.createCall();
The verbose output of the Ant javac task indicates that the Call.class from the jaxrpc.jar is loaded, rather that the Call.class from axis.jar, when compiling the class for my java source file.
I have ensured that axis.jar is listed before jaxrpc.jar in the compile classpath.
This appears to be a dependency problem which is not correctly resolved in my version of the compilation...What am I doing wrong?