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

  • SEARCH
  • Home
  • 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 8128481
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T07:53:54+00:00 2026-06-06T07:53:54+00:00

I tried to extend Socket object something as… public class TestSocket extends Socket {

  • 0

I tried to extend Socket object something as…

public class TestSocket extends Socket
{
  private String id=String.valueOf(Math.random());

  ...

  public void setId(String id){this.id=id;}
  public String getId(){return this.id;}

}

init as…

TestSocket testSocket = new TestSocket(SERVER_HOSTNAME, SERVER_PORT);

As I can see it, the server side ServerSocket standard code like a

TestSocket mySocket = (TestSocket) serverSocket.accept();

… according to docs accept() method re-inits socket object and returns a new one so the id value is not the client’s one but a regenerated one 🙁

Is it possible to keep a client id? If yes then how?

  • 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-06-06T07:53:58+00:00Added an answer on June 6, 2026 at 7:53 am

    I presume the line

    TestSocket mySocket = (TestSocket) serverSocket.accept();
    

    would raise a ClassCastException since java.io.ServerSocket.accept() returns an instance of class Socket, not TestSocket (unless you inherited from ServerSocket).

    You probably have to send the ID over the connection and set it on the receiving end if you want to connect the two sockets, like:

    public void sendID() {
       DataOutputStreak dos = new DataOutputStream(getOuputStream());
       dos.writeUTF(this.getId());
    }
    
    public void receiveID() {
       DataInputStream dis = new DataInputStream(getInputStream());
       setId(dis.readUTF());
    }
    

    One of your two test sockets would call the one method and the other the other.
    I would not, however, inherit from the Socket classes to perform this, but handle this on a higher level.

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

Sidebar

Related Questions

I tried to use object expression to extend the IDelegateEvent, but in fsi there
I created a handler class which extends the System.Net.Sockets.Socket class. I am not familiar
Class c extends thread static Queue<Socket> socketQueue Make connection to another server or client
I've tried to extend Resources class, so i can override getString(int id) methode, so
I want to inherit to extend the C# string class to add methods like
So I have created a global class which extends globalsettings: public class Global extends
I tried to extend an existing Singleton class in Ruby, as an example the
I've tried to extend the RequiredAttribute to make some localizations. I wrote this: public
I tried to extend the Connection class, like Ext.Ajax did to get a central
Is it possible to extend dynamically javascript function scope? I tried without success 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.