Hello.
I would like to know if anyone can recommend a good library to generate java webservices stubs as clients.
Currently I'm using a product which has embedded a generator which only needs the WSDL and then creates the needed classes and methods.
My problems is it throws warnings and doesn't create any method for some webservices I'm trying to use.
The real problem is it doesn't explain what the problem is ( so I can go with the owner of the webservice and have it modified ) nor let me modify the ouput so I can probably fix the problem my self.
Yet, the owners of the webservices ( because this happens with several different ws ) say their ws runs fine and actually if I use soapUI they actually work!!!
I took a quick look at the libraries used by soapUI it self and I looks promising.
I know there is Axis which should do the work, but my concern is that my failing generator is using that library already ( which makes me thing it will fail again )
And lately I don't know if these two libraries generate the java source stub or only have methods like
Object [] args = ...;
service.inkvoke("updateCustomer", args );
When what I would like to have is something like:
CustomerWs cws = ....
cws.updateCustomer(custId, custName, custAddress /*etc*/ );
So, anyone has a GOOD ws stubs generator that can recommend?
I'm about to handcode my own, but it will definitely take several days to be acceptable