*/
public void start() throws LifecycleException {
// Validate and update our current state
if (started)
throw new LifecycleException
(sm.getString("httpConnector.alreadyStarted"));
started = true;
// Establish a server socket on the specified port
try {
serverSocket = new ServerSocket(port, acceptCount);
} catch (IOException e) {
throw new LifecycleException("HttpConnector[" + port + "]", e);
}
// Start our background thread
threadStart();