Hi, I response to myself for others helps and possible patch (I did create an issue) the anwser is to change : ((PostMethod)method).setRequestBody(new ByteArrayInputStream(baos.toByteArray()));
into RequestEntity rq = new ByteArrayRequestEntity(baos.toByteArray()); ((PostMethod)method).setRequestEntity(rq); And it will works. but NTLM sucks! Le jeudi 10 FÃvrier 2005 17:31, Charles-Alexandre Sabourdin a Ãcrit : > http://issues.apache.org/jira/browse/AXIS-1689 > I am block at that point with this exception > org.apache.commons.httpclient.ProtocolException: Unbuffered entity > enclosing request can not be repeated. -- Charles-Alexandre SABOURDIN -----------------
