Empty soapAction in generated WSDL
问题 I'm trying to generate a WSDL from my Java code using JAX-WS. Everything seems to work OK, except that for my operations in the WSDL the soapAction remains empty. Here is my code: @WebService public class MyClass { public MyStuff queryStuff(String myParam) { return null; } } The generated WSDL contains this: <wsdl:operation name="queryStuff"> <wsdlsoap:operation soapAction=""/> <wsdl:input name="queryStuffRequest"> <wsdlsoap:body use="literal"/> </wsdl:input> <wsdl:output name=