* Creates a {@link Tube} that performs SOAP mustUnderstand processing.
* This pipe should be before HandlerPipes.
*/
public @NotNull Tube createServerMUTube(@NotNull Tube next) {
if (binding instanceof SOAPBinding)
return new ServerMUTube(binding,next);
else
return next;
}