-
Bug
-
Resolution: Fixed
-
P2
-
5.0
-
b01
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2147166 | 7 | Michael McMahon | P3 | Closed | Fixed | b12 |
JDK-2147660 | 6u2 | Michael McMahon | P4 | Resolved | Fixed | b01 |
JDK-2148833 | 1.4-pool | Abhijit Saha | P3 | Closed | Won't Fix |
Some of the JAX-WS applications send a lot of data in web service requests. JAX-WS uses HttpURLConnection to send the web service request. All this data is buffered in sun.net.www.http.PosterOuputStream and it remains until URLConnection is GCed. JAX-WS keeps a referece to URLConnection (even after it reads the response) to compute cerain things(for e.g: HTTP headers) lazily using URLConnection. There is no use to keep this PosterOuputStream once the request is sent. We would want the reference to PosterOuputStream to be set null at an appropriate place and thus it will reduce the memory footprint.
- backported by
-
JDK-2147660 Reduce the memory foot print for HttpURLConnection
-
- Resolved
-
-
JDK-2147166 Reduce the memory foot print for HttpURLConnection
-
- Closed
-
-
JDK-2148833 Reduce the memory foot print for HttpURLConnection
-
- Closed
-