You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2015/02/20 22:29:09 UTC

svn commit: r1661229 - /jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HttpWebdav.java

Author: pmouawad
Date: Fri Feb 20 21:29:08 2015
New Revision: 1661229

URL: http://svn.apache.org/r1661229
Log:
Bug 57613 - HTTP Sampler : Added CalDAV verbs (REPORT, MKCALENDAR)
Bugzilla Id: 57613

Modified:
    jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HttpWebdav.java

Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HttpWebdav.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HttpWebdav.java?rev=1661229&r1=1661228&r2=1661229&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HttpWebdav.java (original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HttpWebdav.java Fri Feb 20 21:29:08 2015
@@ -39,7 +39,9 @@ public final class HttpWebdav extends Ht
                     HTTPConstants.COPY,
                     HTTPConstants.MOVE,
                     HTTPConstants.LOCK,
-                    HTTPConstants.UNLOCK
+                    HTTPConstants.UNLOCK,
+                    HTTPConstants.REPORT,
+                    HTTPConstants.MKCALENDAR
             }));
     
     private String davMethod;