You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jmeter.apache.org by Felix Schumacher <fe...@internetallee.de> on 2016/10/02 18:48:51 UTC

Re: Http Request and management of multipart/form

Am 25.09.2016 um 00:06 schrieb Philippe Mouawad:
> Hello,
> Working on Bug 60015, I noticed that we have some issues in this code:
>          if (httpRequest instanceof HttpPost) {
>              String postBody = sendPostData((HttpPost)httpRequest);
>              result.setQueryString(postBody);
>          } else if (httpRequest instanceof HttpEntityEnclosingRequestBase) {
>              String entityBody =
> sendEntityData((HttpEntityEnclosingRequestBase) httpRequest);
>              result.setQueryString(entityBody);
>          }
>
>
> 1/ It appears that sendEntityData is partly a copy paste of the "else { //
> not multipart" part.
> 2/ multipart/form should be available for other methods than POST, I think
> all methods except GET, HEAD, UNLOCK, COPY can use multipart/form format
+1 on simplifying it and combining the POST and PUT-like parts.

A lot of people seem to want to send multipart/form requests while using 
PUT.

Multipart should not be the default for PUT, though. And I don't think 
it has to be in this release, as the inability to send multipart with 
PUT is quite old and I am afraid of changing too much without proper 
testing.

Felix
>
>


Re: Http Request and management of multipart/form

Posted by Philippe Mouawad <ph...@gmail.com>.
On Sun, Oct 2, 2016 at 8:48 PM, Felix Schumacher <
felix.schumacher@internetallee.de> wrote:

> Am 25.09.2016 um 00:06 schrieb Philippe Mouawad:
>
>> Hello,
>> Working on Bug 60015, I noticed that we have some issues in this code:
>>          if (httpRequest instanceof HttpPost) {
>>              String postBody = sendPostData((HttpPost)httpRequest);
>>              result.setQueryString(postBody);
>>          } else if (httpRequest instanceof HttpEntityEnclosingRequestBase)
>> {
>>              String entityBody =
>> sendEntityData((HttpEntityEnclosingRequestBase) httpRequest);
>>              result.setQueryString(entityBody);
>>          }
>>
>>
>> 1/ It appears that sendEntityData is partly a copy paste of the "else { //
>> not multipart" part.
>> 2/ multipart/form should be available for other methods than POST, I think
>> all methods except GET, HEAD, UNLOCK, COPY can use multipart/form format
>>
> +1 on simplifying it and combining the POST and PUT-like parts.
>
> A lot of people seem to want to send multipart/form requests while using
> PUT.
>
Yes

>
> Multipart should not be the default for PUT, though. And I don't think it
> has to be in this release, as the inability to send multipart with PUT is
> quite old and I am afraid of changing too much without proper testing.
>
I Agree

>
> Felix
>
>>
>>
>>
>


-- 
Cordialement.
Philippe Mouawad.