I've recently picked up a project which has a rather nasty build process. Hand coded XSD schemas are read by JAXB to generate a Java model of classes and factories, which is used in hand coded Java web service classes (annotated), which are then deployed to a server, which is used as a source to read the complete WSDLs from in order to generate a second Java based model which includes the service and factory classes for the complete WSDL, which is used in client programs.
This sounds aweful and I don't think I need it to be so complicated so at some stage I'd like to chuck all this away and either
- Hand craft the WSDLs, generate a full model and add service code.
- Or - Write the service and model classes and generate WSDLs as necessary on the server at run time.
Either way I want to end up with one source base for the model which both the server and clients can use and have one "source of truth" for what the model should be, where as at the moment I feel like I have several.
At the moment I'm leaning towards the second option, but which would you choose? And which technologies would you use?