Question

Can someone help me in getting more information about
BasicHttpEntityEnclosingRequest(String method, String uri).

This did not help me understand the said topic.

Était-ce utile?

La solution

What are you trying to do with BasicHttpEntityEnclosingRequest? An entity in httpcomponents refers to the body or the payload of the request.

You should be using sub classes of HttpEntityEnclosingRequestBase that is HttpPut, HttpPost or HttpPatch when sending a HTTP request that has a body. http://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/client/methods/HttpEntityEnclosingRequestBase.html

You should read the HttpClient Tutorial, particularly chapter 1 to get you started.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top