HttpClient and streaming xml out

2004-07-07 Thread Tim Wild
Hi all, We have the need to connect to a server and authenticate using client certificates, then stream an xml request out to it. I can do the client cert stuff, but can streaming out the xml be done with HttpClient? Our current code (without client cert support) is below. The other method

Re: HttpClient and streaming xml out

2004-07-07 Thread Oleg Kalnichevski
Tim, HttpClient 2.0 supports a reverse model compared to HttpURLConnection. Instead of providing you with an output stream it can read the request body directly from an input stream and write it to the socket output stream for you