Edit in GitHubLog an issue

How Tos

The samples and documentation should get you quickly up and running with PDF Accessibility Auto-Tag capabilities in the PDFServices SDK including:

  • Improving the accessibility of PDFs

For code examples illustrating other PDF actions including those below, see the PDFServices SDK :

  • Creating a PDF from multiple formats, including HTML, Microsoft Office documents, and text files
  • Exporting a PDF to other formats or an image
  • Combining entire PDFs or specified page ranges
  • Using OCR to make a PDF file searchable with a custom locale
  • Compress PDFs with compression level and Linearize PDFs
  • Protect PDFs with password(s) and Remove password protection from PDFs
  • Common page operations, including inserting, replacing, deleting, reordering, and rotating
  • Splitting PDFs into multiple files

Custom client timeout configuration

The APIs use inferred timeout properties and provide defaults. However, the SDK supports custom timeouts for the API calls. You can tailor the client timeout settings for your environment and network speed. This custom configuration is only applicable for client-side timeouts and not the server side. In addition to the details below, you can refer to working code samples:

Java timeout configuration

Available properties:

  • connectTimeout: Default: 2000. The maximum allowed time in milliseconds for creating an initial HTTPS connection.
  • socketTimeout: Default: 10000. The maximum allowed time in milliseconds between two successive HTTP response packets.

Override the timeout properties via a custom ClientConfig class:

Copied to your clipboard
1ClientConfig clientConfig = ClientConfig.builder()
2 .withConnectTimeout(3000)
3 .withSocketTimeout(20000)
4 .build();

Python timeout configuration

Available properties:

  • connectTimeout: Default: 4000. The number of milliseconds Requests will wait for the client to establish a connection to Server.
  • readTimeout: Default: 10000. The number of milliseconds the client will wait for the server to send a response.

Override the timeout properties via a custom ClientConfig class:

Copied to your clipboard
1client_config = ClientConfig.builder()
2 .with_connect_timeout(10000)
3 .with_read_timeout(40000)
4 .build()
Was this helpful?
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.