https://issues.apache.org/bugzilla/show_bug.cgi?id=56141

--- Comment #13 from Dan <[email protected]> ---
>From the MultipartEntityBuilder, the setLaxMode() changes something to allow it
to work


    public MultipartEntityBuilder setLaxMode() {
        this.mode = HttpMultipartMode.BROWSER_COMPATIBLE;
        return this;
    }
    public MultipartEntityBuilder setStrictMode() {
        this.mode = HttpMultipartMode.STRICT;
        return this;
    }

I haven't delved deeper than this, only that it stopped the problem from
happening when observing in wire shark, which was enough to get me rolling on
what I was trying to accomplish

But you could very well be right. "The multipart dissector could not find the
required boundary parameter." is the error description of wireshark's internal
parser. 

If you know the underlying answer, I'd be interested!

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to