src/share/classes/sun/rmi/transport/proxy/HttpSendSocket.java

Print this page

        

*** 201,211 **** contentType + lineSeparator; } message += "HttpSendSocket.readNotify: response body: "; try { ! DataInputStream din = new DataInputStream(in); String line; while ((line = din.readLine()) != null) message += line + lineSeparator; } catch (IOException e) { } --- 201,211 ---- contentType + lineSeparator; } message += "HttpSendSocket.readNotify: response body: "; try { ! BufferedReader din = new BufferedReader(new InputStreamReader(in)); String line; while ((line = din.readLine()) != null) message += line + lineSeparator; } catch (IOException e) { }