pq07176.txt HEADLESS APPS THAT RETURN FROM FROM STARTUP DON'T SYSTEM EXIT Customer has a Client/Server application communicating via TCP socket. The server starts up and waits for client to connect. Client then connects to server, sends data and then disconnects. Works fine in development. In a packaged image, the server exits right after the client connects. Workaround is to do a busy wait in the startup code: true whileTrue: [Processor yield]. OR Processor activeProcess super terminate to kill the UI proc and prevent system exit.