Croway commented on PR #1476: URL: https://github.com/apache/camel-website/pull/1476#issuecomment-3760840025
Works as expected: ``` $ curl -v -H "Accept: text/markdown" https://camel.apache.org/components/4.14.x/direct-component.html -L * Host camel.apache.org:443 was resolved. * IPv6: (none) * IPv4: 151.101.2.132 * Trying 151.101.2.132:443... * Connected to camel.apache.org (151.101.2.132) port 443 * ALPN: curl offers h2,http/1.1 * (304) (OUT), TLS handshake, Client hello (1): * CAfile: /etc/ssl/cert.pem * CApath: none * (304) (IN), TLS handshake, Server hello (2): * (304) (IN), TLS handshake, Unknown (8): * (304) (IN), TLS handshake, Certificate (11): * (304) (IN), TLS handshake, CERT verify (15): * (304) (IN), TLS handshake, Finished (20): * (304) (OUT), TLS handshake, Finished (20): * SSL connection using TLSv1.3 / AEAD-CHACHA20-POLY1305-SHA256 / [blank] / UNDEF * ALPN: server accepted h2 * Server certificate: * subject: CN=*.apache.org * start date: Nov 28 02:18:16 2025 GMT * expire date: Feb 26 02:18:15 2026 GMT * subjectAltName: host "camel.apache.org" matched cert's "*.apache.org" * issuer: C=US; O=Let's Encrypt; CN=R13 * SSL certificate verify ok. * using HTTP/2 * [HTTP/2] [1] OPENED stream for https://camel.apache.org/components/4.14.x/direct-component.html * [HTTP/2] [1] [:method: GET] * [HTTP/2] [1] [:scheme: https] * [HTTP/2] [1] [:authority: camel.apache.org] * [HTTP/2] [1] [:path: /components/4.14.x/direct-component.html] * [HTTP/2] [1] [user-agent: curl/8.7.1] * [HTTP/2] [1] [accept: text/markdown] > GET /components/4.14.x/direct-component.html HTTP/2 > Host: camel.apache.org > User-Agent: curl/8.7.1 > Accept: text/markdown > * Request completely sent off < HTTP/2 303 < server: Apache < location: https://camel.apache.org/components/4.14.x/direct-component.md < cache-control: max-age=0 < expires: Fri, 16 Jan 2026 16:26:55 GMT < content-type: text/html; charset=iso-8859-1 < accept-ranges: bytes < via: 1.1 varnish, 1.1 varnish < date: Fri, 16 Jan 2026 16:26:56 GMT < x-served-by: cache-hel1410030-HEL, cache-lin1730039-LIN < x-cache: MISS, MISS < x-cache-hits: 0, 0 < x-timer: S1768580816.966200,VS0,VE39 < strict-transport-security: max-age=31536000; includeSubDomains; preload < content-length: 269 < * Ignoring the response-body * Connection #0 to host camel.apache.org left intact * Issue another request to this URL: 'https://camel.apache.org/components/4.14.x/direct-component.md' * Found bundle for host: 0xa848088a0 [can multiplex] * Re-using existing connection with host camel.apache.org * [HTTP/2] [3] OPENED stream for https://camel.apache.org/components/4.14.x/direct-component.md * [HTTP/2] [3] [:method: GET] * [HTTP/2] [3] [:scheme: https] * [HTTP/2] [3] [:authority: camel.apache.org] * [HTTP/2] [3] [:path: /components/4.14.x/direct-component.md] * [HTTP/2] [3] [user-agent: curl/8.7.1] * [HTTP/2] [3] [accept: text/markdown] > GET /components/4.14.x/direct-component.md HTTP/2 > Host: camel.apache.org > User-Agent: curl/8.7.1 > Accept: text/markdown > * Request completely sent off < HTTP/2 200 < server: Apache < last-modified: Sat, 13 Dec 2025 15:14:42 GMT < cache-control: max-age=0, no-transform < expires: Fri, 16 Jan 2026 16:26:56 GMT < access-control-allow-origin: * < content-security-policy: default-src 'self' data: blob: 'unsafe-inline' 'unsafe-eval' https://www.apachecon.com/ https://www.communityovercode.org/ https://*.apache.org/ https://apache.org/ https://*.scarf.sh/ ; script-src 'self' data: blob: 'unsafe-inline' 'unsafe-eval' https://www.apachecon.com/ https://www.communityovercode.org/ https://*.apache.org/ https://apache.org/ https://*.scarf.sh/ ; style-src 'self' data: blob: 'unsafe-inline' 'unsafe-eval' https://www.apachecon.com/ https://www.communityovercode.org/ https://*.apache.org/ https://apache.org/ https://*.scarf.sh/ ; frame-ancestors 'self'; frame-src 'self' data: blob: 'unsafe-inline' 'unsafe-eval' https://www.apachecon.com/ https://www.communityovercode.org/ https://*.apache.org/ https://apache.org/ https://*.scarf.sh/ ; worker-src 'self' data: blob:; < x-content-type-options: nosniff < content-type: text/markdown < via: 1.1 varnish, 1.1 varnish < accept-ranges: bytes < age: 0 < date: Fri, 16 Jan 2026 16:26:56 GMT < x-served-by: cache-hel1410028-HEL, cache-lin1730039-LIN < x-cache: MISS, MISS < x-cache-hits: 0, 0 < x-timer: S1768580816.024850,VS0,VE41 < vary: Accept-Encoding < strict-transport-security: max-age=31536000; includeSubDomains; preload < content-length: 11747 < # Direct **Since Camel 1.0** **Both producer and consumer are supported** The Direct component provides direct, synchronous invocation of any consumers when a producer sends a message exchange. This endpoint can be used to connect existing routes in the **same** camel context. > **Tip** > **Asynchronous** > > The [SEDA](seda-component.md) component provides asynchronous invocation of any consumers when a producer sends a message exchange. ## URI format direct:someId\[?options\] ... ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
