Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for removeAttribute (0.24 sec)

  1. src/main/java/jcifs/http/NtlmHttpFilter.java

                        return null;
                    }
                    /* negotiation complete, remove the challenge object */
                    ssn.removeAttribute("NtlmHttpChal");
                }
                else {
                    String auth = new String(Base64.decode(msg.substring(6)), "US-ASCII");
                    int index = auth.indexOf(':');
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

                        return null;
                    }
                    /* negotiation complete, remove the challenge object */
                    ssn.removeAttribute( "NtlmHttpChal" );
                } else {
                    String auth = new String(Base64.decode(msg.substring(6)),
                            "US-ASCII");
                    int index = auth.indexOf(':');
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/NetworkExplorer.java

                }
                else {
                    doFile(req, resp, file);
                }
            }
            catch ( SmbAuthException sae ) {
                if ( ssn != null ) {
                    ssn.removeAttribute("npa-" + server);
                }
                if ( sae.getNtStatus() == NtStatus.NT_STATUS_ACCESS_VIOLATION ) {
                    /*
                     * Server challenge no longer valid for
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 21.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/http/NetworkExplorer.java

                } else {
                    doFile( req, resp, file );
                }
            } catch( SmbAuthException sae ) {
                if( ssn != null ) {
                    ssn.removeAttribute( "npa-" + server );
                }
                if( sae.getNtStatus() == sae.NT_STATUS_ACCESS_VIOLATION ) {
                    /* Server challenge no longer valid for
                     * externally supplied password hashes.
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 22 03:57:31 GMT 2020
    - 19.7K bytes
    - Viewed (0)
Back to top