Hi

I have a service interface that looks like follows:

public interface MyService
{
  public void doWork(MyWork work);
}

By default the doWork interface operation would have 2 messages
associated with it
in the generated WSDL when using the simple frontend e.g:

<wsdl:message name="doWork">
    <wsdl:part element="tns:doWork" name="parameters">
    </wsdl:part>
  </wsdl:message>
  <wsdl:message name="doWorkResponse">
    <wsdl:part element="tns:doWorkResponse" name="parameters">
    </wsdl:part>
  </wsdl:message>

Are there any configuration options available that will
force the simple frontend to exclude the <method name>Response
messages from the generated WSDL for all interface operations with
a void return type?

Thanks
Hannes

Reply via email to