Question

I'm generating a WSDL from a Java class using the @WebService annotation and running wsgen, triggered by a Maven build target.

The problem I have is the generated WSDL defines the parameters for the web service operations as arg0, ar1, arg2, etc instead of using the parameter names from the code. These names are not helpful to clients of the service attempting to figure out what needs to be passed in.

Is there a way to tell wsgen to grab and use the parameter names from the method - either by placing an annotation on the method or a parameter sent to wsgen?

Thanks!

Was it helpful?

Solution

Use the @WebParam annotation.

@WebMethod
public void thisMethodHasAWebParam(@WebParam(name="param1") String arg1) {
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top