Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for smb1Client (0.07 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

     *
     * <p>
     * Usage example:
     * </p>
     *
     * <pre>
     * {@code
     * SmbClient smbClient = new SmbClient();
     * smbClient.init();
     * ResponseData responseData = smbClient.doGet("smb://example.com/share/file.txt");
     * // Process the responseData
     * smbClient.close();
     * }
     * </pre>
     *
     * @author shinsuke
     */
    public class SmbClient extends AbstractCrawlerClient {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Sep 18 09:30:45 UTC 2025
    - 22.5K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java

     * </p>
     *
     * <pre>
     * {@code
     * SmbClient smbClient = new SmbClient();
     * smbClient.init();
     * ResponseData responseData = smbClient.doGet("smb1://example.com/share/file.txt");
     * // Process the responseData
     * smbClient.close();
     * }
     * </pre>
     *
     */
    public class SmbClient extends AbstractCrawlerClient {
        private static final Logger logger = LogManager.getLogger(SmbClient.class);
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Sep 18 09:30:45 UTC 2025
    - 23K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbClientTest.java

    import org.dbflute.utflute.core.PlainTestCase;
    
    /**
     * @author shinsuke
     *
     */
    public class SmbClientTest extends PlainTestCase {
    
        public void test_doGet_accessTimeoutTarget() {
            SmbClient client = new SmbClient() {
                @Override
                protected ResponseData getResponseData(final String uri, final boolean includeContent) {
                    try {
                        Thread.sleep(2000);
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbClientTest.java

            StandardCrawlerContainer container = new StandardCrawlerContainer()//
                    .singleton("smbClient", SmbClient.class)//
                    .singleton("mimeTypeHelper", MimeTypeHelperImpl.class);
            smbClient = container.getComponent("smbClient");
            Map<String, Object> params = new HashMap<>();
            SmbAuthentication auth1 = new SmbAuthentication();
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.crawler.client.fs.FileSystemClient;
    import org.codelibs.fess.crawler.client.ftp.FtpClient;
    import org.codelibs.fess.crawler.client.smb.SmbClient;
    import org.codelibs.fess.crawler.entity.ResponseData;
    import org.codelibs.fess.crawler.exception.CrawlingAccessException;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java

                }
                if (!smbAuthList.isEmpty()) {
                    factoryParamMap.put(SmbClient.SMB_AUTHENTICATIONS_PROPERTY, smbAuthList.toArray(new SmbAuthentication[smbAuthList.size()]));
                }
                if (!smb1AuthList.isEmpty()) {
                    factoryParamMap.put(org.codelibs.fess.crawler.client.smb1.SmbClient.SMB_AUTHENTICATIONS_PROPERTY,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  7. README.md

    #### Client Architecture
    - **HcHttpClient**: HTTP/HTTPS client using Apache HttpComponents
    - **FileSystemClient**: File system access
    - **FtpClient**: FTP protocol support
    - **SmbClient**: SMB/CIFS network shares
    - **StorageClient**: Cloud storage integration
    
    #### Content Processing Pipeline
    - **Extractors**: Content extraction from various formats
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Aug 31 05:32:52 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

                    RANDOM.nextBytes(clientChallenge);
                    java.util.Arrays.fill(clientChallenge, 8, 24, (byte) 0x00);
    
                    // NTLMv1 w/ NTLM2 session sec and key exch all been verified with a debug build of smbclient
    
                    final byte[] responseKeyNT = NtlmPasswordAuthentication.nTOWFv1(password);
                    final byte[] ntlm2Response =
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java

                        }
                    } else {
                        File outputFile = null;
                        try {
                            outputFile = createTempFile("crawler-SmbClient-", ".out", null);
                            final GetObjectArgs args = GetObjectArgs.builder().bucket(bucketName).object(path).build();
                            CopyUtil.copy(minioClient.getObject(args), outputFile);
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 17.9K bytes
    - Viewed (2)
Back to top