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 6200379
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T04:21:24+00:00 2026-05-24T04:21:24+00:00

Client is given a server’s hostname, so that client can connect to the server

  • 0

Client is given a server’s hostname, so that client can connect to the server with the given hostname.

//client side
host = new InetSocketAddress ( args[0], 50000); // args[0] = server's address
sockfd = new Socket(host.getHostName(),host.getPort());



//server side
sockfd = new ServerSocket(50000);
Socket clientfd= sockfd.accept ();

When client connects to the server A like above, is there a way for server A to know the client’s hostname?
Because server A has to tell the other server B to give that client some messages.

If there isn’t, how should connected server A notify the server B about connecting to the client?

Client also has ServerSocket which can receive connection from server B

  • 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-24T04:21:25+00:00Added an answer on May 24, 2026 at 4:21 am

    server A can use getInetAddress and getHostName to determine the client’s hostname. The hostname shouldn’t be needed, though, because you also can get the client IP from the Socket:

    Socket clientfd = sockfd.accept();
    InetAddress clientIA = clientfd.getInetAddress();
    String clientHN = clientIA.getHostName();
    byte[] clientIP = clientIA.getAddress();
    

    The networking issues Greg mentioned are still valid, however; having a server connect back to any given client may be difficult or impossible.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given that both the client and the server need to know everything about the
I have a client that has a SQL Server 2008 installation. They have given
Given a Client Side Game (lets call it game X) and a server side
I have been given the task of internationalizing a large client-server application. The remit
Given the following code: using (var client = new WebClient()) { string url =
I wish to develop a client-server application in .NET that functions as follows: Clients
I am writing an app that my client uses given javascript, which will collect
So I'm trying to make a client for my server in C#, that accepts
How do you avoid duplicating validation code on the server-side and on the client-side
I am passing some JSON back from client-side to server-side. if (historicalJSONAttributes != null)

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.