public Tube createClient(ClientTubeAssemblerContext context) {
Tube head = context.createTransportTube();
head = context.createSecurityTube(head);
head = context.createWsaTube(head);
head = new JreWssMUTube(context.getBinding(), head);
return context.createHandlerTube(head);
}