Typically you would be able to generate a CLIENT java class(es) based on a WSDL. However, that's not what I need here.
There is a Webservice that I want to create a proxy for. I need the proxy to be able to expose the exact same WSDL as the Webservice. The proxy will then translate the requests and hand them off to another system. Since I have the WSDL for the Webservice, I figure there may be a tool to generate the skeleton code (Java) for the proxy so that it can satisfy that WSDL. A tool would be handy because of the sheer number of operations this Webservice handles.
Once I have the skeleton code, I can go ahead and start writing the logic for each operation that the WSDL has.