Using plain java.net I can use this sequence to obtain an error message submitted by the HTTP server: HttpURLConnection conn = ...; conn.connect(); InputStream inputStream = conn.getErrorStream();
How can I get an InputStream representing the error stream when I'm using HttpComponents? --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
