You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In spring-ws/spring-ws-core/src/main/java/org/springframework/ws/transport/TransportOutputStream.java when close is called if the output stream is already null it will attempt to open a connection just to close it. Recommend adding a null check.
@Override
public void close() throws IOException {
if (outputStream != null) {
getOutputStream().close();
}
}
The text was updated successfully, but these errors were encountered:
leaqui
added a commit
to leaqui/spring-ws
that referenced
this issue
Jul 31, 2021
In spring-ws/spring-ws-core/src/main/java/org/springframework/ws/transport/TransportOutputStream.java when close is called if the output stream is already null it will attempt to open a connection just to close it. Recommend adding a null check.
The text was updated successfully, but these errors were encountered: