Looking to fix TUSCANY-3931 about the clients not working with the
wsdl in the domain registry for async services and i wonder what the
wsdl should really look like. For example with the service interface:
@AsyncInvocation
public interface Service1AsyncServer {
@AsyncFault( {BusinessFault1.class, BusinessFault2.class} )
public void operation1Async( String input, ResponseDispatch<String>
handler );
}
would we expect the generated wsdl that goes in the domain registry be
that or the equivalent synchronous version, so with an operation1
instead of operation1Async?
...ant