Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 84 for error (0.12 sec)

  1. src/main/java/jcifs/NameServiceClient.java

         *            the hexcode of the name
         * @param scope
         *            the scope of the name
         * @return resolved addresses
         * @throws java.net.UnknownHostException
         *             if there is an error resolving the name
         */
        NetbiosAddress[] getNbtAllByAddress ( String host, int type, String scope ) throws UnknownHostException;
    
    
        /**
         * Retrieve all addresses of a host by it's address. NetBIOS hosts can
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/context/SingletonContext.java

                    try ( FileInputStream in = new FileInputStream(filename) ) {
                        p.load(in);
                    }
                }
    
            }
            catch ( IOException ioe ) {
                log.error("Failed to load config", ioe); //$NON-NLS-1$
            }
            p.putAll(System.getProperties());
            if ( props != null ) {
                p.putAll(props);
            }
            INSTANCE = new SingletonContext(p);
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 08:53:08 GMT 2019
    - 4.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/AllTests.java

        @AfterClass
        public static void closeContexts () throws CIFSException {
            for ( Entry<String, CIFSContext> ctx : CONTEXT_CACHE.entrySet() ) {
                if ( ctx.getValue().close() ) {
                    log.error("Context was still in use " + ctx.getKey());
                }
            }
        }
    
    
        static CIFSContext getCachedContext ( String context, Properties props ) throws CIFSException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 14.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbAuthException.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb;
    
    
    /**
     * The <code>SmbAuthException</code> encapsulates the variety of
     * authentication related error codes returned by an SMB server.
     * <p>
     * See <a href="../../../authhandler.html">jCIFS Exceptions and NtlmAuthenticator</a> for more information about
     * <code>SmbAuthException</code>.
     */
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/config/BaseConfiguration.java

                    }
                    else if ( s.equalsIgnoreCase("WINS") ) {
                        if ( this.winsServer.length == 0 ) {
                            log.error("UniAddress resolveOrder specifies WINS however " + " WINS server has not been configured");
                            continue;
                        }
                        this.resolverOrder.add(ResolverType.RESOLVER_WINS);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  6. src/main/java/jcifs/smb1/netbios/NbtAddress.java

     * <code>getByName</code> methods can be used for that.
     *
     * @param host hostname to resolve
     * @throws java.net.UnknownHostException if there is an error resolving the name
     */
    
        public static NbtAddress getByName( String host )
                                            throws UnknownHostException {
            return getByName( host, 0x00, null );
        }
    
    /** 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        static final int PID = (int)( Math.random() * 65536d );
    
        static final int SECURITY_SHARE = 0x00;
        static final int SECURITY_USER  = 0x01;
    
        static final int CMD_OFFSET        = 4;
        static final int ERROR_CODE_OFFSET = 5;
        static final int FLAGS_OFFSET      = 9;
        static final int SIGNATURE_OFFSET  = 14;
        static final int TID_OFFSET        = 24;
        static final int HEADER_LENGTH     = 32;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/Kerb5Context.java

            Oid krbMechOid = null;
            try {
                krbNameOid = new Oid("1.2.840.113554.1.2.2.1");
                krbMechOid = new Oid("1.2.840.113554.1.2.2");
            }
            catch ( Exception e ) {
                log.error("Failed to initialize kerberos OIDs", e);
            }
    
            JGSS_KRB5_NAME_OID = krbNameOid;
            JGSS_KRB5_MECH_OID = krbMechOid;
        }
    
        private final GSSContext gssContext;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Aug 02 08:22:42 GMT 2018
    - 13.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/NtlmContext.java

        static {
            try {
                NTLMSSP_OID = new ASN1ObjectIdentifier("1.3.6.1.4.1.311.2.2.10");
            }
            catch ( IllegalArgumentException e ) {
                log.error("Failed to parse OID", e);
            }
        }
    
        private NtlmPasswordAuthenticator auth;
        private int ntlmsspFlags;
        private String workstation;
        private boolean isEstablished = false;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 15.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/dcerpc/DcerpcException.java

                }
            }
    
            return "0x" + Hexdump.toHexString(errcode, 8);
        }
    
        private int error;
        private Throwable rootCause;
    
        DcerpcException(int error) {
            super(getMessageByDcerpcError(error));
            this.error = error;
        }
        public DcerpcException(String msg) {
            super(msg);
        }
        public DcerpcException(String msg, Throwable rootCause) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.4K bytes
    - Viewed (0)
Back to top