You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 28, 2018. It is now read-only.
I'am working on a project using Client API,the webservice API provided by other company use a DELETE request with body.
what can I do with it?
by this?: method("DELETE",Entity.entity(json.toString(),MediaType.APPLICATION_JSON_TYPE));
The text was updated successfully, but these errors were encountered:
sosoeo
changed the title
jersey 2.x Client API do not support DELETE with Entity.entity.. body, why?
does jersey 2.x Client API support DELETE with a body ?
Apr 2, 2018
method("DELETE",Entity.entity(json.toString(),MediaType.APPLICATION_JSON_TYPE));
this will cause a error:
ijava.lang.IllegalStateException: Entity must be null for http method DELETE.
what should I do? ,while, RESTeasy have no such limitation?
I'am working on a project using Client API,the webservice API provided by other company use a DELETE request with body.
what can I do with it?
by this?: method("DELETE",Entity.entity(json.toString(),MediaType.APPLICATION_JSON_TYPE));
The text was updated successfully, but these errors were encountered: