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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T06:16:41+00:00 2026-05-28T06:16:41+00:00

I have been attempting to develop an embedded webserver within an application that I

  • 0

I have been attempting to develop an embedded webserver within an application that I have created. Essentially we have our main process that creates a simple webserver (utilizing a ServerSocket) and then the main process (in theory) will go about it’s business.

Main(){
    doingStuff();
    WebServer server = new WebServer();
    server.run();
    doingMoreStuff();
}

public class WebServer implements Runnable{
    ServerSocket inbound;

    //constructor
    WebServer(){
        inbound = new ServerSocket(9687);
    }

    public void Run(){
        Socket client;

        while(true){
            client = inbound.accept();
            SomeClass threadedClassThatHandlesClientMessage = new SomeClass(client);
            someclass.run();
        }
    }
}

In the preceding psuedo-code, I know that the thread with the ServerSocket accept() call blocks, ceasing the WebServer class thread as well as the main thread. Is there anything that I am missing?

I know that I can create the two programs that can run in tandem as separate processes, but I was hoping to avoid any IPC and shoot for a single process with the data processing in one thread and a generic serversocket receiving data in a separate thread. While I’m still new to all this, I’m fairly certain that this is one of those simple things that I have overlooked, but I would greatly appreciate any assistance you could provide.

  • 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-28T06:16:41+00:00Added an answer on May 28, 2026 at 6:16 am

    Calling .run() on a Runnable doesn’t make it run in a new thread, it runs it in the current thread.

    Did you mean to do new Thread (server).start ()?

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

Sidebar

Related Questions

I have been attempting to have a object that I can use across multiple
I have been attempting to get log4net logging in my asp.net web application with
I have been attempting to compile/run a sample WCF application from Juval Lowy's website
Morning Everyone, I've been attempting to write an application that does some GETs from
i have been attempting to pass an object into a function that belongs to
I have been attempting to set up magento on a shared hosting server that
I have been attempting to develop a PHP API for a website. I have
I have been developing a project that I absolutely must develop part-way in C++.
I have been attempting to write a program that will determine if a number
I have been attempting to create a Windows Application using Iron Ruby Version 1.1

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.