sorry if my info is insufficient.
"myserver" is an executable file ("myserver.exe" on windows )
It has been tested from the command line it works as desired.
Its an single-threaded stateful component which keeps running in the background and keep serving requests from other client components.
So my PHP page is supposed to start it using exec( "myserver.exe") and leave it running in the win2000 system.
As I said before in unix it can be acheived by
exec( "myserver &") etc
how to acheive it on windows ?