Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 604419
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:02:11+00:00 2026-05-13T17:02:11+00:00

I need to connect to a host, if it’s off-line I get a TCP

  • 0

I need to connect to a host, if it’s off-line I get a TCP timeout (and it’s ok), and if it’s online with SSL available, I proceed to the logon phase.

The problem is, when the server is online, accepts connection on the configured TCP port, but then doesn’t answer to SSL handshake, our application waits indefinitely for an answer.

I’m using IBM HACL (c++) wrapped by JNI to access the server.

How could I test (in Java or C++ under Windows XP) the availability of SSL on the server side? Can I start a handshake manually, get the first server response, and then close the TCP socket? Or do I need to complete the handshake (and how do I?)

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T17:02:11+00:00Added an answer on May 13, 2026 at 5:02 pm
    try {
        SSLContext ctx = SSLContext.getDefault();
        ctx.getClientSessionContext().setSessionTimeout(5); // in seconds
        SSLSocket socket = (SSLSocket) 
             ctx.getSocketFactory().createSocket("host.com", 443);
    
        socket.setSoTimeout(5000); // in millis
        socket.startHandshake();
    } catch (IOException ex) {
        sslAvailable = false;
    }
    

    As per your comment the socket.setSoTimeout(5000) did the trick.

    If that doesn’t work, then:

    URLConnection urlConn = // obtain connection
    urlConn.setConnectTimeout(5000); // in millis
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my Java application, I need to connect to the same host using SSL,
Here is my code: EventMachine.run { conn = EM::Protocols::HttpClient2.connect request.host, 80 req = conn.get(request.query)
I need to connect to server(username,pasw,host)-- easy enter 3-10 commands -- command=dir;date;cd;dir is there
Quite new to boost and asio, need help: connect to proxy asio::ip::tcp::socket socket_; send
I need connect to server git. http://help.github.com/win-set-up-git/ I do everything to the point, 4
I have a application with JPA Hibernate without Spring and I need connect to
I need to connect to a secure API which requires a certificate be attached
I need to connect to Oracle9,10 and 11 in my java application.The client will
I need to connect Apache Axis 1.4 to a Webservice that uses NTLM authentication
I need to connect my php script to Gmail Atom feed to retrieve the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.