First I had trouble actually generating the stubs using the WSDL2C.bat file supplied in the package. I got past this obstacle by changing the line that read:
java -classpath %AXIS2_CLASSPATH% org.apache.axis2.wsdl.WSDL2C %*
to:
java -classpath "%AXIS2_CLASSPATH%" org.apache.axis2.wsdl.WSDL2C %*
Since I can see no downside to it, may I suggest that this change be made to the distribution package. It could save a lot of puzzlement and frustration.
The other problems cause the generated code to get compilation errors. The second is that declarations are generated that are not at the top of their blocks. I see code like this:
This is fine in C++ but not in plain C.
The third problem is one that I have yet to fully analyze and I will post about it later.
Pete Maclean