this("ActionDumpPipe", binding, next);
super(next); this.name = name; this.binding = binding;
Copy constructor. super(that, cloner); this.name = that.name; this.binding = that.binding;
super(that, cloner); this.name = that.name; this.binding = that.binding;
return new ActionDumpPipe(this, cloner);
if (packet.getMessage() != null) dumpAction(packet);
try { Message m = packet.getMessage().copy(); String to = m.getHeaders().getTo(binding.getAddressingVersion(), binding.getSOAPVersion()); String action = m.getHeaders().getAction(binding.getAddressingVersion(), binding.getSOAPVersion()); System.out.println("{To, Action}: {" + to + ", " + action + "}"); } catch (Exception e) { e.printStackTrace(); }
dump(packet); Packet reply = next.process(packet); dump(reply); return reply;