From b1032a73723287d4c500f15dcae23db66635c2a5 Mon Sep 17 00:00:00 2001 From: Shirshak Date: Tue, 10 Dec 2024 10:03:22 -0500 Subject: [PATCH] TCP/IP: Add docs regarding host verification --- .../pages/ip/tcp-connection-factories.adoc | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/src/reference/antora/modules/ROOT/pages/ip/tcp-connection-factories.adoc b/src/reference/antora/modules/ROOT/pages/ip/tcp-connection-factories.adoc index e1a1be634d..64ddda87a0 100644 --- a/src/reference/antora/modules/ROOT/pages/ip/tcp-connection-factories.adoc +++ b/src/reference/antora/modules/ROOT/pages/ip/tcp-connection-factories.adoc @@ -194,6 +194,29 @@ As noted there, such modifications are possible if SSL is being used, or not. Also see xref:ip/annotation.adoc[Annotation-Based Configuration] and xref:ip/dsl.adoc[Using the Java DSL for TCP Components]. +[[host-verification]] +== Host verification + +Starting from version 5.1.0, host verification is enabled by default for enhanced security. +This feature ensures that the server's identity is verified during TCP connections. + +If you encounter a scenario where host verification needs to be disabled (not recommended), you can configure the socket-support attribute in the tcp-connection-factory. + +[source,xml] +---- + + + + + +---- + [[custom-serializers-and-deserializers]] == Custom Serializers and Deserializers