我从http获取一个inputStream,没有有效负载但是content-Type set。我想将这个inputStream发送到另一个servlet。代码如下: -
Client client = ClientBuilder.newClient();
Invocation.Builder builder = client.target(url).request();
Response response = builder.post(Entity.entity(inputStream, contentType));
这样做会引发错误
Caused by: javax.ws.rs.ProcessingException: java.lang.IllegalStateException: IllegalStateException invoking http://192.168.7.2:8181/url: Already connected
但是如果我尝试使用带有效负载的inputStream,代码工作正常。 我正在使用apache-CXF和JAX-RS。
周围有工作吗?