Thanks for posting your question in the Microsoft Q&A forum.
Your intermittent SSL handshake timeout issues between Spring Boot AMQP and Azure Service Bus are likely tied to network restrictions or connection pooling behavior, rather than a direct Azure fault. Proxies or firewalls may be blocking AMQP ports (5671/5672) or interfering with SSL handshakes; switching to WebSocket transport over port 443 can help in restricted environments. Another common cause is idle timeouts: Service Bus closes idle AMQP links after 10 minutes and full connections after 15 minutes, which can break Spring’s default CachingConnectionFactory
. A recommended fix is to switch to JmsPoolConnectionFactory
, which actively manages and evicts idle connections, reducing handshake failures. You should also confirm that your connection string and endpoint are correct, Azure IP ranges are allowlisted, proxies are not inspecting SSL traffic, and you are running the latest qpid-jms-client and Azure SDK, since older versions have known handshake and idle timeout bugs. In short, addressing network accessibility and using a robust connection pooling strategy usually resolves these intermittent SSL timeouts
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful