DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22803>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22803 Debugging handler chains harder than it needs to be Summary: Debugging handler chains harder than it needs to be Product: Axis Version: current (nightly) Platform: Other OS/Version: Other Status: NEW Severity: Normal Priority: Other Component: Basic Architecture AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] Due to the way SimpleChain is written, it is difficult to step over superfluous code and step into interesting code in order to follow Axis' execution path. This patch just splits up some code so that it is easier to debug. diff -r1.59 SimpleChain.java 150c150,151 < visitor.visit((Handler)enumeration.nextElement(), msgContext); --- > Handler h = (Handler) enumeration.nextElement(); > visitor.visit(h, msgContext);
