Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for connectionTimeout (0.07 seconds)

  1. fess-crawler-lasta/src/main/resources/crawler/client.xml

    		instance="prototype">
    		<property name="connectionTimeout">15000</property>
    		<property name="soTimeout">30000</property>
    	</component>
    
    	<!-- HC4 (Alternative - for backward compatibility) -->
    	<component name="internalHc4HttpClient" class="org.codelibs.fess.crawler.client.http.Hc4HttpClient"
    		instance="prototype">
    		<property name="connectionTimeout">15000</property>
    		<property name="soTimeout">30000</property>
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Jan 08 04:17:06 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/app/pager/FailureUrlPagerTest.java

            failureUrlPager.id = "testId";
            failureUrlPager.url = "http://test.example.com";
            failureUrlPager.threadName = "crawler-1";
            failureUrlPager.errorCount = "5";
            failureUrlPager.errorName = "ConnectionTimeout";
            failureUrlPager.setAllRecordCount(100);
            failureUrlPager.setAllPageCount(10);
            failureUrlPager.setExistPrePage(true);
            failureUrlPager.setExistNextPage(true);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

     *
     * @author shinsuke
     */
    public abstract class HcHttpClient extends AbstractCrawlerClient {
    
        /** Property name for connection timeout setting */
        public static final String CONNECTION_TIMEOUT_PROPERTY = "connectionTimeout";
    
        /** Property name for socket timeout setting */
        public static final String SO_TIMEOUT_PROPERTY = "soTimeout";
    
        /** Property name for proxy host setting */
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Jan 08 04:17:06 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  4. CLAUDE.md

    HcHttpClient (abstract base class)
        ├── Hc4HttpClient
        └── Hc5HttpClient
    ```
    
    Switch via system property: `-Dfess.crawler.http.client=hc4` or `hc5` (default)
    
    **Key Properties**: `connectionTimeout`, `soTimeout`, `proxyHost`, `proxyPort`, `userAgent`, `robotsTxtEnabled`, `ignoreSslCertificate`, `maxTotalConnection`, `defaultMaxConnectionPerRoute`
    
    ### CrawlerClientFactory
    
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Mar 12 03:39:20 GMT 2026
    - 8.1K bytes
    - Click Count (0)
Back to Top