Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getResponseMessage (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            } catch (final IOException ex) {}
            return connection.getResponseCode();
        }
    
        @Override
        public String getResponseMessage() throws IOException {
            try {
                handshake();
            } catch (final IOException ex) {}
            return connection.getResponseMessage();
        }
    
        @Override
        public void disconnect() {
            connection.disconnect();
            handshakeComplete = false;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 22.1K bytes
    - Click Count (0)
  2. src/main/java/jcifs/http/NtlmHttpURLConnection.java

            handshake();
            return this.connection.getResponseCode();
        }
    
        @Override
        public String getResponseMessage() throws IOException {
            handshake();
            return this.connection.getResponseMessage();
        }
    
        @Override
        public void disconnect() {
            this.connection.disconnect();
            this.handshakeComplete = false;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 25.6K bytes
    - Click Count (0)
Back to Top