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=15741>. 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=15741 TCP Monitor does not handle WebDAV methods in proxy mode Summary: TCP Monitor does not handle WebDAV methods in proxy mode Product: Axis Version: 1.1beta Platform: Other URL: http://www.webdav.org OS/Version: Other Status: NEW Severity: Minor Priority: Other Component: Samples AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] HTTP methods such as "OPTIONS" do not work in org.apache.axis.utils.tcpmon when it's in proxy mode. It's likely that it won't work with any standard HTTP methods beyond GET and POST as well. The fix is simple, remove all references to the method name: 787,788d786 < if ( bufferedData.startsWith( "GET " ) || < bufferedData.startsWith( "POST " )) { 824d821 < } 1437d1433 < if ( text.startsWith("POST ") || text.startsWith("GET ") ) { 1470d1465 < }